* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body.bkry-flow {
  --bkry-first-hero-padding-top: clamp(128px, 11vw, 180px);
  background: var(--flow-primary-bg);
  color: var(--flow-ink);
  overflow-x: hidden;
}

/* Keep browser-native controls and the page edge in sync with the chosen theme. */
[data-theme="dark"] body.bkry-flow {
  background: var(--flow-primary-bg);
}

.bkry-flow a {
  color: var(--flow-primary);
  text-decoration: none;
}

.bkry-flow a:hover {
  color: var(--flow-secondary);
}

.bk-flow-skip-link {
  background: var(--btn-primary-bg, var(--flow-primary));
  border: 1px solid var(--btn-primary-border, var(--flow-primary));
  border-radius: 999px;
  color: var(--btn-primary-text, var(--flow-on-accent));
  font-weight: var(--bkry-type-button-weight);
  inset-inline-start: 18px;
  line-height: 1;
  padding: 10px 16px;
  position: fixed;
  top: 14px;
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.18s ease;
  z-index: 1000;
}

.bk-flow-skip-link:focus,
.bk-flow-skip-link:focus-visible {
  color: var(--btn-primary-text, var(--flow-on-accent));
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  transform: translateY(0);
}

.bk-flow-header {
  left: 0;
  padding: 18px clamp(16px, 2.6vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.bk-flow-nav-shell {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--flow-panel) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
  border-radius: 999px;
  box-shadow: 0 16px 52px color-mix(in srgb, var(--flow-ink) 8%, transparent);
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: min(1680px, calc(100vw - clamp(32px, 5.2vw, 108px)));
  min-height: 76px;
  padding: 10px 12px 10px 22px;
}

.bk-flow-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  position: relative;
}

.bk-flow-logo-source {
  display: block;
  line-height: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.bk-flow-logo-source--default {
  opacity: 0;
}

.bk-flow-logo-source--invert {
  inset: 0;
  opacity: 1;
  position: absolute;
}

.bk-flow-logo {
  display: block;
  height: auto;
  width: 160px;
}

.bk-flow-nav {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}

.bk-flow-nav a {
  border-radius: 999px;
  color: var(--flow-ink);
  font-size: 0.94rem;
  font-weight: 760;
  padding: 10px 14px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.bk-flow-nav a:hover,
.bk-flow-nav a:focus-visible {
  background: color-mix(in srgb, var(--flow-primary) 13%, transparent);
  color: var(--flow-primary);
  outline: none;
  transform: translateY(-1px);
}

.bk-flow-actions {
  align-items: center;
  display: flex;
  gap: 9px;
  justify-content: flex-end;
}

.bk-flow-icon-button {
  align-items: center;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--flow-panel) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  display: inline-flex;
  justify-content: center;
  min-width: 44px;
}

.bk-flow-menu-toggle {
  display: none;
}

.bk-flow-mobile-panel {
  background: var(--flow-panel);
  border: 1px solid var(--flow-line);
  border-radius: var(--flow-radius);
  box-shadow: var(--flow-shadow);
  margin: 8px auto 0;
  max-width: 1240px;
  overflow: hidden;
  padding: 18px;
}

.bk-flow-mobile-panel[hidden] {
  display: none;
}

.bk-flow-mobile-nav {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-flow-mobile-nav a {
  border-radius: 16px;
  color: var(--flow-ink);
  display: block;
  font-weight: var(--bkry-type-nav-weight);
  padding: 13px 14px;
}

.bk-flow-mobile-nav a:hover {
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
}

.bk-flow-mobile-actions {
  border-top: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
  padding-top: 16px;
}

.bk-flow-mobile-actions .bk-flow-button {
  justify-content: center;
  min-height: 48px;
  width: 100%;
}

.bk-flow-toolbar {
  position: relative;
  z-index: 60;
}

.bk-flow-theme-switch,
.bk-flow-language-menu {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.bk-flow-theme-switch button,
.bk-flow-language-menu a {
  align-items: center;
  background: color-mix(in srgb, var(--flow-panel) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 68%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.bk-flow-theme-switch button[aria-pressed="true"],
.bk-flow-language-menu .uk-active a {
  background: color-mix(in srgb, var(--flow-primary) 16%, transparent);
  border-color: color-mix(in srgb, var(--flow-primary) 46%, transparent);
}

.bk-flow-flag {
  border-radius: 999px;
  display: block;
  height: 18px;
  object-fit: cover;
  width: 18px;
}

.bkry-flow-main {
  margin-top: -114px;
}

.bkry-flow-main > :first-child,
.bkry-flow-main > .bk-theme-section:first-child {
  padding-top: clamp(168px, 16vw, 228px);
}

.bk-help-standalone .bkry-flow-main {
  margin-top: 0;
}

.bk-help-standalone .bkry-flow-main > :first-child,
.bk-help-standalone .bkry-flow-main > .bk-theme-section:first-child {
  padding-top: clamp(28px, 4vw, 54px);
}

.bk-help-standalone .bk-flow-content > .hc-card.bk-theme-section.bkry-section-color-hero:first-child {
  min-height: auto;
  padding-bottom: clamp(28px, 4vw, 54px);
}

.bkry-flow .bk-theme-section,
.bkry-flow .bk-flow-content > section[class*="bkry-section-color-"] {
  background: var(--bk-section-bg, var(--flow-primary-bg));
  color: var(--bk-section-ink, var(--flow-ink));
  overflow: hidden;
  position: relative;
}

.bkry-flow .bk-theme-section::before,
.bkry-flow .bk-flow-content > section[class*="bkry-section-color-"]:not(.hc-card)::before {
  background: var(--flow-gradient);
  border-radius: 999px;
  content: "";
  height: clamp(160px, 26vw, 340px);
  opacity: 0.42;
  position: absolute;
  right: min(-120px, -7vw);
  top: min(-110px, -6vw);
  transform: rotate(-12deg);
  width: clamp(260px, 42vw, 560px);
}

.bkry-flow .bk-theme-section > *,
.bkry-flow .bk-flow-content > section[class*="bkry-section-color-"] > * {
  position: relative;
  z-index: 1;
}

.bkry-flow .bk-theme-section--hero,
.bkry-flow .bkry-section-color-hero {
  --bk-section-bg: var(--flow-hero-gradient);
}

.bkry-flow .bk-theme-section--canvas,
.bkry-flow .bkry-section-color-primary {
  --bk-section-bg: var(--flow-primary-bg);
}

.bkry-flow .bk-theme-section--soft,
.bkry-flow .bk-theme-section--deep,
.bkry-flow .bkry-section-color-secondary {
  --bk-section-bg: var(--flow-secondary-bg);
}

.bkry-flow .bk-theme-section--band,
.bkry-flow .bkry-section-color-cta {
  --bk-section-bg: var(--flow-cta-bg);
  color: var(--flow-on-accent);
}

.bkry-flow .bk-hero,
.bkry-flow .bk-directory-hero,
.bkry-flow .bk-landing-hero {
  min-height: clamp(680px, 86vh, 900px);
}

.bkry-flow h1,
.bkry-flow h2,
.bkry-flow h3,
.bkry-flow .uk-heading-small,
.bkry-flow .uk-h1,
.bkry-flow .uk-h2,
.bkry-flow .uk-h3 {
  color: var(--bk-section-ink, var(--flow-ink));
  letter-spacing: 0;
}

.bkry-flow h1,
.bkry-flow .uk-heading-small,
.bkry-flow .uk-h1 {
  font-size: var(--bkry-type-h1-size);
  letter-spacing: 0;
  line-height: 0.92;
}

.bkry-flow h2,
.bkry-flow .uk-h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 0.98;
}

.bkry-flow h3,
.bkry-flow .uk-h3 {
  font-size: var(--bkry-type-h3-size);
}

.bkry-flow p,
.bkry-flow .uk-text-lead {
  color: var(--bk-section-muted, var(--flow-muted));
  font-size: var(--bkry-type-body-size);
  line-height: 1.75;
}

.bkry-flow .bk-kicker {
  color: var(--flow-primary);
  font-size: var(--bkry-type-kicker-size);
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bkry-flow .uk-card,
.bkry-flow .uk-card-default,
.bkry-flow .bk-module-list li,
.bkry-flow .bk-language-step,
.bkry-flow .bk-support-ticket-panel,
.bkry-flow .bk-directory-panel,
.bkry-flow .bk-company-card {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: var(--flow-radius);
  box-shadow: var(--flow-soft-shadow);
}

.bkry-flow .uk-card-default,
.bkry-flow .bk-module-list li,
.bkry-flow .bk-language-step,
.bkry-flow .bk-company-card {
  padding: clamp(22px, 3vw, 34px);
}

.bkry-flow .bk-feature-icon,
.bkry-flow .bk-language-step-number,
.bkry-flow .bk-schedule-calendar-step,
.bkry-flow .bk-flow-mark {
  background: color-mix(in srgb, var(--flow-primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-primary) 30%, transparent);
  border-radius: 18px;
}

.bkry-flow .bk-home-visual,
.bkry-flow .bk-hero-visual,
.bkry-flow .bk-language-visual,
.bkry-flow .bk-support-ticket-window {
  border-radius: clamp(26px, 5vw, 58px);
  box-shadow: var(--flow-shadow);
  overflow: hidden;
}

.bkry-flow img {
  max-width: 100%;
}

.bkry-flow .bk-band,
.bkry-flow .bk-cta-banner {
  background: linear-gradient(135deg, var(--flow-cta-bg), color-mix(in srgb, var(--flow-secondary) 58%, var(--flow-cta-bg)));
  border-radius: clamp(28px, 4vw, 54px);
  box-shadow: var(--flow-shadow);
}

.bkry-flow .bk-band h2,
.bkry-flow .bk-band p,
.bkry-flow .bk-cta-banner h2,
.bkry-flow .bk-cta-banner p {
  color: var(--flow-on-accent);
}

/* Landing pages imported from the CMS use a shared bk-landing class system. */
.bkry-flow .bk-flow-content > .bk-landing-hero:first-child {
  background:
    radial-gradient(circle at 84% 24%, color-mix(in srgb, var(--flow-secondary) 22%, transparent), transparent 32%),
    radial-gradient(circle at 8% 86%, color-mix(in srgb, var(--flow-primary) 16%, transparent), transparent 28%),
    linear-gradient(var(--bk-template-hero-gradient-angle), color-mix(in srgb, var(--bk-template-hero-gradient-start-color) var(--bk-template-hero-gradient-start-mix), var(--flow-hero-bg)), color-mix(in srgb, var(--bk-template-hero-gradient-end-color) var(--bk-template-hero-gradient-end-mix), var(--flow-hero-bg)));
  color: var(--flow-ink);
  margin-top: 0;
  min-height: clamp(640px, 82vh, 780px);
  overflow: hidden;
  padding: var(--bkry-first-hero-padding-top) clamp(18px, 2.4vw, 48px) clamp(56px, 6vw, 86px);
  position: relative;
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child::before {
  background: radial-gradient(circle at center, color-mix(in srgb, #ffffff 48%, transparent) 0 40%, transparent 41%);
  border-radius: 999px;
  content: "";
  height: clamp(420px, 45vw, 760px);
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  right: -7vw;
  top: 18%;
  transform: rotate(-24deg);
  width: clamp(520px, 54vw, 920px);
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child > .uk-container,
.bkry-flow .bk-landing-hero > .uk-container,
.bkry-flow .bk-landing-search-section > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.bkry-flow .bk-landing-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(420px, 0.98fr) minmax(320px, 0.72fr);
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child h1 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 0.96;
  margin: 0;
  max-width: 1020px;
  text-align: left;
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child .bk-kicker {
  color: #ffffff;
  opacity: 1;
  text-align: left;
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child .bk-landing-lead {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-lg-size);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 850px;
  opacity: 1;
  text-align: left;
}

.bkry-flow .bk-landing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 30px;
}

.bkry-flow .bk-landing-proof {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  max-width: 720px;
  padding: 0;
}

.bkry-flow .bk-landing-proof li {
  align-items: center;
  color: var(--flow-ink);
  display: flex;
  font-weight: var(--bkry-font-weight-extrabold);
  gap: 10px;
  line-height: 1.35;
  list-style: none;
}

.bkry-flow .bk-landing-proof span[uk-icon],
.bkry-flow .bk-landing-benefit-grid span[uk-icon] {
  color: #2ea85d;
  flex: 0 0 auto;
}

.bkry-flow .bk-flow-content > .bk-landing-hero:first-child .bk-landing-proof span[uk-icon] {
  color: #ffffff;
}

.bkry-flow .bk-landing-hero-media {
  justify-self: center;
  margin: 0;
  padding: clamp(18px, 2.4vw, 34px);
  position: relative;
  width: min(100%, 448px);
}

.bkry-flow .bk-landing-hero-media::before {
  background:
    linear-gradient(145deg, color-mix(in srgb, #ffffff 66%, transparent), color-mix(in srgb, var(--flow-secondary) 18%, transparent)),
    radial-gradient(circle at 50% 44%, color-mix(in srgb, #ffffff 42%, transparent), transparent 58%);
  border: 1px solid color-mix(in srgb, #ffffff 64%, transparent);
  border-radius: clamp(28px, 5vw, 58px);
  box-shadow: var(--flow-shadow);
  content: "";
  inset: 0;
  position: absolute;
}

.bkry-flow .bk-landing-hero-media img {
  display: block;
  filter: drop-shadow(0 34px 54px color-mix(in srgb, var(--flow-ink) 18%, transparent));
  height: auto;
  max-height: clamp(208px, 20.8vw, 304px);
  object-fit: contain;
  position: relative;
  width: 100%;
}

.bkry-flow .bk-answer-panel,
.bkry-flow .bk-landing-search-section,
.bkry-flow .bk-flow-content > .bkry-section-color-primary {
  padding-inline: clamp(18px, 2.4vw, 48px);
}

.bkry-flow .bk-answer-panel {
  border-bottom: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
}

.bkry-flow .bk-container-tight {
  max-width: 940px;
}

.bkry-flow .bk-answer-panel h2,
.bkry-flow .bk-landing-section-head h2,
.bkry-flow .bk-landing-two-column h2,
.bkry-flow .bk-container-tight > h2 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h2-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 980px;
}

.bkry-flow .bk-answer-panel p:last-child,
.bkry-flow .bk-landing-section-head p:last-child,
.bkry-flow .bk-landing-two-column p {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-size);
  line-height: 1.72;
  margin: 0;
  max-width: 900px;
}

.bkry-flow .bk-landing-section-head {
  margin-bottom: clamp(30px, 5vw, 56px);
  max-width: 980px;
}

.bkry-flow .bk-landing-benefit-grid,
.bkry-flow .bk-landing-feature-list,
.bkry-flow .bk-landing-use-case-list {
  display: grid;
}

.bkry-flow .bk-landing-benefit-grid {
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bkry-flow .bk-landing-benefit-grid article,
.bkry-flow .bk-landing-use-case-list article {
  background: color-mix(in srgb, var(--flow-panel) 91%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(18px, 2.6vw, 32px);
  box-shadow: var(--flow-soft-shadow);
}

.bkry-flow .bk-landing-benefit-grid article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.bkry-flow .bk-landing-benefit-grid span[uk-icon] {
  align-items: center;
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border-radius: 18px;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 20px;
  width: 56px;
}

.bkry-flow .bk-landing-benefit-grid h3,
.bkry-flow .bk-landing-feature-copy h3,
.bkry-flow .bk-landing-faq-list h3 {
  color: var(--flow-ink);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.14;
  margin: 0 0 10px;
}

.bkry-flow .bk-landing-benefit-grid h3 {
  font-size: var(--bkry-type-h3-size);
}

.bkry-flow .bk-landing-benefit-grid p,
.bkry-flow .bk-landing-feature-copy p,
.bkry-flow .bk-landing-use-case-list span,
.bkry-flow .bk-landing-faq-list p {
  color: var(--flow-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.bkry-flow .bk-landing-two-column {
  align-items: start;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--flow-panel) 92%, transparent), color-mix(in srgb, var(--flow-secondary) 12%, transparent)),
    var(--flow-panel);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(24px, 4vw, 44px);
  box-shadow: var(--flow-soft-shadow);
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  padding: clamp(28px, 4vw, 54px);
}

.bkry-flow .bk-landing-use-case-list {
  gap: 14px;
}

.bkry-flow .bk-landing-search-section .bk-landing-use-case-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bkry-flow .bk-landing-search-section .bk-landing-use-case-list article:last-child {
  grid-column: 1 / -1;
}

.bkry-flow .bk-landing-use-case-list article {
  padding: clamp(18px, 2.4vw, 26px);
}

.bkry-flow .bk-landing-use-case-list strong,
.bkry-flow .bk-landing-use-case-list span {
  display: block;
}

.bkry-flow .bk-landing-use-case-list strong {
  color: var(--flow-ink);
  font-size: 1.05rem;
  font-weight: var(--bkry-font-weight-extrabold);
  margin-bottom: 6px;
}

.bkry-flow .bk-comparison-table-wrap {
  background: color-mix(in srgb, var(--flow-panel) 91%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(20px, 3vw, 34px);
  box-shadow: var(--flow-soft-shadow);
  overflow-x: auto;
}

.bkry-flow .bk-comparison-table {
  border-collapse: collapse;
  color: var(--flow-muted);
  font-size: 1rem;
  min-width: 860px;
  width: 100%;
}

.bkry-flow .bk-comparison-table th,
.bkry-flow .bk-comparison-table td {
  border-bottom: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
  padding: 18px 20px;
  vertical-align: top;
}

.bkry-flow .bk-comparison-table thead th {
  color: var(--flow-primary);
  font-size: 0.78rem;
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bkry-flow .bk-comparison-table tbody tr:nth-child(odd) {
  background: color-mix(in srgb, var(--flow-primary) 5%, transparent);
}

.bkry-flow .bk-comparison-table tbody th {
  color: var(--flow-ink);
  font-weight: var(--bkry-font-weight-extrabold);
}

.bkry-flow .bk-comparison-table th:first-child,
.bkry-flow .bk-comparison-table td:first-child {
  text-align: left;
  width: 31%;
}

.bkry-flow .bk-comparison-table td:not(:first-child),
.bkry-flow .bk-comparison-table th:not(:first-child) {
  text-align: left;
}

.bkry-flow .bk-landing-faq-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
}

.bkry-flow .bk-landing-faq-list li {
  background: color-mix(in srgb, var(--flow-panel) 91%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: 22px;
  box-shadow: var(--flow-soft-shadow);
  list-style: none;
  padding: clamp(20px, 2.6vw, 30px);
}

.bkry-flow .bk-landing-faq-list h3 {
  font-size: var(--bkry-type-h3-size);
}

.bkry-flow .bk-landing-feature-list {
  gap: clamp(28px, 5vw, 58px);
}

.bkry-flow .bk-landing-feature-row {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.bkry-flow .bk-landing-feature-row.is-reversed {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.bkry-flow .bk-landing-feature-row.is-reversed .bk-landing-feature-copy {
  order: 2;
}

.bkry-flow .bk-landing-feature-row.is-reversed .bk-language-visual {
  order: 1;
}

.bkry-flow .bk-landing-feature-copy h3 {
  font-size: var(--bkry-type-h3-size);
}

.bkry-flow .bk-landing-hero-card {
  overflow-x: clip;
}

.bkry-flow .bk-landing-hero-card .hc-card__image {
  align-self: center;
  background:
    linear-gradient(145deg, color-mix(in srgb, #ffffff 66%, transparent), color-mix(in srgb, var(--flow-secondary) 18%, transparent)),
    radial-gradient(circle at 50% 44%, color-mix(in srgb, #ffffff 42%, transparent), transparent 58%);
  border: 1px solid color-mix(in srgb, #ffffff 64%, transparent);
  border-radius: clamp(28px, 5vw, 58px);
  box-shadow: var(--flow-shadow);
  height: auto;
  max-width: min(100%, 448px);
  padding: clamp(18px, 2.4vw, 34px);
}

.bkry-flow .bk-landing-hero-card .hc-card__image img {
  aspect-ratio: 4 / 3;
  border-radius: clamp(18px, 2.5vw, 30px);
  box-shadow: none;
  filter: none;
  height: clamp(192px, 19.2vw, 280px);
  object-fit: contain;
  width: 100%;
}

@media (max-width: 1180px) {
  .bkry-flow .bk-landing-hero-grid,
  .bkry-flow .bk-landing-two-column,
  .bkry-flow .bk-landing-feature-row,
  .bkry-flow .bk-landing-feature-row.is-reversed {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-landing-hero-media {
    justify-self: start;
    max-width: 680px;
    width: min(100%, 680px);
  }

  .bkry-flow .bk-landing-feature-row.is-reversed .bk-landing-feature-copy,
  .bkry-flow .bk-landing-feature-row.is-reversed .bk-language-visual {
    order: initial;
  }

  .bkry-flow .bk-landing-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bkry-flow .bk-flow-content > .bk-landing-hero:first-child {
    min-height: auto;
    padding: 126px 14px 64px;
  }

  .bkry-flow .bk-flow-content > .bk-landing-hero:first-child h1 {
    font-size: var(--bkry-type-h1-size);
    line-height: 1;
  }

  .bkry-flow .bk-flow-content > .bk-landing-hero:first-child .bk-landing-lead {
    font-size: 1rem;
  }

  .bkry-flow .bk-landing-actions,
  .bkry-flow .bk-landing-actions .bkry-btn,
  .bkry-flow .bk-landing-actions .uk-button {
    width: 100%;
  }

  .bkry-flow .bk-landing-hero-media {
    display: none;
  }

  .bkry-flow .bk-landing-hero-card .hc-card__image img {
    height: clamp(220px, 62vw, 340px);
  }

  .bkry-flow .bk-landing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-landing-search-section .bk-landing-use-case-list {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-landing-search-section .bk-landing-use-case-list article:last-child {
    grid-column: auto;
  }

  .bkry-flow .bk-answer-panel,
  .bkry-flow .bk-landing-search-section,
  .bkry-flow .bk-flow-content > .bkry-section-color-primary {
    padding-inline: 14px;
  }

  .bkry-flow .bk-landing-two-column,
  .bkry-flow .bk-landing-benefit-grid article,
  .bkry-flow .bk-landing-use-case-list article,
  .bkry-flow .bk-landing-faq-list li {
    border-radius: 18px;
  }

  .bkry-flow .bk-comparison-table {
    min-width: 0;
  }

  .bkry-flow .bk-comparison-table,
  .bkry-flow .bk-comparison-table thead,
  .bkry-flow .bk-comparison-table tbody,
  .bkry-flow .bk-comparison-table tr,
  .bkry-flow .bk-comparison-table th,
  .bkry-flow .bk-comparison-table td {
    display: block;
    text-align: left;
    width: 100%;
  }

  .bkry-flow .bk-comparison-table thead {
    display: none;
  }

  .bkry-flow .bk-comparison-table tr {
    border-bottom: 1px solid color-mix(in srgb, var(--flow-line) 72%, transparent);
    padding: 16px 18px;
  }

  .bkry-flow .bk-comparison-table th,
  .bkry-flow .bk-comparison-table td {
    border-bottom: 0;
    padding: 6px 0;
  }

  .bkry-flow .bk-comparison-table td::before {
    color: var(--flow-primary);
    content: attr(data-label);
    display: block;
    font-size: 0.74rem;
    font-weight: var(--bkry-font-weight-extrabold);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

}

.bkry-flow .bk-footer {
  background: var(--flow-footer-bg);
  color: color-mix(in srgb, #ffffff 82%, transparent);
  overflow: hidden;
  padding: clamp(58px, 6vw, 82px) 0 38px;
  padding-inline: clamp(18px, 2.4vw, 48px);
  position: relative;
}

.bkry-flow .bk-footer::before {
  background: radial-gradient(circle, color-mix(in srgb, var(--flow-primary) 26%, transparent), transparent 68%);
  border-radius: 999px;
  content: "";
  height: 240px;
  opacity: 0.22;
  position: absolute;
  right: -80px;
  top: -110px;
  width: 420px;
}

.bkry-flow .bk-footer a {
  color: color-mix(in srgb, #ffffff 86%, transparent);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.bkry-flow .bk-footer a:hover {
  color: var(--flow-secondary);
}

.bkry-flow .bk-footer h2,
.bkry-flow .bk-footer h3,
.bkry-flow .bk-footer h4 {
  color: var(--flow-secondary);
  font-weight: var(--bkry-font-weight-bold);
}

.bkry-flow .bk-footer .uk-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: 1680px;
  padding-inline: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.bkry-flow .bk-footer-logo-row {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(34px, 4vw, 48px);
  text-align: center;
}

.bkry-flow .bk-footer-logo-row .bk-logo {
  display: block;
  height: auto;
  max-width: min(220px, 62vw);
  width: 220px;
}

.bkry-flow .bk-footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bkry-flow .bk-footer-brand-col {
  grid-column: span 1;
}

.bkry-flow .bk-footer-software-col {
  grid-column: span 3;
}

.bkry-flow .bk-footer .uk-h5 {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 18px;
}

.bkry-flow .bk-footer .uk-list {
  margin: 0;
}

.bkry-flow .bk-footer .uk-list li + li {
  margin-top: 10px;
}

.bkry-flow .bk-footer-software-list {
  column-gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 10px;
}

.bkry-flow .bk-footer-software-list li {
  margin-top: 0 !important;
}

.bkry-flow .bk-footer-language-row {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 44px);
  text-align: center;
}

.bkry-flow .bk-footer-language-row .bk-language-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bkry-flow .bk-footer-language-row .bk-language-grid a {
  align-items: center;
  border: 1px solid color-mix(in srgb, #ffffff 72%, transparent);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 760;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
}

.bkry-flow .bk-footer-language-row .bk-language-grid a:hover,
.bkry-flow .bk-footer-language-row .bk-language-grid .uk-active a {
  background: color-mix(in srgb, #ffffff 12%, transparent);
  color: #ffffff;
}

.bkry-flow .bk-footer .bk-flag {
  border-radius: 999px;
  height: 22px;
  object-fit: cover;
  width: 22px;
}

.bkry-flow .bk-footer-meta {
  gap: 18px;
  margin-top: clamp(52px, 6vw, 76px) !important;
}

.bkry-flow .bk-footer-meta small {
  color: color-mix(in srgb, #ffffff 72%, transparent);
}

.bkry-flow .bk-footer-builder {
  align-items: center;
  backdrop-filter: blur(14px) saturate(160%) brightness(110%);
  background: color-mix(in srgb, #ffffff 7%, transparent);
  border: 1px solid color-mix(in srgb, #ffffff 22%, transparent);
  border-radius: 26px;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 760;
  gap: 12px;
  padding: 10px 18px;
  -webkit-backdrop-filter: blur(14px) saturate(160%) brightness(110%);
}

.bkry-flow .bk-footer-builder:hover {
  background: color-mix(in srgb, #ffffff 13%, transparent);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.bkry-flow .bk-footer-builder-logo {
  display: block;
  height: auto;
  width: 120px;
}

.bk-flow-empty {
  padding: clamp(90px, 14vw, 180px) 0;
}

.bk-flow-sidebar {
  display: grid;
  gap: 16px;
}

.bk-flow-search,
.bk-flow-modal,
.bk-flow-cookie {
  display: none;
}

@media (max-width: 1080px) {
  .bk-flow-nav {
    display: none;
  }

  .bk-flow-menu-toggle {
    display: inline-flex;
  }

  .bk-flow-nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .bk-flow-actions .bk-flow-button {
    display: none;
  }

  .bkry-flow .bk-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bkry-flow .bk-footer-software-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .bk-flow-header {
    padding: 12px;
  }

  .bk-flow-nav-shell {
    border-radius: 28px;
    min-height: 66px;
    padding: 8px 9px 8px 14px;
  }

  .bk-flow-logo {
    height: auto;
    width: 150px;
  }

  .bk-flow-language-menu {
    display: none;
  }

  .bk-flow-language-menu.bk-language-options {
    display: inline-flex;
  }

  .bkry-flow-main {
    margin-top: -92px;
  }

  .bkry-flow-main > :first-child,
  .bkry-flow-main > .bk-theme-section:first-child {
    padding-top: 138px;
  }

  .bkry-flow h1,
  .bkry-flow .uk-heading-small {
    font-size: var(--bkry-type-h1-size);
  }

  .bkry-flow .bk-footer {
    padding-inline: 12px;
    text-align: center;
  }

  .bkry-flow .bk-footer-grid,
  .bkry-flow .bk-footer-software-list {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-footer-brand-col,
  .bkry-flow .bk-footer-software-col {
    grid-column: auto;
  }

  .bkry-flow .bk-footer-grid .uk-list,
  .bkry-flow .bk-footer-software-list {
    justify-items: center;
  }

  .bkry-flow .bk-footer-meta {
    flex-direction: column;
    justify-content: center;
  }

  .bk-flow-footer-grid,
  .bk-flow-footer-links {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }
}

/* Flow presentation layer: intentionally overrides imported content classes. */
.bkry-flow {
  --flow-header-height: 104px;
}

.bk-flow-header {
  inset-inline: 0;
  padding: 24px clamp(18px, 2.4vw, 48px);
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: padding 0.28s ease, transform 0.28s ease;
}

.bk-flow-header > * {
  pointer-events: auto;
}

.bk-flow-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.bk-flow-nav-shell {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  max-width: 1680px;
  min-height: 70px;
  padding: 8px 0;
  width: 100%;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, min-height 0.28s ease, padding 0.28s ease, transform 0.28s ease;
}

.bk-flow-header.is-scrolled .bk-flow-nav-shell,
.bk-flow-header.is-mobile-open .bk-flow-nav-shell {
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--flow-nav-solid) 92%, transparent);
  border-color: color-mix(in srgb, var(--flow-line) 72%, transparent);
  box-shadow: var(--flow-shadow);
  min-height: 68px;
  padding: 8px 12px 8px 22px;
}

.bk-flow-header.is-scrolled .bk-flow-logo-source--default,
.bk-flow-header.is-mobile-open .bk-flow-logo-source--default {
  opacity: 1;
}

.bk-flow-header.is-scrolled .bk-flow-logo-source--invert,
.bk-flow-header.is-mobile-open .bk-flow-logo-source--invert {
  opacity: 0;
}

.bk-flow-brand:hover .bk-flow-logo-source {
  transform: translateY(-1px);
}

.bk-flow-nav {
  gap: clamp(18px, 3.2vw, 46px);
}

.bk-flow-nav a {
  background: transparent;
  border-radius: 0;
  color: var(--flow-nav-inverse);
  font-size: 0.92rem;
  font-weight: var(--bkry-font-weight-bold);
  letter-spacing: 0;
  padding: 27px 0 18px;
  position: relative;
}

.bk-flow-header.is-scrolled .bk-flow-nav a,
.bk-flow-header.is-mobile-open .bk-flow-nav a {
  color: var(--flow-ink);
}

.bk-flow-nav a::before {
  background: currentColor;
  content: "";
  height: 2px;
  inset-inline: 0;
  opacity: 0;
  position: absolute;
  top: 10px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.bk-flow-nav a:hover,
.bk-flow-nav a:focus-visible,
.bk-flow-nav a.is-active {
  background: transparent;
  color: var(--flow-nav-inverse);
  transform: none;
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-nav a {
  color: var(--flow-ink);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-nav a:hover,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-nav a:focus-visible,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-nav a.is-active {
  color: var(--flow-nav-inverse);
}

.bk-flow-header.is-scrolled .bk-flow-nav a:hover,
.bk-flow-header.is-scrolled .bk-flow-nav a:focus-visible,
.bk-flow-header.is-scrolled .bk-flow-nav a.is-active {
  color: var(--flow-primary);
}

.bk-flow-nav a:hover::before,
.bk-flow-nav a:focus-visible::before,
.bk-flow-nav a.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.bk-flow-actions {
  gap: 12px;
}

.bk-flow-actions .bk-flow-button {
  min-height: 52px;
  padding-inline: 28px;
}

.bk-flow-actions .bkry-btn-sm {
  min-height: 34px;
  padding: 0.62rem 1rem;
}

.bk-flow-actions .bk-flow-button-primary:hover,
.bk-flow-actions .bk-flow-button-primary:focus-visible {
  color: var(--btn-primary-text-hover, var(--flow-on-accent));
}

.bk-flow-actions .bk-flow-button-muted:hover,
.bk-flow-actions .bk-flow-button-muted:focus-visible {
  color: var(--btn-secondary-text-hover, var(--flow-ink));
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-button-primary {
  background: var(--flow-nav-inverse);
  border-color: var(--flow-nav-inverse);
  box-shadow: none;
  color: var(--flow-ink);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-button-muted {
  background: color-mix(in srgb, var(--flow-nav-inverse) 18%, transparent);
  border-color: color-mix(in srgb, var(--flow-nav-inverse) 42%, transparent);
  color: var(--flow-nav-inverse);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-icon-button,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-theme-switch button,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-language-menu a {
  background: color-mix(in srgb, var(--flow-nav-inverse) 14%, transparent);
  border-color: color-mix(in srgb, var(--flow-nav-inverse) 34%, transparent);
  color: var(--flow-nav-inverse);
}

.bk-flow-mobile-panel {
  backdrop-filter: blur(22px);
  margin-top: 12px;
}

.bk-flow-mobile-panel.is-open {
  animation: bk-flow-panel-in 0.22s ease both;
}

.bkry-flow-main {
  margin-top: 0;
}

.bkry-flow-main > .bk-flow-content:first-child {
  padding-top: 0;
}

.bk-flow-content > .bk-theme-section:first-child,
.bk-flow-content > .bkry-section-color-hero:first-child {
  padding-top: var(--bkry-first-hero-padding-top);
  background:
    radial-gradient(circle at 92% 88%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-one-color) var(--bk-template-hero-gradient-accent-one-mix), transparent) 0 13vw, transparent 13.2vw),
    radial-gradient(circle at 10% 82%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-two-color) var(--bk-template-hero-gradient-accent-two-mix), transparent) 0 9vw, transparent 9.2vw),
    linear-gradient(var(--bk-template-hero-gradient-angle), color-mix(in srgb, var(--bk-template-hero-gradient-start-color) var(--bk-template-hero-gradient-start-mix), var(--flow-hero-bg)), color-mix(in srgb, var(--bk-template-hero-gradient-end-color) var(--bk-template-hero-gradient-end-mix), var(--flow-hero-bg)));
  color: var(--flow-nav-inverse);
  margin-top: 0;
  min-height: clamp(780px, 96vh, 980px);
  overflow: visible;
  padding-bottom: clamp(80px, 12vw, 160px);
}

.bk-flow-content > .bk-theme-section:first-child::before {
  background: radial-gradient(circle at center, color-mix(in srgb, var(--flow-nav-inverse) 22%, transparent) 0 42%, transparent 43%);
  height: clamp(460px, 48vw, 780px);
  opacity: 0.78;
  right: 4%;
  top: 20%;
  transform: rotate(-32deg);
  width: clamp(520px, 56vw, 900px);
}

.bk-flow-content > .bk-theme-section:first-child::after {
  background: linear-gradient(135deg, color-mix(in srgb, var(--flow-nav-inverse) 9%, transparent), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.bk-flow-content > .bk-theme-section:first-child h1,
.bk-flow-content > .bk-theme-section:first-child h2,
.bk-flow-content > .bk-theme-section:first-child h3,
.bk-flow-content > .bk-theme-section:first-child p,
.bk-flow-content > .bk-theme-section:first-child .bk-kicker,
.bk-flow-content > .bk-theme-section:first-child .uk-text-lead {
  color: var(--flow-nav-inverse);
}

.bk-flow-content > .bk-theme-section:first-child .bk-kicker {
  opacity: 0.86;
}

.bk-flow-content > .bk-theme-section:first-child h1 {
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-bold);
  line-height: 0.95;
  margin-inline: auto;
  max-width: 980px;
  text-align: center;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-copy,
.bk-flow-content > .bk-theme-section:first-child .uk-text-lead {
  font-size: var(--bkry-type-body-lg-size);
  margin-inline: auto;
  max-width: 760px;
  opacity: 0.88;
  text-align: center;
}

.bk-flow-content > .bk-theme-section:first-child .uk-grid-large {
  display: block;
}

.bk-flow-content > .bk-theme-section:first-child [class*="uk-width-1-2"] {
  margin-inline: auto;
  max-width: 1120px;
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child [class*="uk-width-1-2"]:first-child {
  text-align: center;
}

.bk-flow-content > .bk-theme-section:first-child .uk-flex {
  justify-content: center;
}

.bk-flow-content > .bk-theme-section:first-child .bk-proof-list {
  justify-content: center;
  margin-inline: auto;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-visual-stack,
.bk-flow-content > .bk-theme-section:first-child .bk-product-panel,
.bk-flow-content > .bk-theme-section:first-child .bk-home-visual {
  margin: clamp(58px, 8vw, 96px) auto 0;
  max-width: min(980px, 90vw);
  transform: translateY(12px);
}

.bk-flow-content > .bk-theme-section:first-child.bk-hero,
.bk-flow-content > .bk-page-title:first-child {
  min-height: auto;
  padding: var(--bkry-first-hero-padding-top) clamp(18px, 2.4vw, 48px) clamp(34px, 4vw, 54px);
}

.bk-flow-content > .bk-theme-section:first-child.bk-hero > .uk-container,
.bk-flow-content > .bk-page-title:first-child > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  width: 100%;
}

.bk-flow-content > :first-child :is(.bk-flow-hero-card, .bk-hero-shell, .bk-page-title-layout, .bk-features-hero-shell, .bk-pricing-hero-shell) {
  align-items: center;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--flow-panel) 92%, transparent) 0%, color-mix(in srgb, var(--flow-panel) 72%, transparent) 52%, color-mix(in srgb, var(--flow-secondary) 18%, transparent) 100%),
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--flow-secondary) 22%, transparent), transparent 33%),
    radial-gradient(circle at 94% 90%, color-mix(in srgb, var(--flow-primary) 18%, transparent), transparent 36%);
  border: 1px solid color-mix(in srgb, var(--flow-line) 70%, transparent);
  border-right: 0;
  border-radius: clamp(24px, 4vw, 42px);
  box-shadow: var(--flow-soft-shadow);
  display: grid;
  column-gap: clamp(34px, 5vw, 86px);
  grid-template-columns: minmax(500px, 0.9fr) minmax(420px, 1.1fr);
  row-gap: 0;
  margin: 0 auto;
  max-width: 1680px;
  min-height: clamp(500px, 52vh, 640px);
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-copy-column,
.bk-flow-content > .bk-page-title:first-child .bk-page-title-copy {
  display: block;
  max-width: 840px;
}

.bk-flow-content > .bk-page-title:first-child .bk-page-title-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.bk-flow-content > .bk-page-title:first-child .bk-page-title-avatar {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.bk-flow-content > .bk-page-title:first-child .bk-page-title-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  justify-self: center;
  margin-top: clamp(18px, 2.4vw, 28px);
  width: 85%;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-shell h1,
.bk-flow-content > .bk-page-title:first-child .bk-page-title-layout h1 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.08;
  margin: 12px 0 0;
  max-width: 840px;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-shell .bk-kicker {
  color: var(--flow-primary);
  font-synthesis: none;
  font-variation-settings: "wght" 800;
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.12em;
  opacity: 1;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-shell .bk-hero-copy,
.bk-flow-content > .bk-page-title:first-child .bk-page-title-copy p:not(.bk-kicker) {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-size);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
  opacity: 1;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-check-list li {
  align-items: flex-start;
  color: var(--flow-ink);
  display: flex;
  font-size: var(--bkry-type-body-sm-size);
  font-weight: 780;
  gap: 10px;
  line-height: 1.4;
  list-style: none;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-check-list .uk-icon {
  color: #2ea85d;
  flex: 0 0 auto;
  margin-top: 2px;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 22px;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-note {
  color: var(--flow-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 16px 0 0;
  max-width: 720px;
  opacity: 1;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-platform-preview {
  align-self: center;
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  gap: 18px;
  justify-self: end;
  margin: 0 -28px 0 0;
  max-width: 760px;
  position: relative;
  width: min(100%, 760px);
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-platform-preview::before {
  display: none;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-platform-preview img {
  display: block;
  filter: drop-shadow(0 26px 40px color-mix(in srgb, var(--flow-ink) 18%, transparent));
  height: auto;
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child .bk-hero-platform-caption {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h5-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.22;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

.bk-home-staff-calendar {
  --bk-staff-calendar-width: 1056px;
  --bk-section-bg:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, #eaf6ff 72%, transparent) 0 22vw, transparent 22.2vw),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 42%, #f3faff 100%);
  background: var(--bk-section-bg);
  overflow: hidden;
  padding-bottom: clamp(44px, 6vw, 85px);
  padding-top: clamp(44px, 6vw, 85px);
}

[data-theme="dark"] .bk-home-staff-calendar {
  --bk-section-bg:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--flow-primary) 10%, transparent) 0 22vw, transparent 22.2vw),
    linear-gradient(180deg, #0d1b25 0%, #10232e 48%, #0d1b25 100%);
}

.bk-home-staff-calendar .uk-container {
  max-width: 1500px;
}

.bk-staff-calendar-visual {
  margin: 0 auto;
  position: relative;
  width: min(100%, var(--bk-staff-calendar-width));
}

.bk-staff-calendar-visual.bk-staff-calendar-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    width 1800ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1400ms ease,
    transform 1400ms ease;
  width: 200px;
  will-change: width, opacity, transform;
}

.bk-staff-calendar-visual.bk-staff-calendar-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  width: min(100%, var(--bk-staff-calendar-width));
}

.bk-staff-calendar-visual img {
  display: block;
  height: auto;
  width: 100%;
}

.bk-staff-calendar-actions {
  align-items: center;
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  background: color-mix(in srgb, var(--flow-panel) 64%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary-color) 28%, transparent);
  border-radius: 999px;
  bottom: 200px;
  box-shadow: 0 22px 70px color-mix(in srgb, var(--flow-ink) 18%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  padding: 12px;
  transform: translate3d(-50%, 22px, 0);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 640ms;
  visibility: hidden;
  width: min(92%, 720px);
  z-index: 4;
}

.bk-staff-calendar-visual.is-image-loaded.is-actions-visible .bk-staff-calendar-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  transition-delay: 120ms, 120ms, 0s;
  visibility: visible;
}

.bk-staff-calendar-actions .bkry-btn {
  box-shadow: 0 16px 36px color-mix(in srgb, var(--flow-ink) 12%, transparent);
  min-height: 56px;
  padding-inline: clamp(1.2rem, 2.2vw, 2rem);
}

@media (max-width: 760px) {
  .bk-staff-calendar-actions {
    border-radius: 24px;
    bottom: clamp(18px, 7vw, 34px);
    gap: 12px;
    padding: 10px;
    width: min(90%, 360px);
  }

  .bk-staff-calendar-actions .bkry-btn {
    min-height: 48px;
    width: 100%;
  }
}

.bk-hero-entrance {
  opacity: 1;
  transform: none;
}

.bk-hero-entrance.is-visible {
  opacity: 1;
  transform: none;
}

.bk-hero-entrance .bk-kicker,
.bk-hero-entrance h1,
.bk-hero-entrance .bk-hero-copy,
.bk-hero-entrance .bk-hero-check-list,
.bk-hero-entrance .bk-hero-actions,
.bk-hero-entrance .bk-hero-note,
.bk-hero-entrance .bk-hero-entrance-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--bk-hero-entrance-delay, 0ms);
  will-change: opacity, transform;
}

.bk-hero-entrance .bk-hero-platform-preview,
.bk-hero-entrance .bk-hero-platform-preview.bk-hero-entrance-item,
.bk-hero-entrance .bk-flow-hero-visual.bk-hero-entrance-item {
  opacity: 0;
  transform: translateY(38px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--bk-hero-entrance-delay, 270ms);
  will-change: opacity, transform;
}

.bk-hero-entrance.is-visible .bk-kicker,
.bk-hero-entrance.is-visible h1,
.bk-hero-entrance.is-visible .bk-hero-copy,
.bk-hero-entrance.is-visible .bk-hero-check-list,
.bk-hero-entrance.is-visible .bk-hero-actions,
.bk-hero-entrance.is-visible .bk-hero-note,
.bk-hero-entrance.is-visible .bk-hero-entrance-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.bk-hero-entrance.is-visible .bk-hero-platform-preview,
.bk-hero-entrance.is-visible .bk-hero-platform-preview.bk-hero-entrance-item,
.bk-hero-entrance.is-visible .bk-flow-hero-visual.bk-hero-entrance-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.bkry-flow .bk-theme-section {
  padding-block: clamp(88px, 12vw, 170px);
}

.bkry-flow .bk-theme-section--canvas,
.bkry-flow .bkry-section-color-primary {
  --bk-section-bg: var(--primary-bg);
}

.bkry-flow .bk-theme-section--soft,
.bkry-flow .bk-theme-section--deep,
.bkry-flow .bkry-section-color-secondary {
  --bk-section-bg: var(--secondary-bg);
}

.bkry-flow .bk-home-insights-section {
  padding-inline: clamp(18px, 2.4vw, 48px);
}

.bkry-flow .bk-home-insights-section > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  width: 100%;
}

.bkry-flow .bk-home-insights-head {
  margin: 0 0 42px;
  max-width: none;
  text-align: left;
}

.bkry-flow .bk-home-insights-head h2 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h2-size);
  font-weight: var(--bkry-font-weight-bold);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 12px 0 0;
  max-width: 840px;
}

.bkry-flow .bk-home-insights-head .uk-text-lead {
  color: var(--flow-muted);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 900px;
  text-align: left;
}

.bkry-flow .bk-home-insight-card {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: clamp(18px, 2vw, 28px);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--flow-ink) 8%, transparent);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: clamp(24px, 2.3vw, 34px);
}

.bkry-flow .bk-home-insight-card h4 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h4-size);
  font-weight: var(--bkry-font-weight-semibold);
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0 0 18px;
}

.bkry-flow .bk-home-insight-card p {
  color: var(--flow-muted);
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 639px) {
  .bkry-flow .bk-home-insights-grid {
    row-gap: 20px;
  }

  .bkry-flow .bk-home-insight-card {
    padding: 24px;
  }
}

.bkry-flow .bk-booking-widget-showcase {
  overflow: hidden;
}

.bkry-flow .bk-booking-widget-layout {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 92px);
  grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.82fr);
}

.bkry-flow .bk-booking-widget-visual {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: clamp(540px, 56vw, 740px);
  position: relative;
}

.bkry-flow .bk-booking-widget-shape {
  aspect-ratio: 1;
  background: var(--secondary-color);
  border-radius: 58% 42% 54% 46% / 42% 56% 44% 58%;
  filter: saturate(1.04);
  left: 50%;
  opacity: 0.92;
  position: absolute;
  top: 50%;
  transform: translate(-52%, calc(-52% + var(--bk-widget-shape-y, 0px))) rotate(-18deg);
  will-change: transform;
  width: min(680px, 82vw);
  z-index: 0;
}

.bkry-flow .bk-booking-device-shell {
  background: linear-gradient(145deg, #152331, #071019);
  border: 1px solid color-mix(in srgb, var(--flow-ink) 36%, transparent);
  border-radius: 42px;
  box-shadow: 0 34px 72px color-mix(in srgb, var(--flow-ink) 28%, transparent);
  display: grid;
  padding: 20px 14px 24px;
  position: relative;
  transition: aspect-ratio 0.28s ease, border-radius 0.28s ease, padding 0.28s ease, width 0.28s ease;
  width: min(405px, 84vw);
  z-index: 1;
}

.bkry-flow [data-device="tablet"] .bk-booking-device-shell {
  border-radius: 34px;
  padding: 20px;
  width: min(520px, 86vw);
}

.bkry-flow [data-device="tablet-landscape"] .bk-booking-device-shell {
  border-radius: 32px;
  padding: 18px 22px;
  width: min(760px, 92vw);
}

.bkry-flow .bk-booking-device-speaker {
  background: rgba(255,255,255,0.38);
  border-radius: 999px;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 58px;
  z-index: 3;
}

.bkry-flow .bk-booking-device-camera {
  background: rgba(255,255,255,0.34);
  border: 2px solid rgba(0,0,0,0.28);
  border-radius: 999px;
  height: 9px;
  position: absolute;
  right: 38%;
  top: 8px;
  width: 9px;
  z-index: 3;
}

.bkry-flow [data-device="tablet"] .bk-booking-device-camera,
.bkry-flow [data-device="tablet-landscape"] .bk-booking-device-camera {
  right: 18px;
  top: 18px;
}

.bkry-flow .bk-booking-device-screen {
  aspect-ratio: 10 / 16.2;
  background: var(--flow-panel);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--flow-ink) 12%, transparent);
  overflow: hidden;
  transition: aspect-ratio 0.28s ease, border-radius 0.28s ease;
  width: 100%;
}

.bkry-flow [data-device="tablet"] .bk-booking-device-screen {
  aspect-ratio: 3 / 4;
  border-radius: 22px;
}

.bkry-flow [data-device="tablet-landscape"] .bk-booking-device-screen {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
}

.bkry-flow .bk-booking-device-screen iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.bkry-flow .bk-booking-widget-controls {
  align-items: center;
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 82%, transparent);
  border-radius: 999px;
  box-shadow: 0 18px 34px color-mix(in srgb, var(--flow-ink) 14%, transparent);
  display: flex;
  gap: 8px;
  margin-top: 22px;
  padding: 8px;
  position: relative;
  z-index: 2;
}

.bkry-flow .bk-booking-widget-controls button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--flow-muted);
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.bkry-flow .bk-booking-widget-controls button:hover,
.bkry-flow .bk-booking-widget-controls button:focus-visible {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.bkry-flow .bk-booking-widget-controls button[aria-pressed="true"] {
  background: var(--primary-color);
  color: var(--flow-on-accent);
}

.bkry-flow .bk-booking-widget-copy h2 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h2-size);
  font-weight: var(--bkry-font-weight-bold);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 12px 0 20px;
}

.bkry-flow .bk-booking-widget-copy p {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-lg-size);
  line-height: 1.65;
  margin: 0;
}

.bkry-flow .bk-booking-widget-copy .bk-kicker {
  color: var(--flow-primary);
  font-size: var(--bkry-type-kicker-size);
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.13em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.bkry-flow .bk-booking-widget-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
}

.bkry-flow .bk-booking-widget-points li {
  align-items: flex-start;
  color: var(--flow-muted);
  display: flex;
  gap: 10px;
  list-style: none;
}

.bkry-flow .bk-booking-widget-points span[uk-icon] {
  color: var(--primary-color);
  flex: 0 0 auto;
  margin-top: 2px;
}

.bkry-flow .bk-sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 959px) {
  .bkry-flow .bk-booking-widget-layout {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-booking-widget-copy {
    order: -1;
  }

  .bkry-flow .bk-booking-widget-visual {
    min-height: auto;
  }
}

@media (max-width: 639px) {
  .bkry-flow .bk-booking-widget-showcase {
    padding-block: 72px;
  }

  .bkry-flow .bk-booking-widget-copy h2 {
    font-size: var(--bkry-type-h2-size);
  }

  .bkry-flow [data-device="tablet-landscape"] .bk-booking-device-shell {
    width: min(520px, 92vw);
  }
}

.bkry-flow .bk-theme-section--band,
.bkry-flow .bk-band,
.bkry-flow .bk-cta-banner,
.bkry-flow .bkry-section-color-cta {
  --bk-section-bg: var(--cta-bg);
}

.bkry-flow .bk-footer,
.bkry-flow .bkry-section-color-footer {
  --bk-section-bg: var(--footer-bg);
}

.bkry-flow .uk-card,
.bkry-flow .uk-card-default,
.bkry-flow .bk-module-list li,
.bkry-flow .bk-language-step,
.bkry-flow .bk-support-ticket-panel,
.bkry-flow .bk-directory-panel,
.bkry-flow .bk-company-card {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.bkry-flow .uk-card:hover,
.bkry-flow .bk-module-list li:hover,
.bkry-flow .bk-language-step:hover {
  border-color: color-mix(in srgb, var(--primary-color) 42%, transparent);
  box-shadow: var(--flow-shadow);
  transform: translateY(-8px);
}

.bkry-flow .bk-kicker,
.bkry-flow a {
  color: var(--primary-color);
}

.bkry-flow a:hover {
  color: color-mix(in srgb, var(--primary-color) 70%, var(--secondary-color));
}

.bk-flow-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--flow-reveal-delay, 0ms);
}

.bk-flow-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bk-flow-reveal-image {
  transform: translateY(38px) scale(0.96);
}

.bk-flow-reveal-section {
  transform: translateY(42px);
}

@keyframes bk-flow-panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-flow-reveal,
  .bk-hero-entrance,
  .bk-hero-entrance .bk-hero-entrance-item,
  .bk-hero-entrance .bk-hero-platform-preview.bk-hero-entrance-item,
  .bk-staff-calendar-visual.bk-staff-calendar-reveal,
  .bk-staff-calendar-actions {
    opacity: 1;
    transform: none;
    transition: none;
    visibility: visible;
    will-change: auto;
  }

  .bk-staff-calendar-visual.bk-staff-calendar-reveal {
    width: min(100%, var(--bk-staff-calendar-width));
  }

  .bk-staff-calendar-actions {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1080px) {
  .bk-flow-nav-shell {
    padding-inline: 0;
  }

  .bk-flow-header.is-scrolled .bk-flow-nav-shell,
  .bk-flow-header.is-mobile-open .bk-flow-nav-shell {
    padding-inline: 18px 12px;
  }

  .bk-flow-content > :first-child :is(.bk-flow-hero-card, .bk-hero-shell, .bk-page-title-layout, .bk-features-hero-shell, .bk-pricing-hero-shell) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-copy-column {
    max-width: none;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-shell h1,
  .bk-flow-content > .bk-theme-section:first-child .bk-hero-shell .bk-hero-copy {
    max-width: 820px;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-platform-preview {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin: 8px auto -10px;
    max-width: 640px;
    width: min(100%, 640px);
  }

  .bkry-flow .bk-feature-page-hero-shell,
  .bk-flow-content > .bk-page-title:first-child .bk-feature-page-hero-shell,
  .bkry-flow .bk-feature-page-grid {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-feature-page-hero .bk-page-title-copy,
  .bkry-flow .bk-feature-page-hero .bk-page-title-avatar,
  .bkry-flow .bk-feature-page-hero .bk-page-title-actions {
    grid-column: 1;
  }

  .bkry-flow .bk-feature-page-icon {
    justify-self: start;
    max-width: 220px;
    padding: 34px;
  }

  .bkry-flow .bk-feature-page-sidebar,
  .bkry-flow .bk-feature-page-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .bkry-flow {
    --flow-header-height: 82px;
  }

  .bk-flow-header {
    padding: 12px;
  }

  .bk-flow-nav-shell,
  .bk-flow-header.is-scrolled .bk-flow-nav-shell,
  .bk-flow-header.is-mobile-open .bk-flow-nav-shell {
    border-radius: 30px;
  }

  .bkry-flow-main > .bk-flow-content:first-child {
    padding-top: 0;
  }

  .bk-flow-content > .bk-theme-section:first-child,
  .bk-flow-content > .bk-theme-section:first-child.bk-hero,
  .bk-flow-content > .bk-page-title:first-child {
    min-height: 0;
    padding: 112px 14px 36px;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-shell,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-layout,
  .bk-flow-content > .bk-theme-section:first-child .bk-features-hero-shell,
  .bk-flow-content > .bk-theme-section:first-child .bk-pricing-hero-shell {
    border-radius: 24px;
    min-height: 0;
    padding: 22px 18px;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-shell h1,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-layout h1,
  .bk-flow-content > .bk-theme-section:first-child.bk-features-hero h1,
  .bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero h1 {
    font-size: var(--bkry-type-h1-size);
    line-height: 1.02;
  }

  .bk-flow-content > .bk-theme-section:first-child .bk-hero-actions .uk-button,
  .bk-flow-content > .bk-theme-section:first-child .bk-hero-actions .bkry-btn {
    width: 100%;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-copy,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-avatar,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-avatar,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions {
    justify-self: center;
    width: min(100%, 560px);
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions .bkry-btn {
    width: 100%;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions {
    justify-self: stretch;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions .bkry-btn {
    justify-content: center;
  }

  .bkry-flow .bk-feature-page-hero .bk-breadcrumb {
    font-size: 0.82rem;
    gap: 6px;
    margin-bottom: 14px;
  }

  .bkry-flow .bk-feature-page-hero .bk-page-title-actions {
    justify-self: stretch;
    width: 100%;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-feature-page-hero-shell {
    grid-template-columns: 1fr;
  }

  .bk-flow-content > .bk-page-title:first-child .bk-page-title-copy,
  .bk-flow-content > .bk-page-title:first-child .bk-page-title-actions {
    max-width: 100%;
    width: 100%;
  }

  .bkry-flow .bk-feature-page-hero .bk-page-title-actions .bkry-btn {
    justify-content: center;
    width: 100%;
  }

  .bkry-flow .bk-feature-page-icon,
  .bk-flow-content > .bk-page-title:first-child .bk-feature-page-icon {
    display: none;
  }

  .bkry-flow .bk-feature-page-section > .uk-container {
    max-width: 100%;
  }

  .bkry-flow .bk-feature-page-next,
  .bkry-flow .bk-feature-page-next .bkry-btn {
    width: 100%;
  }

  .bkry-flow .bk-feature-page-next .bkry-btn {
    justify-content: center;
  }
}

.bk-language-switch {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.bk-language-switch .bk-language-current {
  align-items: center;
  appearance: none;
  background: color-mix(in srgb, var(--flow-panel) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 68%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
  width: 32px;
  z-index: 2;
}

.bk-flow-language-menu.bk-language-options {
  backdrop-filter: blur(18px);
  background: var(--flow-panel);
  border: 1px solid var(--secondary-color);
  border-radius: 999px;
  box-shadow: var(--flow-soft-shadow);
  gap: 5px;
  margin: 0;
  opacity: 0;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0.74);
  transform-origin: right center;
  transition: opacity 0.18s ease, transform 0.22s ease;
  z-index: 3;
}

.bk-language-switch:hover .bk-flow-language-menu.bk-language-options,
.bk-language-switch:focus-within .bk-flow-language-menu.bk-language-options,
.bk-language-switch.is-open .bk-flow-language-menu.bk-language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scaleX(1);
}

.bk-flow-language-menu.bk-language-options li {
  line-height: 0;
  list-style: none;
}

.bk-language-switch .bk-flow-flag {
  height: 24px;
  width: 24px;
}

.bk-flow-language-menu.bk-language-options a {
  height: 30px;
  width: 30px;
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-language-current {
  background: color-mix(in srgb, var(--flow-nav-inverse) 14%, transparent);
  border-color: color-mix(in srgb, var(--flow-nav-inverse) 34%, transparent);
  color: var(--flow-nav-inverse);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-language-menu.bk-language-options {
  background: var(--flow-panel);
  border-color: var(--secondary-color);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-language-menu.bk-language-options a {
  background: color-mix(in srgb, var(--flow-nav-inverse) 12%, transparent);
}

.bk-flow-theme-switch {
  align-items: center;
  display: inline-flex;
  gap: 0;
  overflow: visible;
  position: relative;
}

.bk-flow-theme-switch .bk-flow-theme-current,
.bk-flow-theme-switch .bk-flow-theme-option {
  align-items: center;
  appearance: none;
  background: color-mix(in srgb, var(--flow-panel) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 68%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.98rem;
  height: 32px;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
  width: 32px;
}

.bk-flow-theme-switch .bk-flow-theme-current {
  z-index: 2;
}

.bk-flow-theme-menu.bk-theme-options {
  align-items: center;
  backdrop-filter: blur(18px);
  background: var(--flow-panel);
  border: 1px solid var(--secondary-color);
  border-radius: 999px;
  box-shadow: var(--flow-soft-shadow);
  display: flex;
  gap: 5px;
  margin: 0;
  opacity: 0;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0.74);
  transform-origin: right center;
  transition: opacity 0.18s ease, transform 0.22s ease;
  z-index: 3;
}

.bk-flow-theme-switch:hover .bk-flow-theme-menu.bk-theme-options,
.bk-flow-theme-switch:focus-within .bk-flow-theme-menu.bk-theme-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scaleX(1);
}

.bk-flow-theme-switch .bk-flow-theme-option {
  height: 30px;
  width: 30px;
}

.bk-flow-theme-switch .bk-flow-theme-option[aria-pressed="true"] {
  background: color-mix(in srgb, var(--flow-primary) 18%, var(--flow-panel));
  border-color: color-mix(in srgb, var(--flow-primary) 48%, transparent);
  color: var(--flow-primary);
}

.bk-flow-theme-switch .bk-flow-theme-current:hover,
.bk-flow-theme-switch .bk-flow-theme-current:focus,
.bk-flow-theme-switch .bk-flow-theme-option:hover,
.bk-flow-theme-switch .bk-flow-theme-option:focus {
  border-color: var(--secondary-color);
  color: var(--flow-primary);
  outline: none;
}

.bk-flow-theme-fa {
  --fa-display: inline-block;
  --fa-width: 1em;
  display: inline-block;
  font-family: var(--fa-family-classic, "Font Awesome 7 Free");
  font-size: 0.95rem;
  font-style: normal;
  font-variant: normal;
  font-weight: var(--fa-style, 900);
  line-height: 1;
  pointer-events: none;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.bk-flow-theme-fa::before {
  content: var(--fa);
}

.bk-flow-theme-fa.fa-circle-half-stroke {
  --fa: "\f042";
}

.bk-flow-theme-fa.fa-sun {
  --fa: "\f185";
}

.bk-flow-theme-fa.fa-moon {
  --fa: "\f186";
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-theme-current {
  background: color-mix(in srgb, var(--flow-nav-inverse) 14%, transparent);
  border-color: color-mix(in srgb, var(--flow-nav-inverse) 34%, transparent);
  color: var(--flow-nav-inverse);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-theme-menu.bk-theme-options {
  background: var(--flow-panel);
  border-color: var(--secondary-color);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-theme-menu .bk-flow-theme-option {
  background: color-mix(in srgb, var(--flow-nav-inverse) 12%, transparent);
  color: var(--flow-ink);
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bkry-btn,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-button {
  color: #000000;
}

.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bkry-btn-primary,
.bk-flow-header:not(.is-scrolled):not(.is-mobile-open) .bk-flow-button-primary {
  background: var(--btn-inverse-bg);
  border-color: var(--btn-inverse-border);
  box-shadow: none;
  color: #000000;
}

.bkry-layout-position {
  position: relative;
}

.bkry-layout-position-navbar,
.bkry-layout-position-breadcrumb {
  display: contents;
}

.bkry-layout-spacing-none {
  padding-block: 0;
}

.bkry-layout-spacing-small {
  padding-block: clamp(0.75rem, 2vw, 1.5rem);
}

.bkry-layout-spacing-default {
  padding-block: 0;
}

.bkry-layout-spacing-large {
  padding-block: clamp(1.5rem, 4vw, 3.5rem);
}

.bkry-layout-container-container > * {
  margin-inline: auto;
  max-width: 1200px;
}

.bkry-layout-container-small > * {
  margin-inline: auto;
  max-width: 880px;
}

.bkry-layout-container-large > * {
  margin-inline: auto;
  max-width: 1440px;
}

.bkry-layout-position-top,
.bkry-layout-position-bottom {
  background: var(--bk-section-surface, transparent);
}
.bkry-flow .bkry-cta-section,
.bkry-cta-section {
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 3.2vw, 42px) clamp(18px, 2.4vw, 48px) clamp(30px, 3.6vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 88%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-one-color) var(--bk-template-hero-gradient-accent-one-mix), transparent) 0 13vw, transparent 13.2vw),
    radial-gradient(circle at 10% 82%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-two-color) var(--bk-template-hero-gradient-accent-two-mix), transparent) 0 9vw, transparent 9.2vw),
    linear-gradient(var(--bk-template-hero-gradient-angle), color-mix(in srgb, var(--bk-template-hero-gradient-start-color) var(--bk-template-hero-gradient-start-mix), var(--flow-hero-bg, var(--primary-bg, #eaf8fb))), color-mix(in srgb, var(--bk-template-hero-gradient-end-color) var(--bk-template-hero-gradient-end-mix), var(--flow-hero-bg, var(--primary-bg, #eaf8fb)))) !important;
  color: var(--bkry-cta-content-color, #ffffff);
}

.bkry-cta-section::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 14%;
  width: clamp(520px, 56vw, 900px);
  height: clamp(460px, 48vw, 780px);
  border-radius: 999px;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--flow-nav-inverse, #ffffff) 22%, transparent) 0 42%, transparent 43%);
  opacity: 0.78;
  pointer-events: none;
  transform: rotate(-32deg);
  z-index: 0;
}

.bkry-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--flow-nav-inverse, #ffffff) 9%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}

.bkry-cta-section > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.bkry-cta-overlay {
  display: var(--bkry-cta-overlay-display, block);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: var(--bkry-cta-overlay-width, 100%);
  border-radius: inherit;
  background: var(--bkry-cta-overlay-background, rgba(16,35,50,0.82));
  backdrop-filter: blur(var(--bkry-cta-overlay-blur, 0));
}

.bkry-cta-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1680px;
  min-height: clamp(230px, 19vw, 280px);
  margin-inline: auto;
  padding: clamp(34px, 3vw, 48px) clamp(54px, 5.6vw, 96px) clamp(34px, 3vw, 48px) clamp(72px, 7vw, 128px);
  border-radius: 999px;
  clip-path: inset(0 round 999px);
  background:
    radial-gradient(circle at 94% 18%, rgba(255,255,255,0.18), transparent 38%),
    radial-gradient(circle at 74% 86%, color-mix(in srgb, var(--bkry-cta-panel-end, #755be2) 18%, transparent), transparent 34%),
    linear-gradient(112deg, var(--bkry-cta-panel-start, #5043c8) 0%, color-mix(in srgb, var(--bkry-cta-panel-start, #5043c8) 48%, var(--bkry-cta-panel-end, #755be2)) 48%, var(--bkry-cta-panel-end, #755be2) 100%);
  box-shadow: 0 26px 70px rgba(43, 37, 122, 0.2);
}

.bkry-cta-content {
  position: relative;
  z-index: 1;
}

.bkry-cta-content .bkry-page-cta-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  column-gap: clamp(28px, 5vw, 90px);
  align-items: center;
}

.bkry-cta-content .bkry-page-cta-content > :not(.bkry-page-cta-media) {
  grid-column: 1;
}

.bkry-cta-content .bkry-page-cta-media {
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: center;
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 520px);
  min-height: 0;
  margin: 0;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: clamp(24px, 3.2vw, 42px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.34) 42%, rgba(255,255,255,0.18) 100%),
    radial-gradient(circle at 52% 46%, rgba(255,255,255,0.42) 0 30%, transparent 58%),
    radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--bkry-cta-panel-end, #755be2) 14%, transparent), transparent 36%),
    rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 -1px 0 rgba(255,255,255,0.28),
    inset 0 0 44px rgba(255,255,255,0.18),
    0 22px 54px rgba(77, 72, 34, 0.16);
  backdrop-filter: blur(18px) saturate(1.18) brightness(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.18) brightness(1.08);
  overflow: hidden;
  transform: translate(-2%, -2%);
}

.bkry-cta-content .bkry-page-cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.56) 0%, rgba(255,255,255,0.14) 26%, transparent 54%),
    radial-gradient(circle at 12% 12%, rgba(255,255,255,0.5), transparent 34%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.bkry-cta-content .bkry-page-cta-media::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: inset 0 -42px 70px rgba(255,255,255,0.16);
  pointer-events: none;
}

.bkry-cta-content .bkry-page-cta-media img {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 470px);
  max-height: clamp(160px, 18vw, 240px);
  border-radius: clamp(18px, 2.4vw, 30px);
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(24, 16, 88, 0.26));
}

.bkry-cta-content .bk-landing-cta-media {
  max-width: min(100%, 520px);
  padding: 18px;
}

.bkry-cta-content .bk-landing-cta-media img {
  aspect-ratio: 4 / 3;
  height: clamp(180px, 18vw, 260px);
  max-height: none;
  object-fit: cover;
  width: min(100%, 470px);
}

.bkry-cta-panel .bk-theme-section {
  padding: 0 !important;
  background: transparent !important;
}

.bkry-cta-panel .uk-container {
  max-width: none;
  padding: 0;
}

.bkry-cta-panel .bk-kicker,
.bkry-cta-panel .uk-text-meta,
.bkry-cta-panel small:first-child {
  color: var(--bkry-cta-kicker-color, #dff4ec) !important;
  display: inline-block;
  font-size: var(--bkry-cta-kicker-size, 0.82rem);
  font-weight: var(--bkry-cta-kicker-weight, 700);
  letter-spacing: 0.08em;
  margin-bottom: clamp(8px, 1vw, 14px);
  margin-inline-start: clamp(18px, 2vw, 36px);
  text-transform: uppercase;
}

.bkry-cta-panel h1,
.bkry-cta-panel h2,
.bkry-cta-panel h3 {
  max-width: var(--bkry-cta-headline-max, 820px);
  color: var(--bkry-cta-headline-color, #ffffff) !important;
  font-weight: var(--bkry-cta-headline-weight, 800);
  line-height: 1.05;
  margin-block: 0.3em 0.36em;
}

.bkry-cta-panel h1 {
  font-size: var(--bkry-type-h1-size);
}

.bkry-cta-panel h2 {
  font-size: var(--bkry-type-h2-size);
}

.bkry-cta-panel h3 {
  font-size: var(--bkry-type-h3-size);
}

.bkry-cta-panel p,
.bkry-cta-panel li {
  max-width: var(--bkry-cta-content-max, 760px);
  color: var(--bkry-cta-content-color, #ffffff) !important;
  font-size: var(--bkry-cta-content-size, var(--bkry-type-body-size));
  font-weight: var(--bkry-cta-content-weight, 500);
  line-height: var(--bkry-cta-content-line-height, 1.7);
}

.bkry-cta-section .uk-flex {
  display: block !important;
  align-items: flex-start;
  gap: clamp(22px, 4vw, 54px) !important;
}

.bkry-cta-section [class*="uk-width-"] {
  width: min(780px, 72%) !important;
}

.bkry-cta-section .bkry-btn,
.bkry-cta-section .uk-button {
  margin-top: clamp(18px, 2.4vw, 30px);
  margin-inline-start: clamp(18px, 2vw, 36px);
  min-height: 66px;
  padding-inline: clamp(34px, 5vw, 62px);
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #5144c8;
  box-shadow: 0 12px 26px rgba(24, 16, 88, 0.2);
}

.bkry-cta-section .bkry-btn:hover,
.bkry-cta-section .bkry-btn:focus-visible,
.bkry-cta-section .uk-button:hover,
.bkry-cta-section .uk-button:focus-visible {
  background: #ffffff;
  color: #3f32ad;
  transform: translateY(-2px);
}

.bkry-cta-section .bkry-btn-icon {
  margin-inline-start: var(--bkry-cta-button-icon-gap, 0.55rem);
}

.bkry-cta-section .bkry-btn-icon-left {
  margin-inline: 0 var(--bkry-cta-button-icon-gap, 0.55rem);
}

.bkry-cta-button-inverse .bkry-btn-outline,
.bkry-cta-button-inverse .bkry-btn-ghost,
.bkry-cta-button-inverse .bkry-btn-custom {
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.bkry-cta-button-inverse .bkry-btn-outline:hover,
.bkry-cta-button-inverse .bkry-btn-outline:focus-visible,
.bkry-cta-button-inverse .bkry-btn-ghost:hover,
.bkry-cta-button-inverse .bkry-btn-ghost:focus-visible {
  color: #102332;
  background: #ffffff;
}

@media (max-width: 960px) {
  .bkry-cta-panel {
    min-height: 0;
    padding: clamp(38px, 6vw, 56px) clamp(28px, 6vw, 48px);
    border-radius: clamp(34px, 8vw, 58px);
    clip-path: inset(0 round clamp(34px, 8vw, 58px));
  }

  .bkry-cta-overlay {
    width: 100%;
  }

  .bkry-cta-content .bkry-page-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2.8vw, 18px);
  }

  .bkry-cta-content .bkry-page-cta-content > :not(.bkry-page-cta-media) {
    grid-column: auto;
  }

  .bkry-cta-content .bkry-page-cta-media {
    display: none;
  }

  .bkry-cta-section [class*="uk-width-"] {
    width: 100% !important;
  }

  .bkry-cta-panel .bk-kicker,
  .bkry-cta-panel .uk-text-meta,
  .bkry-cta-panel small:first-child,
  .bkry-cta-section .bkry-btn,
  .bkry-cta-section .uk-button {
    margin-inline-start: 0;
  }

  .bkry-cta-panel .bk-kicker,
  .bkry-cta-panel .uk-text-meta,
  .bkry-cta-panel small:first-child {
    margin-bottom: 0;
  }

  .bkry-cta-panel h1,
  .bkry-cta-panel h2,
  .bkry-cta-panel h3 {
    max-width: 100%;
    margin: 0;
  }

  .bkry-cta-panel p,
  .bkry-cta-panel li {
    max-width: 100%;
    margin: 0;
  }

  .bkry-cta-section .bkry-btn,
  .bkry-cta-section .uk-button {
    width: min(100%, 620px);
    margin-top: clamp(8px, 2vw, 14px);
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .bkry-flow .bkry-cta-section,
  .bkry-cta-section {
    padding: 38px 14px 32px;
    background-attachment: scroll;
  }

  .bkry-cta-overlay {
    width: 100%;
  }

  .bkry-cta-panel {
    min-height: 0;
    padding: 32px 22px;
    border-radius: 34px;
  }

  .bkry-cta-panel h1,
  .bkry-cta-panel h2,
  .bkry-cta-panel h3 {
    line-height: 1.08;
  }

  .bkry-cta-section [class*="uk-width-"],
  .bkry-cta-section .bkry-btn,
  .bkry-cta-section .uk-button {
    width: 100% !important;
  }

  .bkry-cta-section .bkry-btn,
  .bkry-cta-section .uk-button {
    min-height: 60px;
  }
}

/* Features page rebuilt on the section-based flow architecture. */
.bkry-flow .bk-features-hero,
.bkry-flow .bk-features-map-section,
.bkry-flow .bk-features-detail-section,
.bkry-flow .bk-features-platforms {
  overflow: hidden;
  padding-inline: clamp(18px, 2.4vw, 48px);
}

.bkry-flow :is(.bk-features-map-section, .bk-features-detail-section, .bk-features-platforms) > .uk-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: min(1680px, calc(100vw - clamp(36px, 4.8vw, 96px)));
  padding-inline: 0;
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child.bk-features-hero {
  min-height: auto;
  padding: var(--bkry-first-hero-padding-top) clamp(18px, 2.4vw, 48px) clamp(34px, 4vw, 54px);
}

.bk-flow-content > .bk-theme-section:first-child.bk-features-hero > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child.bk-features-hero h1 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.08;
  margin: 12px 0 0;
  max-width: 840px;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child.bk-features-hero p,
.bk-flow-content > .bk-theme-section:first-child.bk-features-hero .uk-text-lead {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-size);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
  opacity: 1;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child.bk-features-hero .bk-kicker {
  color: var(--flow-primary);
}

.bk-features-hero-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.bk-features-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  justify-self: center;
  margin-top: clamp(18px, 2.4vw, 28px);
  width: 85%;
}

.bk-feature-proof-list,
.bk-feature-checks {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: clamp(24px, 3vw, 38px) 0 0;
  padding: 0;
}

.bk-feature-proof-list li,
.bk-feature-checks li {
  align-items: flex-start;
  color: var(--flow-ink);
  display: flex;
  gap: 10px;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-feature-proof-list .uk-icon,
.bk-feature-checks li::before {
  color: #31b56f;
  flex: 0 0 auto;
}

.bk-feature-checks li::before {
  content: "✓";
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-features-hero-visual {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  position: relative;
  width: 85%;
}

.bk-features-hero-visual img {
  display: block;
  filter: drop-shadow(0 34px 54px color-mix(in srgb, var(--flow-ink) 18%, transparent));
  width: 100%;
}

.bk-feature-section-heading {
  margin-bottom: clamp(32px, 5vw, 68px);
  max-width: 920px;
}

.bk-feature-section-heading h2 {
  margin: 0 0 18px;
  max-width: 920px;
}

.bk-feature-section-heading p:not(.bk-kicker) {
  max-width: 780px;
}

.bk-features-platforms .bk-feature-section-heading {
  max-width: 760px;
}

.bk-features-platforms .bk-feature-section-heading h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1.12;
}

.bk-features-platforms .bk-feature-section-heading p:not(.bk-kicker) {
  max-width: 700px;
}

.bk-feature-map-grid,
.bk-feature-detail-grid,
.bk-feature-platform-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.bk-feature-map-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bk-feature-map-card,
.bk-feature-detail-card,
.bk-feature-platform-grid article {
  background: color-mix(in srgb, var(--flow-panel) 91%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(13px, 1.84vw, 24px);
  box-shadow: var(--flow-soft-shadow);
}

.bk-feature-map-card {
  align-items: center;
  color: var(--flow-ink);
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.bk-feature-map-card:hover,
.bk-feature-map-card:focus-visible {
  border-color: color-mix(in srgb, var(--flow-primary) 42%, transparent);
  box-shadow: var(--flow-shadow);
  color: var(--flow-ink);
  text-decoration: none;
  transform: translateY(-3px);
}

.bk-feature-map-icon,
.bk-feature-detail-icon {
  align-items: center;
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border-radius: 18px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.bk-feature-map-icon img,
.bk-feature-detail-icon img {
  max-height: 34px;
  max-width: 34px;
}

.bk-feature-map-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bk-feature-map-text strong {
  color: #000000;
  font-size: 13px;
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.35;
}

.bk-feature-map-text small,
.bk-feature-group {
  color: var(--flow-primary);
  font-size: 15px;
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

[data-theme="dark"] .bk-feature-map-text strong {
  color: #ffffff;
}

.bk-feature-split {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
}

.bk-feature-split--reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 0.9fr);
}

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

@media (min-width: 1280px) {
  .bk-feature-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bk-feature-detail-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: clamp(20px, 2.1vw, 28px);
}

.bk-feature-detail-card h2 {
  font-size: clamp(1.45rem, 1.65vw, 1.85rem);
  line-height: 1.12;
  margin: 0;
}

.bk-feature-detail-card p {
  margin: 0;
}

.bk-feature-detail-card > p:not(.bk-feature-group) {
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.58;
}

.bk-feature-detail-card .bk-feature-group {
  font-size: 0.78rem;
  line-height: 1.25;
}

.bk-feature-detail-card .bk-feature-checks {
  gap: 8px;
  margin-top: clamp(14px, 1.6vw, 20px);
}

.bk-feature-detail-card .bk-feature-checks li {
  font-size: clamp(0.88rem, 0.94vw, 0.98rem);
  gap: 8px;
  line-height: 1.45;
}

.bk-feature-link {
  align-items: center;
  color: var(--flow-primary);
  display: inline-flex;
  font-weight: var(--bkry-font-weight-extrabold);
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
}

.bk-feature-detail-card .bk-feature-link {
  font-size: clamp(0.88rem, 0.94vw, 0.98rem);
  line-height: 1.35;
  margin-top: 5px;
}

.bk-feature-platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bk-feature-platform-grid article {
  align-items: center;
  border-radius: 18px;
  display: grid;
  column-gap: 10px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 96px;
  padding: 12px 12px;
  text-align: left;
}

.bk-feature-platform-grid img {
  display: block;
  grid-row: 1 / span 2;
  margin: 0;
  max-height: 36px;
  max-width: 38px;
  object-fit: contain;
}

.bk-feature-platform-grid h3 {
  align-self: end;
  font-size: var(--bkry-type-h3-size);
  line-height: 1.15;
  margin: 0;
}

.bk-feature-platform-grid p {
  align-self: start;
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 1180px) {
  .bk-feature-map-grid,
  .bk-feature-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bk-features-hero-shell,
  .bk-feature-split,
  .bk-feature-split--reverse {
    grid-template-columns: 1fr;
  }

  .bk-features-hero-copy,
  .bk-features-hero-visual,
  .bk-features-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .bk-features-hero-visual,
  .bk-features-actions {
    justify-self: center;
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .bk-flow-content > .bk-theme-section:first-child.bk-features-hero {
    padding: 112px 14px 36px;
  }

  .bk-flow-content > .bk-theme-section:first-child.bk-features-hero h1 {
    font-size: var(--bkry-type-h1-size);
    line-height: 1.02;
  }

  .bk-features-hero-shell {
    padding: 22px 18px;
  }

  .bk-features-hero-visual {
    display: none;
  }

  .bk-features-actions,
  .bk-features-actions .bkry-btn {
    width: 100%;
  }

  .bk-features-actions {
    justify-self: stretch;
  }

  .bk-features-actions .bkry-btn {
    justify-content: center;
  }

  .bk-feature-map-grid,
  .bk-feature-detail-grid,
  .bk-feature-platform-grid {
    grid-template-columns: 1fr;
  }

}

/* Pricing page rebuilt on bkry_flow sections. */
.bkry-flow .bk-pricing-hero,
.bkry-flow .bk-pricing-plans-section,
.bkry-flow .bk-pricing-comparison-section,
.bkry-flow .bk-pricing-benefits-section,
.bkry-flow .bk-pricing-platforms-section {
  overflow: hidden;
}

.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero {
  min-height: auto;
  padding: var(--bkry-first-hero-padding-top) clamp(18px, 2.4vw, 48px) clamp(34px, 4vw, 54px);
}

.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero > .uk-container {
  max-width: 1680px;
  padding-inline: 0;
  width: 100%;
}

.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero h1 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.08;
  margin: 12px 0 0;
  max-width: 840px;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero p,
.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero .uk-text-lead {
  color: var(--flow-muted);
  font-size: var(--bkry-type-body-size);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
  opacity: 1;
  text-align: left;
}

.bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero .bk-kicker {
  color: var(--flow-primary);
}

.bk-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
}

.bk-pricing-hero-visual {
  margin: 0;
  position: relative;
}

.bk-pricing-hero-visual img {
  display: block;
  filter: drop-shadow(0 32px 54px color-mix(in srgb, var(--flow-ink) 18%, transparent));
  margin-inline: auto;
  max-height: 500px;
  object-fit: contain;
  width: min(100%, 480px);
}

.bk-pricing-intro {
  margin-bottom: clamp(28px, 4.6vw, 60px);
  max-width: 900px;
}

.bk-pricing-intro h2,
.bk-pricing-trial-card h2 {
  margin: 0 0 18px;
}

.bk-pricing-platforms-section .bk-pricing-intro {
  max-width: 760px;
}

.bk-pricing-platforms-section > .uk-container {
  padding-left: 0;
  padding-right: 0;
}

.bk-pricing-platforms-section .bk-pricing-intro h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1.12;
}

.bk-pricing-trial-card {
  align-items: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--flow-primary) 11%, var(--flow-panel)), color-mix(in srgb, var(--flow-secondary) 18%, var(--flow-panel)));
  border: 1px solid color-mix(in srgb, var(--flow-primary) 24%, transparent);
  border-radius: clamp(22px, 3.2vw, 42px);
  box-shadow: var(--flow-soft-shadow);
  display: grid;
  gap: clamp(20px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(38px, 6vw, 76px);
  padding: clamp(24px, 4vw, 46px);
}

.bk-pricing-plan-grid,
.bk-pricing-benefit-grid,
.bk-pricing-platform-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.bk-pricing-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bk-pricing-plan-card,
.bk-pricing-benefit-grid article,
.bk-pricing-platform-grid a {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(20px, 2.8vw, 36px);
  box-shadow: var(--flow-soft-shadow);
}

.bk-pricing-plan-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
}

.bk-pricing-plan-card.is-featured {
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--flow-secondary) 24%, transparent), transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--flow-primary) 15%, var(--flow-panel)), color-mix(in srgb, var(--flow-panel) 90%, transparent));
  border-color: color-mix(in srgb, var(--flow-primary) 46%, transparent);
  transform: translateY(-10px);
}

.bk-pricing-plan-top span {
  color: var(--flow-primary);
  font-size: 0.82rem;
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bk-pricing-plan-top h2 {
  font-size: var(--bkry-type-h2-size);
  margin: 8px 0 10px;
}

.bk-pricing-plan-top p {
  margin: 0;
}

.bk-pricing-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-pricing-price span,
.bk-pricing-price small {
  color: var(--flow-muted);
  font-weight: var(--bkry-font-weight-extrabold);
  text-transform: uppercase;
}

.bk-pricing-price strong {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1;
}

.bk-pricing-plan-features {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-pricing-plan-features li {
  align-items: flex-start;
  color: var(--flow-ink);
  display: flex;
  gap: 9px;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-pricing-plan-features li::before {
  color: #31b56f;
  content: "✓";
  flex: 0 0 auto;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-pricing-plan-card .bkry-btn {
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.bk-pricing-table-wrap {
  background: color-mix(in srgb, var(--flow-panel) 94%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(18px, 2.4vw, 30px);
  box-shadow: var(--flow-soft-shadow);
  max-width: 100%;
  overflow: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.bk-pricing-table {
  border-collapse: collapse;
  min-width: 780px;
  width: 100%;
}

.bk-pricing-table th,
.bk-pricing-table td {
  border-bottom: 1px solid color-mix(in srgb, var(--flow-line) 70%, transparent);
  color: var(--flow-ink);
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
}

.bk-pricing-table th:first-child {
  text-align: left;
}

.bk-pricing-table thead th {
  background: color-mix(in srgb, var(--flow-primary) 9%, transparent);
  color: var(--flow-ink);
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-pricing-check {
  align-items: center;
  background: color-mix(in srgb, #31b56f 14%, transparent);
  border-radius: 999px;
  color: #16824a;
  display: inline-flex;
  font-size: 0;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.bk-pricing-check::before {
  content: "✓";
  font-size: 1rem;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-pricing-muted {
  color: var(--flow-muted);
  font-size: 0.9rem;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bk-pricing-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bk-pricing-benefit-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.bk-pricing-benefit-grid img {
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border-radius: 18px;
  height: 58px;
  margin-bottom: 18px;
  padding: 12px;
  width: 58px;
}

.bk-pricing-benefit-grid h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1.08;
  margin: 0 0 12px;
}

.bk-pricing-benefit-grid a {
  align-items: center;
  color: var(--flow-primary);
  display: inline-flex;
  font-weight: var(--bkry-font-weight-extrabold);
  gap: 8px;
  text-decoration: none;
}

.bk-pricing-platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bk-pricing-platform-grid a {
  align-items: center;
  color: var(--flow-ink);
  display: grid;
  column-gap: 10px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 96px;
  padding: 12px;
  text-align: left;
  text-decoration: none;
}

.bk-pricing-platform-grid img {
  display: block;
  margin: 0;
  max-height: 36px;
  max-width: 38px;
  object-fit: contain;
}

.bk-pricing-platform-grid strong {
  font-size: var(--bkry-type-h6-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.15;
}

@media (max-width: 1180px) {
  .bk-pricing-hero-shell {
    grid-template-columns: 1fr;
  }

  .bk-pricing-plan-grid,
  .bk-pricing-benefit-grid,
  .bk-pricing-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bk-pricing-plan-card.is-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero {
    padding: 112px 14px 36px;
  }

  .bk-flow-content > .bk-theme-section:first-child.bk-pricing-hero h1 {
    font-size: var(--bkry-type-h1-size);
    line-height: 1.02;
  }

  .bk-pricing-hero-shell {
    padding: 22px 18px;
  }

  .bk-pricing-hero-visual {
    display: none;
  }

  .bk-pricing-actions,
  .bk-pricing-actions .bkry-btn,
  .bk-pricing-trial-card .bkry-btn {
    width: 100%;
  }

  .bk-pricing-actions .bkry-btn,
  .bk-pricing-trial-card .bkry-btn {
    justify-content: center;
  }

  .bk-pricing-trial-card,
  .bk-pricing-plan-grid,
  .bk-pricing-benefit-grid,
  .bk-pricing-platform-grid {
    grid-template-columns: 1fr;
  }
}

/* Compatibility for CMS pages that still use the original UIKit section markup. */
.bkry-flow .bk-flow-content > section.uk-section {
  padding: clamp(84px, 9vw, 132px) clamp(18px, 2.4vw, 48px);
}

.bkry-flow .bk-flow-content > section.uk-section > .uk-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: min(1680px, calc(100vw - clamp(36px, 4.8vw, 96px)));
  padding-inline: 0;
  width: 100%;
}

.bkry-flow .bk-container-tight {
  max-width: min(980px, 100%);
}

.bkry-flow [class*="uk-child-width"][uk-grid] {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  margin-left: 0;
}

.bkry-flow [class*="uk-child-width"][uk-grid] > * {
  padding-left: 0;
  width: auto;
}

.bkry-flow [class*="uk-child-width-1-2"][uk-grid] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bkry-flow [class*="uk-child-width-1-3"][uk-grid] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bkry-flow [class*="uk-child-width-1-4"][uk-grid] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bkry-flow .uk-card-primary,
.bkry-flow .bk-plan-card-featured {
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--flow-secondary) 28%, transparent), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--flow-primary) 18%, var(--flow-panel)), color-mix(in srgb, var(--flow-panel) 90%, transparent));
  border-color: color-mix(in srgb, var(--flow-primary) 48%, transparent);
  color: var(--flow-ink);
}

.bkry-flow .uk-card-primary :is(h1, h2, h3, p, li, span),
.bkry-flow .bk-plan-card-featured :is(h1, h2, h3, p, li, span) {
  color: inherit;
}

.bkry-flow .bk-plan-card-featured,
.bkry-flow .bk-plan-card-featured :is(.uk-h3, .uk-light, .bk-price, .bk-period, .bk-vat-note, p, li) {
  color: var(--flow-ink) !important;
}

.bkry-flow .bk-plan-card-featured .uk-label {
  color: var(--flow-primary) !important;
}

.bkry-flow .uk-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bkry-flow .uk-list li {
  align-items: flex-start;
  color: var(--flow-ink);
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.bkry-flow .uk-list .uk-icon {
  color: #31b56f;
  flex: 0 0 auto;
  margin-top: 0.16em;
}

.bkry-flow .uk-label {
  background: color-mix(in srgb, var(--flow-primary) 14%, var(--flow-panel));
  border: 1px solid color-mix(in srgb, var(--flow-primary) 24%, transparent);
  border-radius: 999px;
  color: var(--flow-primary);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: var(--bkry-font-weight-extrabold);
  letter-spacing: 0.08em;
  padding: 7px 12px;
  text-transform: uppercase;
  width: fit-content;
}

.bkry-flow .bk-page-title:first-child:not(:has(.bk-page-title-layout)) {
  min-height: auto;
  padding: clamp(150px, 14vw, 216px) clamp(18px, 2.4vw, 48px) clamp(72px, 8vw, 118px);
}

.bkry-flow .bk-page-title:first-child:not(:has(.bk-page-title-layout)) .uk-container {
  max-width: min(980px, calc(100vw - clamp(36px, 4.8vw, 96px)));
}

.bkry-flow .bk-page-title:first-child:not(:has(.bk-page-title-layout)) h1 {
  font-size: var(--bkry-type-h1-size);
  line-height: 0.98;
  margin: 12px 0 0;
}

.bkry-flow .bk-page-title:first-child:not(:has(.bk-page-title-layout)) p:not(.bk-kicker) {
  font-size: var(--bkry-type-body-lg-size);
  max-width: 820px;
}

.bk-flow-content > .bk-page-title:first-child.bk-feature-page-hero {
  background:
    radial-gradient(circle at 92% 88%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-one-color) var(--bk-template-hero-gradient-accent-one-mix), transparent) 0 13vw, transparent 13.2vw),
    radial-gradient(circle at 10% 82%, color-mix(in srgb, var(--bk-template-hero-gradient-accent-two-color) var(--bk-template-hero-gradient-accent-two-mix), transparent) 0 9vw, transparent 9.2vw),
    linear-gradient(var(--bk-template-hero-gradient-angle), color-mix(in srgb, var(--bk-template-hero-gradient-start-color) var(--bk-template-hero-gradient-start-mix), var(--flow-hero-bg)), color-mix(in srgb, var(--bk-template-hero-gradient-end-color) var(--bk-template-hero-gradient-end-mix), var(--flow-hero-bg)));
  color: var(--flow-nav-inverse);
  overflow: visible;
  position: relative;
}

.bk-flow-content > .bk-page-title:first-child.bk-feature-page-hero::before {
  background: radial-gradient(circle at center, color-mix(in srgb, var(--flow-nav-inverse) 22%, transparent) 0 42%, transparent 43%);
  content: "";
  height: clamp(460px, 48vw, 780px);
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  right: 4%;
  top: 20%;
  transform: rotate(-32deg);
  width: clamp(520px, 56vw, 900px);
}

.bk-flow-content > .bk-page-title:first-child.bk-feature-page-hero::after {
  background: linear-gradient(135deg, color-mix(in srgb, var(--flow-nav-inverse) 9%, transparent), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.bk-flow-content > .bk-page-title:first-child.bk-feature-page-hero > .uk-container {
  position: relative;
  z-index: 1;
}

.bkry-flow .bk-feature-page-hero .bk-breadcrumb {
  align-items: center;
  color: var(--flow-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--bkry-type-body-sm-size);
  font-weight: var(--bkry-font-weight-bold);
  gap: 8px;
  margin: 0 0 18px;
}

.bkry-flow .bk-feature-page-hero .bk-breadcrumb a {
  color: var(--flow-primary);
}

.bkry-flow .bk-feature-page-hero .bk-breadcrumb span {
  color: var(--flow-muted);
}

.bkry-flow .bk-feature-page-hero-shell {
  --feature-hero-media-edge: clamp(72px, 7vw, 132px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  min-height: clamp(430px, 44vh, 560px);
  position: relative;
}

.bkry-flow .bk-feature-page-hero .bk-page-title-copy {
  align-self: center;
}

.bkry-flow .bk-feature-page-hero .bk-page-title-actions {
  grid-column: 1;
  grid-row: auto;
  justify-content: flex-start;
  justify-self: start;
  margin-top: 26px;
  width: auto;
}

.bkry-flow .bk-feature-page-icon {
  align-items: center;
  align-self: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--flow-primary) 28%, transparent), transparent 42%),
    linear-gradient(145deg, color-mix(in srgb, var(--flow-panel) 94%, transparent), color-mix(in srgb, var(--flow-secondary) 24%, var(--flow-panel)));
  border: 1px solid color-mix(in srgb, var(--flow-line) 74%, transparent);
  border-radius: clamp(22px, 3vw, 34px);
  box-shadow: var(--flow-soft-shadow);
  display: flex;
  justify-content: center;
  justify-self: end;
  margin: 0;
  margin-right: var(--feature-hero-media-edge);
  max-width: 300px;
  padding: clamp(38px, 5vw, 72px);
  width: min(100%, 300px);
}

.bkry-flow .bk-feature-page-icon img {
  display: block;
  max-height: 150px;
  object-fit: contain;
  width: 100%;
}

.bk-flow-content > .bk-page-title:first-child .bk-feature-page-icon {
  grid-row: auto;
  margin-right: 0;
  position: absolute;
  right: var(--feature-hero-media-edge);
  top: 50%;
  transform: translateY(-50%);
}

.bkry-flow .bk-feature-page-section {
  padding-inline: clamp(18px, 2.4vw, 48px);
}

.bkry-flow .bk-feature-page-section > .uk-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: min(1360px, calc(100vw - clamp(36px, 4.8vw, 96px)));
  padding-inline: 0;
  width: 100%;
}

.bkry-flow .bk-feature-page-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.bkry-flow .bk-feature-page-content {
  max-width: 880px;
}

.bkry-flow .bk-feature-page-content h2,
.bkry-flow .bk-feature-page-grid > div > h2,
.bkry-flow .bk-feature-page-card h2,
.bkry-flow .bk-feature-page-sidebar h2,
.bkry-flow .bk-feature-page-faq-section h2 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h2-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.06;
  margin: 0 0 18px;
}

.bkry-flow .bk-feature-page-content h2:not(:first-of-type) {
  margin-top: clamp(34px, 5vw, 58px);
}

.bkry-flow .bk-feature-page-content p,
.bkry-flow .bk-feature-page-card p,
.bkry-flow .bk-feature-page-faq article p {
  color: var(--flow-muted);
  margin: 0;
}

.bkry-flow .bk-feature-page-content p + p {
  margin-top: 16px;
}

.bkry-flow .bk-feature-page-sidebar,
.bkry-flow .bk-feature-page-card,
.bkry-flow .bk-feature-page-faq article {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: var(--flow-soft-shadow);
}

.bkry-flow .bk-feature-page-sidebar,
.bkry-flow .bk-feature-page-card {
  padding: clamp(22px, 3vw, 34px);
  position: sticky;
  top: 118px;
}

.bkry-flow .bk-feature-page-sidebar .bk-module-list,
.bkry-flow .bk-feature-page-steps {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bkry-flow .bk-feature-page-sidebar .bk-module-list li,
.bkry-flow .bk-feature-page-steps li {
  align-items: flex-start;
  color: var(--flow-ink);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.bkry-flow .bk-feature-page-sidebar .bk-module-list span[uk-icon] {
  color: #31b56f;
  flex: 0 0 auto;
  margin-top: 0.18em;
}

.bkry-flow .bk-feature-page-workflow-section {
  background: var(--flow-secondary-bg);
}

.bkry-flow .bk-feature-page-steps {
  counter-reset: feature-step;
  margin-top: clamp(20px, 3vw, 32px);
}

.bkry-flow .bk-feature-page-steps li {
  counter-increment: feature-step;
  font-weight: var(--bkry-font-weight-bold);
}

.bkry-flow .bk-feature-page-steps li::before {
  align-items: center;
  background: color-mix(in srgb, var(--flow-primary) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-primary) 30%, transparent);
  border-radius: 999px;
  color: var(--flow-primary);
  content: counter(feature-step);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: var(--bkry-font-weight-extrabold);
  height: 30px;
  justify-content: center;
  margin-top: 0.1em;
  width: 30px;
}

.bkry-flow .bk-feature-page-faq {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 4vw, 42px);
}

.bkry-flow .bk-feature-page-faq article {
  padding: clamp(20px, 3vw, 30px);
}

.bkry-flow .bk-feature-page-faq h3 {
  color: var(--flow-ink);
  font-size: var(--bkry-type-h4-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1.2;
  margin: 0 0 10px;
}

.bkry-flow .bk-feature-page-next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
}

.bkry-flow .bk-feature-category-grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bkry-flow .bk-feature-category {
  align-items: center;
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(18px, 2.4vw, 30px);
  box-shadow: var(--flow-soft-shadow);
  color: var(--flow-ink);
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.bkry-flow .bk-feature-category:hover,
.bkry-flow .bk-feature-category:focus-visible {
  border-color: color-mix(in srgb, var(--flow-primary) 42%, transparent);
  box-shadow: var(--flow-shadow);
  color: var(--flow-ink);
  transform: translateY(-4px);
}

.bkry-flow .bk-feature-category img,
.bkry-flow .bk-feature-detail h2 img {
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border-radius: 16px;
  flex: 0 0 auto;
  height: 56px;
  object-fit: contain;
  padding: 12px;
  width: 56px;
}

.bkry-flow .bk-feature-category span {
  color: var(--flow-muted);
  display: grid;
  gap: 3px;
  line-height: 1.4;
}

.bkry-flow .bk-feature-category strong {
  color: var(--flow-ink);
  display: block;
  font-weight: var(--bkry-font-weight-extrabold);
}

.bkry-flow .bk-feature-more-panel,
.bkry-flow .bk-feature-detail {
  align-items: start;
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(22px, 3vw, 40px);
  box-shadow: var(--flow-soft-shadow);
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  padding: clamp(24px, 4vw, 46px);
}

.bkry-flow .bk-feature-detail + .bk-feature-detail {
  margin-top: 22px;
}

.bkry-flow .bk-feature-detail h2 {
  align-items: center;
  display: flex;
  font-size: var(--bkry-type-h2-size);
  gap: 14px;
  line-height: 1.08;
  margin: 0 0 12px;
}

.bkry-flow .bk-feature-detail-actions {
  display: grid;
  gap: 18px;
}

.bkry-flow .bk-contact-form,
.bkry-flow .bk-help-feature-card,
.bkry-flow .bk-about-mission,
.bkry-flow .bk-sitemap-group {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: clamp(20px, 2.8vw, 36px);
  box-shadow: var(--flow-soft-shadow);
  padding: clamp(22px, 3vw, 36px);
}

.bkry-flow .bk-contact-form,
.bkry-flow .bk-contact-form:hover,
.bkry-flow .bk-contact-form:focus-within,
.bkry-flow .bk-contact-form.bk-flow-reveal,
.bkry-flow .bk-contact-form.bk-flow-reveal.is-visible {
  transform: none;
}

.bkry-flow .bk-contact-form {
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.bkry-flow .bk-contact-form.bk-flow-reveal,
.bkry-flow .bk-contact-form.bk-flow-reveal.is-visible {
  opacity: 1;
  transition-delay: 0ms;
}

.bkry-flow .bk-flow-content > section:has(.bk-contact-form) {
  overflow-x: clip;
}

.bkry-flow .bk-flow-content > section:has(.bk-contact-form) > .uk-container {
  max-width: min(1320px, calc(100vw - clamp(36px, 5vw, 96px)));
}

.bkry-flow section:has(.bk-contact-form) .uk-grid-large[uk-grid] {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  margin-left: 0;
}

.bkry-flow section:has(.bk-contact-form) .uk-grid-large[uk-grid] > * {
  min-width: 0;
  padding-left: 0;
  width: auto;
}

.bkry-flow section:has(.bk-contact-form) aside {
  max-width: 100%;
  min-width: 0;
}

.bkry-flow section:has(.bk-contact-form) aside h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.bkry-flow .bk-contact-form .uk-grid-small {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: 0;
}

.bkry-flow .bk-contact-form .uk-grid-small > * {
  padding-left: 0;
  width: auto;
}

.bkry-flow .bk-contact-form .uk-width-1-1,
.bkry-flow .bk-contact-form .cf-turnstile {
  grid-column: 1 / -1;
}

.bkry-flow .bk-contact-hp {
  left: -10000px;
  position: absolute;
}

.bkry-flow .bk-contact-field-error {
  margin: 6px 0 0;
  color: #b42318;
  font-size: .875rem;
  line-height: 1.4;
}

.bkry-flow .bk-contact-form.bk-contact-submitted .uk-input:invalid,
.bkry-flow .bk-contact-form.bk-contact-submitted .uk-textarea:invalid {
  border-color: #d92d20;
}

.bkry-flow .bk-contact-form [data-contact-submit][aria-busy="true"] {
  cursor: wait;
  opacity: .78;
}

body.bk-contact-modal-open {
  overflow: hidden;
}

body.bk-modal-open {
  overflow: hidden;
}

.bk-demo-login-modal {
  align-items: center;
  background: color-mix(in srgb, var(--flow-ink) 42%, transparent);
  backdrop-filter: blur(12px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  position: fixed;
  z-index: 2147483000;
}

.bk-demo-login-modal[hidden] {
  display: none;
}

.bk-demo-login-dialog {
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--flow-secondary) 14%, transparent), transparent 34%),
    color-mix(in srgb, var(--flow-panel) 98%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: 8px;
  box-shadow: var(--flow-shadow);
  color: var(--flow-ink);
  max-width: min(600px, 100%);
  padding: clamp(28px, 4vw, 42px);
  position: relative;
  text-align: center;
  width: 100%;
}

.bk-demo-login-close {
  align-items: center;
  appearance: none;
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
}

.bk-demo-login-close:hover,
.bk-demo-login-close:focus-visible {
  border-color: color-mix(in srgb, var(--flow-primary) 42%, transparent);
  outline: 3px solid color-mix(in srgb, var(--flow-primary) 20%, transparent);
}

.bk-demo-login-dialog h2 {
  color: var(--flow-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  margin: 0 auto;
  max-width: 14em;
}

.bk-demo-login-details {
  color: color-mix(in srgb, var(--flow-ink) 74%, transparent);
  display: grid;
  font-size: 1rem;
  gap: 4px;
  line-height: 1.5;
  margin: 24px 0;
}

.bk-demo-login-details strong {
  color: var(--flow-ink);
  font-weight: var(--bkry-font-weight-semibold);
  text-decoration: underline;
}

.bk-demo-login-cta {
  justify-content: center;
}

.bk-contact-modal {
  align-items: center;
  background: color-mix(in srgb, var(--flow-ink) 42%, transparent);
  backdrop-filter: blur(12px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  position: fixed;
  z-index: 2147483000;
}

.bk-contact-modal__panel {
  background:
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--flow-secondary) 16%, transparent), transparent 34%),
    color-mix(in srgb, var(--flow-panel) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: clamp(22px, 3vw, 34px);
  box-shadow: var(--flow-shadow);
  color: var(--flow-ink);
  max-width: min(520px, 100%);
  padding: clamp(26px, 4vw, 42px);
  position: relative;
  text-align: center;
  width: 100%;
}

.bk-contact-modal__close {
  align-items: center;
  appearance: none;
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: 999px;
  color: var(--flow-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
}

.bk-contact-modal__close:hover,
.bk-contact-modal__close:focus-visible {
  border-color: color-mix(in srgb, var(--flow-primary) 42%, transparent);
  outline: 3px solid color-mix(in srgb, var(--flow-primary) 20%, transparent);
}

.bk-contact-modal__icon {
  align-items: center;
  background: #31b56f;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 30px;
  font-weight: var(--bkry-font-weight-extrabold);
  height: 62px;
  justify-content: center;
  margin-bottom: 18px;
  width: 62px;
}

.bk-contact-modal.is-error .bk-contact-modal__icon {
  background: #d66b30;
}

.bk-contact-modal__panel h2 {
  color: var(--flow-ink);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  margin: 0;
}

.bk-contact-modal__panel p {
  margin: 16px 0 0;
}

.bk-contact-modal__button {
  justify-content: center;
  margin-top: 24px;
}

.bkry-flow :is(.uk-input, .uk-textarea) {
  background: color-mix(in srgb, var(--flow-panel) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 78%, transparent);
  border-radius: 16px;
  color: var(--flow-ink);
  min-height: 52px;
}

.bkry-flow .uk-textarea {
  min-height: 150px;
}

.bkry-flow .uk-form-label {
  color: var(--flow-ink);
  font-weight: var(--bkry-font-weight-extrabold);
}

.bkry-flow .bk-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.bkry-flow .uk-icon-button {
  align-items: center;
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-primary) 24%, transparent);
  border-radius: 999px;
  color: var(--flow-primary);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.bkry-flow #guides > .uk-container {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(1320px, 100%);
}

.bkry-flow #guides.uk-section {
  padding-top: clamp(34px, 4vw, 56px);
}

.bkry-flow #guides .bk-help-feature-card {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  margin: 0 !important;
  min-height: 100%;
}

.bkry-flow #guides .bk-help-feature-card h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1.18;
  margin: 0 0 8px;
}

.bkry-flow #guides .bk-help-feature-card .bk-kicker {
  font-size: 9px;
}

.bkry-flow #guides .bk-help-feature-card p:not(.bk-kicker) {
  font-size: 0.95rem;
  line-height: 1.55;
}

.bkry-flow #guides .bk-help-feature-card .bk-button-trial {
  align-self: flex-start;
  min-height: 42px;
  padding-inline: 18px;
}

.bkry-flow .bk-company-directory.uk-section {
  padding-top: clamp(34px, 4vw, 56px);
}

.bkry-flow .bk-company-directory > .uk-container {
  max-width: min(1320px, 100%);
}

.bkry-flow .bk-company-directory-panel {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  margin: 0;
}

.bkry-flow .bk-directory-toolbar {
  align-items: start;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  justify-content: space-between;
}

.bkry-flow .bk-directory-toolbar h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1;
  margin: 0 0 8px;
}

.bkry-flow .bk-directory-toolbar p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.bkry-flow .bk-company-directory-actions {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bkry-flow .bk-directory-count {
  background: color-mix(in srgb, var(--flow-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-primary) 24%, transparent);
  border-radius: 999px;
  color: var(--flow-primary);
  font-size: 0.9rem;
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1;
  padding: 10px 14px;
  white-space: nowrap;
}

.bkry-flow #guides .bk-help-faq-head,
.bkry-flow #guides .bk-help-faq-list {
  grid-column: 1 / -1;
}

.bkry-flow #guides .bk-help-faq-head {
  margin-top: clamp(30px, 5vw, 64px);
}

.bkry-flow #guides .bk-help-faq-head h2 {
  font-size: var(--bkry-type-h2-size);
  line-height: 1;
}

.bkry-flow .bk-help-faq-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.bkry-flow .bk-help-faq-list > li {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: 20px;
  box-shadow: var(--flow-soft-shadow);
  padding: 0;
}

.bkry-flow .uk-accordion-title {
  color: var(--flow-ink);
  display: block;
  font-size: var(--bkry-type-h5-size);
  font-weight: var(--bkry-font-weight-extrabold);
  padding: 22px 24px;
  text-decoration: none;
}

.bkry-flow .uk-accordion-content {
  padding: 0 24px 22px;
}

.bkry-flow .bk-about-story {
  display: grid;
  gap: 18px;
}

.bkry-flow .bk-about-story > * {
  margin: 0;
}

.bkry-flow .bk-sitemap-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bkry-flow .bk-sitemap-group-wide {
  grid-column: 1 / -1;
}

.bkry-flow .bk-sitemap-group ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.bkry-flow .bk-sitemap-columns {
  columns: 3 220px;
  display: block;
}

.bkry-flow .bk-sitemap-columns li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.bkry-flow .bk-directory-hero,
.bkry-flow .bk-directory-section {
  padding-inline: clamp(18px, 2.4vw, 48px);
}

.bkry-flow .bk-directory-hero > .uk-container,
.bkry-flow .bk-directory-section > .uk-container {
  max-width: min(1680px, calc(100vw - clamp(36px, 4.8vw, 96px)));
  padding-inline: 0;
}

.bkry-flow .bk-company-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bkry-flow .bk-company-card {
  color: var(--flow-ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  text-decoration: none;
}

.bkry-flow .bk-company-card:hover,
.bkry-flow .bk-company-card:focus-visible {
  border-color: color-mix(in srgb, var(--primary-color) 42%, transparent);
  box-shadow: var(--flow-soft-shadow);
  color: var(--flow-ink);
  outline: none;
  text-decoration: none;
  transform: none;
}

.bkry-flow .bk-company-card:focus-visible {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 20%, transparent), var(--flow-soft-shadow);
}

.bkry-flow .bk-company-card-head {
  display: grid;
  gap: 18px;
}

.bkry-flow .bk-company-logo {
  align-items: center;
  display: flex;
  min-height: 76px;
}

.bkry-flow .bk-company-logo img {
  max-height: 72px;
  max-width: min(100%, 360px);
  object-fit: contain;
  object-position: left center;
}

.bkry-flow .bk-company-logo span {
  align-items: center;
  background: color-mix(in srgb, var(--primary-color) 14%, transparent);
  border-radius: 18px;
  color: var(--primary-color);
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: var(--bkry-font-weight-extrabold);
  height: 64px;
  justify-content: center;
  width: 64px;
}

.bkry-flow .bk-company-card h3 {
  font-size: var(--bkry-type-h3-size);
  line-height: 1.12;
  margin: 0;
}

.bkry-flow .bk-company-tags {
  color: var(--flow-ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: var(--bkry-font-weight-extrabold);
  gap: 6px;
  line-height: 1.35;
}

.bkry-flow .bk-company-card-footer {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
}

.bkry-flow .bk-company-card-footer p {
  align-items: center;
  display: flex;
  font-size: 0.95rem;
  gap: 5px;
  line-height: 1.35;
  margin: 0;
}

.bkry-flow .bk-company-arrow.bkry-btn {
  flex: 0 0 auto;
  height: 42px;
  min-height: 42px;
  padding: 0;
  width: 42px;
}

.bkry-flow section:has(.bk-pricing-toggle) .uk-container,
.bkry-flow .bk-feature-comparison .uk-container {
  max-width: min(1400px, calc(100vw - clamp(36px, 4.8vw, 96px)));
}

.bkry-flow .bk-trial-note {
  align-items: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--flow-primary) 11%, var(--flow-panel)), color-mix(in srgb, var(--flow-secondary) 18%, var(--flow-panel)));
  border: 1px solid color-mix(in srgb, var(--flow-primary) 24%, transparent);
  border-radius: clamp(22px, 3.2vw, 42px);
  box-shadow: var(--flow-soft-shadow);
  display: grid;
  gap: clamp(16px, 3vw, 34px);
  margin-bottom: clamp(34px, 5vw, 64px);
  padding: clamp(24px, 4vw, 46px);
}

.bkry-flow .bk-pricing-toggle {
  background: color-mix(in srgb, var(--flow-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--flow-line) 76%, transparent);
  border-radius: 999px;
  box-shadow: var(--flow-soft-shadow);
  display: inline-flex;
  gap: 6px;
  padding: 6px;
}

.bkry-flow .bk-pricing-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--flow-ink);
  cursor: pointer;
  font: inherit;
  font-weight: var(--bkry-type-button-weight, 700);
  min-height: 42px;
  padding: 0 18px;
}

.bkry-flow .bk-pricing-toggle button[aria-pressed="true"] {
  background: var(--flow-primary);
  color: #fff;
}

.bkry-flow section:has(.bk-pricing-toggle) [class*="uk-child-width"][uk-grid] {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bkry-flow section:has(.bk-pricing-toggle) .uk-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.bkry-flow section:has(.bk-pricing-toggle) .bk-plan-card-featured {
  transform: translateY(-10px);
}

.bkry-flow section:has(.bk-pricing-toggle) .uk-card h2 {
  font-size: var(--bkry-type-h2-size);
  margin: 0;
}

.bkry-flow .bk-price {
  color: var(--flow-ink);
  display: inline-block;
  font-size: var(--bkry-type-h1-size);
  font-weight: var(--bkry-font-weight-extrabold);
  line-height: 1;
}

.bkry-flow .bk-period,
.bkry-flow .bk-vat-note,
.bkry-flow .uk-text-meta {
  color: var(--flow-muted);
  font-weight: var(--bkry-font-weight-extrabold);
}

.bkry-flow section:has(.bk-pricing-toggle) .bkry-btn {
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.bkry-flow .bk-feature-comparison .bk-comparison-table th,
.bkry-flow .bk-feature-comparison .bk-comparison-table td {
  text-align: center;
  vertical-align: middle;
}

.bkry-flow .bk-feature-comparison .bk-comparison-table th:first-child,
.bkry-flow .bk-feature-comparison .bk-comparison-table td:first-child {
  text-align: left;
}

.bkry-flow .bk-comparison-icon {
  display: inline-block;
  height: 30px;
  max-height: 30px;
  max-width: 30px;
  object-fit: contain;
  width: 30px;
}

.bk-help-standalone {
  --bk-help-doc-width: min(1680px, calc(100vw - clamp(28px, 4.8vw, 96px)));
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) {
  padding: clamp(34px, 4vw, 62px) clamp(14px, 2.4vw, 48px) clamp(30px, 4vw, 52px);
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) .uk-container {
  max-width: var(--bk-help-doc-width);
  padding-inline: 0;
  width: 100%;
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) .bk-breadcrumb {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) h1 {
  margin-top: 10px;
  max-width: min(980px, 100%);
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) p:not(.bk-kicker) {
  max-width: min(960px, 100%);
}

.bk-help-standalone .bk-flow-content > .bk-page-title:first-child:not(:has(.bk-page-title-layout)) .bk-help-search {
  margin-top: clamp(22px, 3vw, 36px) !important;
  max-width: 100%;
}

.bk-help-standalone .bk-walkthrough-step {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(42px, 4.8vw, 68px) clamp(14px, 2.4vw, 48px);
}

.bk-help-standalone .bk-walkthrough-step + .bk-walkthrough-step {
  border-top: 1px solid color-mix(in srgb, var(--flow-primary) 28%, transparent);
}

.bk-help-standalone .bk-walkthrough-step-no-media {
  grid-template-columns: 1fr;
}

.bk-help-standalone .bk-walkthrough-step > * {
  min-width: 0;
}

.bk-help-standalone .bk-walkthrough-copy {
  margin-inline: 0;
  max-width: min(680px, 100%);
  width: 100%;
}

.bk-help-standalone .bk-walkthrough-step-no-media .bk-walkthrough-copy {
  max-width: min(960px, 100%);
}

.bk-help-standalone .bk-walkthrough-media {
  margin: 0;
}

.bk-help-standalone .bk-walkthrough-media img {
  border-radius: clamp(22px, 2vw, 34px);
  display: block;
  height: auto;
  width: 100%;
}

.bkry-flow .bk-flow-content > .hc-card.bk-theme-section.bkry-section-color-hero:first-child {
  background:
    radial-gradient(circle at 92% 88%, color-mix(in srgb, var(--flow-secondary) 58%, transparent) 0 13vw, transparent 13.2vw),
    radial-gradient(circle at 10% 82%, color-mix(in srgb, #ffffff 62%, transparent) 0 9vw, transparent 9.2vw),
    linear-gradient(135deg, color-mix(in srgb, var(--flow-secondary) 76%, var(--flow-hero-bg)) 0%, color-mix(in srgb, var(--flow-primary) 46%, var(--flow-hero-bg)) 100%) !important;
  min-height: clamp(780px, 96vh, 980px);
  overflow: visible;
  padding-bottom: clamp(80px, 12vw, 160px);
  padding-top: var(--bkry-first-hero-padding-top);
}

.bkry-flow .bk-flow-content > .hc-card.bk-theme-section.bkry-section-color-hero:first-child:has(.bk-help-search) {
  min-height: 50svh;
  padding-bottom: clamp(16px, 2.5vh, 30px);
  padding-top: var(--bkry-first-hero-padding-top);
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .hc-card__inner {
  min-height: clamp(220px, 26vh, 300px);
  padding: clamp(18px, 2vw, 26px);
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .hc-card__heading {
  font-size: var(--bkry-type-h1-size) !important;
  line-height: 1 !important;
  margin-top: 6px !important;
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .hc-card__content {
  line-height: 1.38 !important;
  margin-top: 8px !important;
  max-width: min(100%, 1100px);
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .bk-breadcrumb {
  margin-bottom: 8px;
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .bk-help-jump-links {
  display: none;
}

.bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .bk-help-search {
  margin-top: 10px !important;
  min-height: 44px;
}

@media (max-width: 1180px) {
  .bkry-flow [class*="uk-child-width-1-3"][uk-grid],
  .bkry-flow [class*="uk-child-width-1-4"][uk-grid],
  .bkry-flow .bk-feature-category-grid,
  .bkry-flow .bk-sitemap-grid,
  .bkry-flow .bk-company-grid,
  .bkry-flow #guides > .uk-container,
  .bkry-flow section:has(.bk-pricing-toggle) [class*="uk-child-width"][uk-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bkry-flow .bk-feature-more-panel,
  .bkry-flow .bk-feature-detail {
    grid-template-columns: 1fr;
  }

  .bkry-flow section:has(.bk-pricing-toggle) .bk-plan-card-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .bk-help-standalone .bk-walkthrough-step {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-flow-content > section.uk-section {
    padding: 68px 18px;
  }

  .bkry-flow .bk-flow-content > section.uk-section > .uk-container,
  .bkry-flow .bk-directory-hero > .uk-container,
  .bkry-flow .bk-directory-section > .uk-container {
    max-width: 100%;
  }

  .bkry-flow [class*="uk-child-width"][uk-grid],
  .bkry-flow .bk-feature-category-grid,
  .bkry-flow .bk-sitemap-grid,
  .bkry-flow .bk-company-grid,
  .bkry-flow #guides > .uk-container,
  .bkry-flow section:has(.bk-pricing-toggle) [class*="uk-child-width"][uk-grid],
  .bkry-flow .bk-contact-form .uk-grid-small {
    grid-template-columns: 1fr;
  }

  .bkry-flow .bk-flow-content > .hc-card.bk-theme-section.bkry-section-color-hero:first-child:has(.bk-help-search) {
    min-height: auto;
    padding-bottom: 28px;
    padding-top: 122px;
  }

  .bk-help-standalone .bk-flow-content > .hc-card.bk-theme-section.bkry-section-color-hero:first-child:has(.bk-help-search) {
    padding-top: 28px;
  }

  .bkry-flow .bk-flow-content > .hc-card:first-child:has(.bk-help-search) .hc-card__inner {
    min-height: 0;
    padding: 22px 18px;
  }

  .bkry-flow .bk-directory-toolbar,
  .bkry-flow .bk-company-directory-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bkry-flow .bk-pricing-toggle {
    display: grid;
    width: 100%;
  }

  .bkry-flow .bk-pricing-toggle button {
    width: 100%;
  }

  .bkry-flow .bk-flow-content > section:has(.bk-contact-form) {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .bkry-flow .bk-flow-content > section:has(.bk-contact-form) > .uk-container {
    max-width: 100%;
  }

  .bkry-flow section:has(.bk-contact-form) .uk-grid-large[uk-grid] {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr);
  }

  .bkry-flow .bk-contact-form {
    padding: 22px 18px;
  }

  .bkry-flow section:has(.bk-contact-form) aside h2 {
    margin-bottom: 20px;
  }

  .bkry-flow section:has(.bk-contact-form) aside .uk-list {
    margin-bottom: 20px;
  }
}
