:root {
  --bdh-bg: #ffffff;
  --bdh-text: #090909;
  --bdh-muted: #6b6f78;
  --bdh-line: #e9e9ec;
  --bdh-blue-1: #163fbf;
  --bdh-blue-2: #1d4ed8;
  --bdh-blue-3: #4f7cff;
  --bdh-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --bdh-display: var(--bd-font-display, "Arial Black", "SF Pro Display", "Helvetica Neue", Arial, sans-serif);
  --bdh-button-bg: #090909;
  --bdh-button-text: #ffffff;
}

html[data-bd-theme="dark"],
html.dark,
html[data-theme="dark"] {
  --bdh-bg: #000000;
  --bdh-text: #ffffff;
  --bdh-muted: #9a9da6;
  --bdh-line: #1d1d20;
  --bdh-button-bg: #ffffff;
  --bdh-button-text: #090909;
}

html { scroll-behavior: smooth; background: var(--bdh-bg); color-scheme: light dark; }
body.bdh, body.bdh * { box-sizing: border-box; }
body.bdh { margin: 0; background: var(--bdh-bg); color: var(--bdh-text); font-family: var(--bdh-font); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.bdh a { color: inherit; text-decoration: none; }
body.bdh h1, body.bdh h2, body.bdh h3 { margin: 0; font-family: var(--bdh-display); line-height: .96; letter-spacing: -.05em; }
body.bdh p { margin: 0; }

.bdh-container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.bdh-skip { position: absolute; left: -10000px; top: 12px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: var(--bdh-text); color: var(--bdh-bg); }
.bdh-skip:focus { left: 12px; }

.bdh-header { position: sticky; top: 0; z-index: 50; border: 0; background: #000000; color: #ffffff; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.bdh-header.is-scrolled { background: #000000; -webkit-backdrop-filter: none; backdrop-filter: none; }
.bdh-header__inner { position: relative; min-height: 72px; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 24px; }
.bdh-brand { width: 40px; min-width: 0; justify-self: start; }
.bdh-brand img, [data-bdh-logo] { width: 100%; height: auto; filter: brightness(0) invert(1); }
html[data-bd-theme="dark"] .bdh-brand img, html[data-bd-theme="dark"] [data-bdh-logo],
html.dark .bdh-brand img, html.dark [data-bdh-logo],
html[data-theme="dark"] .bdh-brand img, html[data-theme="dark"] [data-bdh-logo] { filter: brightness(0) invert(1); }
.bdh-nav { grid-column: 2; display: flex; gap: 22px; align-items: center; justify-self: center; }
.bdh-nav a, .bdh-login { color: #ffffff; font-size: 14px; font-weight: 700; }
.bdh-nav a:hover, .bdh-login:hover { color: #ffffff; opacity: .78; }
.bdh-link { color: var(--bdh-muted); font-size: 14px; font-weight: 700; }
.bdh-link:hover { color: var(--bdh-text); }
.bdh-header__actions { grid-column: 3; min-width: 0; display: flex; align-items: center; justify-self: end; gap: 12px; }
.bdh-theme { width: 38px; height: 38px; padding: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: #000000; color: #ffffff; cursor: pointer; }
.bdh-theme svg { width: 16px; height: 16px; fill: currentColor; }
.bdh-menu { position: relative; display: none; width: 42px; height: 42px; padding: 0; border: 1px solid color-mix(in srgb, var(--bdh-text) 12%, transparent); border-radius: 13px; background: var(--bdh-text); color: var(--bdh-bg); cursor: pointer; place-items: center; box-shadow: 0 8px 22px rgba(0, 0, 0, .10); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.bdh-menu:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0, 0, 0, .14); }
.bdh-menu span { position: absolute; left: 50%; width: 18px; height: 2px; display: block; border-radius: 999px; background: currentColor; transition: transform .2s ease, top .2s ease; transform: translateX(-50%); }
.bdh-menu span:first-child { top: 16px; }
.bdh-menu span:last-child { top: 23px; }
.bdh-menu[aria-expanded="true"] span:first-child { top: 20px; transform: translateX(-50%) rotate(45deg); }
.bdh-menu[aria-expanded="true"] span:last-child { top: 20px; transform: translateX(-50%) rotate(-45deg); }

.bdh-button { min-height: 46px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--bdh-button-text) 12%, transparent); border-radius: 11px; background: var(--bdh-button-bg); color: var(--bdh-button-text); font-size: 13px; font-weight: 800; letter-spacing: .01em; box-shadow: 0 10px 22px rgba(0, 0, 0, .14); transition: transform .18s ease, box-shadow .18s ease; }
.bdh-button:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0, 0, 0, .18); }
.bdh-button:active { transform: translateY(0); }
.bdh-button:focus-visible, .bdh-theme:focus-visible, .bdh-menu:focus-visible, .bdh-nav a:focus-visible, .bdh-link:focus-visible, .bdh-login:focus-visible { outline: 3px solid rgba(79, 124, 255, .32); outline-offset: 3px; }
.bdh-button--compact { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.bdh-button--primary { min-width: 184px; }
.bdh a.bdh-button,
.bdh a.bdh-button:link,
.bdh a.bdh-button:visited,
.bdh a.bdh-button:hover,
.bdh a.bdh-button:active,
.bdh a.bdh-button:focus { color: var(--bdh-button-text); -webkit-text-fill-color: var(--bdh-button-text); }
.bdh a.bdh-header-cta,
.bdh a.bdh-header-cta:link,
.bdh a.bdh-header-cta:visited,
.bdh a.bdh-header-cta:hover,
.bdh a.bdh-header-cta:active,
.bdh a.bdh-header-cta:focus { background: #ffffff; color: #090909; -webkit-text-fill-color: #090909; border-color: #ffffff; box-shadow: none; }

.bdh-eyebrow { color: var(--bdh-muted); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.bdh-hero { padding: 112px 0 118px; }
.bdh-hero__inner { max-width: 780px; text-align: center; }
.bdh-hero h1 { margin-top: 14px; font-size: clamp(54px, 8vw, 86px); }
.bdh-hero__lead { max-width: 570px; margin: 20px auto 0; color: var(--bdh-muted); font-size: 17px; line-height: 1.7; }
.bdh-hero__actions { margin-top: 30px; display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.bdh-hero__proof { margin: 22px auto 0; display: flex; justify-content: center; align-items: center; gap: 10px 20px; flex-wrap: wrap; color: var(--bdh-muted); font-size: 11px; font-weight: 720; }
.bdh-hero__proof span { position: relative; padding-left: 14px; }
.bdh-hero__proof span::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--bdh-blue-2); transform: translateY(-50%); }

.bdh-product, .bdh-client-view { padding: 100px 0; border-top: 1px solid var(--bdh-line); }
.bdh-product__grid, .bdh-client-view__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr); gap: 70px; align-items: center; }
.bdh-product__copy, .bdh-client-view__copy { max-width: 470px; }
.bdh-product__copy h2, .bdh-client-view__copy h2 { margin-top: 12px; font-size: clamp(42px, 5vw, 60px); }
.bdh-product__copy > p, .bdh-client-view__copy > p { margin-top: 16px; color: var(--bdh-muted); font-size: 16px; line-height: 1.7; }
.bdh-client-view__grid { grid-template-columns: minmax(320px, 1fr) minmax(0, .85fr); }

.bdh-showcase { margin: 0; }
.bdh-showcase picture { display: block; width: 100%; }
.bdh-showcase .bdh-themed-shot { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .12)); }
html[data-bd-theme="dark"] .bdh-showcase .bdh-themed-shot,
html.dark .bdh-showcase .bdh-themed-shot,
html[data-theme="dark"] .bdh-showcase .bdh-themed-shot { filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .45)); }
.bdh-showcase--selector { width: min(390px, 100%); justify-self: center; }
.bdh-showcase--duo { width: min(500px, 100%); justify-self: center; }

.bdh-features { padding: 100px 0; border-top: 1px solid var(--bdh-line); }
.bdh-section-head { max-width: 680px; }
.bdh-section-head h2 { margin-top: 12px; font-size: clamp(42px, 5.4vw, 60px); }
.bdh-section-head__lead { max-width: 620px; margin-top: 18px; color: var(--bdh-muted); font-size: 15px; line-height: 1.7; }
.bdh-feature-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--bdh-line); }
.bdh-feature { padding: 28px 28px 28px 0; border-bottom: 1px solid var(--bdh-line); }
.bdh-feature:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--bdh-line); }
.bdh-feature > span { display: block; margin-bottom: 20px; color: var(--bdh-blue-2); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.bdh-feature h3 { font-size: 27px; letter-spacing: -.035em; }
.bdh-feature p { margin-top: 9px; max-width: 470px; color: var(--bdh-muted); font-size: 14px; line-height: 1.6; }
.bdh-feature small { margin-top: 11px; display: block; color: var(--bdh-muted); font-size: 10px; font-weight: 760; line-height: 1.45; }
.bdh-feature-note { margin-top: 18px; color: var(--bdh-muted); font-size: 12px; }

.bdh-pricing {
  --bdh-price-surface: #f7f7f9;
  --bdh-price-card: #ffffff;
  --bdh-price-card-soft: #f3f3f5;
  --bdh-price-text: #0a0a0b;
  --bdh-price-muted: #6d7078;
  --bdh-price-line: rgba(10, 10, 11, .10);
  padding: 112px 0 124px;
  border-top: 1px solid var(--bdh-line);
  background: var(--bdh-price-surface);
}
html[data-bd-theme="dark"] .bdh-pricing,
html.dark .bdh-pricing,
html[data-theme="dark"] .bdh-pricing {
  --bdh-price-surface: #050505;
  --bdh-price-card: #0b0b0c;
  --bdh-price-card-soft: #101011;
  --bdh-price-text: #ffffff;
  --bdh-price-muted: #8c8d92;
  --bdh-price-line: rgba(255, 255, 255, .10);
}
.bdh-pricing__head { max-width: 690px; margin-inline: auto; text-align: center; }
.bdh-pricing__chip { min-height: 28px; padding: 0 11px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(29, 78, 216, .24); border-radius: 999px; background: rgba(29, 78, 216, .08); color: var(--bdh-blue-2); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
html[data-bd-theme="dark"] .bdh-pricing__chip,
html.dark .bdh-pricing__chip,
html[data-theme="dark"] .bdh-pricing__chip { border-color: rgba(79, 124, 255, .30); background: rgba(29, 78, 216, .13); color: #7fa2ff; box-shadow: 0 0 24px rgba(29, 78, 216, .12); }
.bdh-pricing__head h2 { margin-top: 18px; color: var(--bdh-price-text); font-size: clamp(44px, 5.4vw, 64px); }
.bdh-pricing__head > p { max-width: 520px; margin: 15px auto 0; color: var(--bdh-price-muted); font-size: 16px; line-height: 1.55; }
.bdh-plans { margin-top: 54px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.bdh-plan { position: relative; min-height: 520px; padding: 28px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--bdh-price-line); border-radius: 26px; background: linear-gradient(145deg, var(--bdh-price-card) 0%, var(--bdh-price-card-soft) 100%); color: var(--bdh-price-text); box-shadow: 0 20px 60px rgba(0, 0, 0, .06); cursor: pointer; outline: none; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease; }
html[data-bd-theme="dark"] .bdh-plan,
html.dark .bdh-plan,
html[data-theme="dark"] .bdh-plan { box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 24px 70px rgba(0,0,0,.28); }
.bdh-plan:is(.is-active,:hover,:focus-within) { z-index: 1; border-color: rgba(95, 95, 255, .72); color: #ffffff; background: radial-gradient(circle at 50% 115%, rgba(106, 91, 255, .98) 0%, rgba(68, 55, 220, .92) 30%, rgba(34, 26, 130, .98) 63%, #171235 100%); box-shadow: 0 22px 70px rgba(67, 54, 224, .30), 0 0 54px rgba(64, 54, 231, .16); transform: translateY(-8px); }
.bdh-plan:is(.is-active,:hover,:focus-within)::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28; background-image: radial-gradient(circle at 20% 18%, rgba(255,255,255,.45) 0 1px, transparent 1.5px), radial-gradient(circle at 74% 34%, rgba(255,255,255,.24) 0 1px, transparent 1.5px); background-size: 18px 18px, 24px 24px; mask-image: linear-gradient(to bottom, #000, transparent 72%); }
.bdh-plan:is(.is-active,:hover,:focus-within) > * { position: relative; z-index: 1; }
.bdh-plan mark { position: static; z-index: 2; width: fit-content; min-height: 24px; margin-bottom: 14px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: #1d4ed8; color: #ffffff; font-size: 9px; font-weight: 900; letter-spacing: .09em; box-shadow: 0 8px 20px rgba(29, 78, 216, .20); }
.bdh-plan:is(.is-active,:hover,:focus-within) mark { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.12); box-shadow: none; backdrop-filter: blur(8px); }
.bdh-plan__top { min-height: 188px; }
.bdh-plan--popular .bdh-plan__top { min-height: 150px; }
.bdh-plan__name { display: block; color: var(--bdh-price-text); font-size: 18px; font-weight: 760; letter-spacing: -.02em; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__name { color: #ffffff; }
.bdh-plan__price { min-height: 58px; margin-top: 23px; display: flex; align-items: end; gap: 7px; }
.bdh-plan__price strong { font-family: var(--bdh-display); font-size: clamp(34px, 3.4vw, 46px); line-height: .95; letter-spacing: -.045em; }
.bdh-plan__price span { padding-bottom: 5px; color: var(--bdh-price-muted); font-size: 11px; font-weight: 700; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__price span { color: rgba(255,255,255,.72); }
.bdh-plan__top > p { margin-top: 14px; min-height: 42px; color: var(--bdh-price-muted); font-size: 12px; line-height: 1.55; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__top > p { color: rgba(255,255,255,.78); }
.bdh-plan__button { width: 100%; min-height: 44px; margin-top: 10px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--bdh-button-text) 12%, transparent); border-radius: 10px; background: var(--bdh-button-bg); color: var(--bdh-button-text); -webkit-text-fill-color: var(--bdh-button-text); font-size: 12px; font-weight: 850; box-shadow: 0 10px 24px rgba(0, 0, 0, .14); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.bdh-plan__button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0, 0, 0, .18); }
.bdh-plan:is(.is-selected,.is-active,:hover,:focus-within) .bdh-plan__button { border: 1px solid rgba(10,10,11,.10); background: #ffffff; color: #090909; -webkit-text-fill-color: #090909; box-shadow: 0 10px 24px rgba(7, 5, 38, .16); }
html[data-bd-theme="dark"] .bdh-plan:is(.is-selected,.is-active,:hover,:focus-within) .bdh-plan__button,
html.dark .bdh-plan:is(.is-selected,.is-active,:hover,:focus-within) .bdh-plan__button,
html[data-theme="dark"] .bdh-plan:is(.is-selected,.is-active,:hover,:focus-within) .bdh-plan__button { border-color: #ffffff; background: #ffffff; color: #090909; -webkit-text-fill-color: #090909; box-shadow: 0 10px 24px rgba(0, 0, 0, .24); }
.bdh-plan__billing { margin-top: 9px; display: block; color: var(--bdh-price-muted); font-size: 10px; text-align: center; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__billing { color: rgba(255,255,255,.66); }
.bdh-plan__included { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--bdh-price-line); }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__included { border-top-color: rgba(255,255,255,.18); }
.bdh-plan__included > span { display: block; color: var(--bdh-price-text); font-size: 11px; font-weight: 850; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__included > span { color: #ffffff; }
.bdh-plan__included ul { margin: 17px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.bdh-plan__included li { position: relative; padding-left: 19px; color: var(--bdh-price-muted); font-size: 11px; line-height: 1.45; }
.bdh-plan__included li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--bdh-price-text); font-weight: 900; }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__included li { color: rgba(255,255,255,.82); }
.bdh-plan:is(.is-active,:hover,:focus-within) .bdh-plan__included li::before { color: #ffffff; }


.bdh-compare { margin-top: 34px; border: 1px solid var(--bdh-price-line); border-radius: 24px; background: var(--bdh-price-card); color: var(--bdh-price-text); overflow: hidden; }
.bdh-compare summary { min-height: 78px; padding: 18px 22px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 20px; align-items: center; cursor: pointer; list-style: none; }
.bdh-compare summary::-webkit-details-marker { display: none; }
.bdh-compare summary > span { font-size: 15px; font-weight: 850; letter-spacing: -.015em; }
.bdh-compare summary > small { margin-top: 4px; color: var(--bdh-price-muted); font-size: 11px; line-height: 1.45; }
.bdh-compare summary > i { grid-column: 2; grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--bdh-price-line); border-radius: 50%; font-style: normal; font-size: 20px; line-height: 1; transition: transform .2s ease; }
.bdh-compare[open] summary > i { transform: rotate(45deg); }
.bdh-compare__viewport { overflow-x: auto; border-top: 1px solid var(--bdh-price-line); }
.bdh-compare__table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 12px; }
.bdh-compare__table th, .bdh-compare__table td { padding: 15px 16px; border-bottom: 1px solid var(--bdh-price-line); text-align: center; vertical-align: middle; }
.bdh-compare__table thead th { position: sticky; top: 0; background: var(--bdh-price-card); color: var(--bdh-price-text); font-size: 11px; font-weight: 850; }
.bdh-compare__table th:first-child { width: 30%; text-align: left; }
.bdh-compare__table tbody th { color: var(--bdh-price-text); font-weight: 760; }
.bdh-compare__table tbody td { color: var(--bdh-price-muted); font-weight: 720; }
.bdh-compare__table tbody td:nth-child(4), .bdh-compare__table thead th:nth-child(4) { background: color-mix(in srgb, var(--bdh-blue-2) 6%, var(--bdh-price-card)); color: var(--bdh-price-text); }
.bdh-compare__group th { padding-top: 22px; padding-bottom: 10px; background: var(--bdh-price-card-soft); color: var(--bdh-price-muted); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.bdh-compare__note { padding: 14px 20px 18px; color: var(--bdh-price-muted); font-size: 10px; line-height: 1.5; }

.bdh-final { padding: 118px 0; border-top: 1px solid var(--bdh-line); text-align: center; }
.bdh-final__inner { display: grid; justify-items: center; }
.bdh-final img { width: 42px; height: 42px; object-fit: contain; }
.bdh-final h2 { margin-top: 22px; font-size: clamp(46px, 6vw, 68px); }
.bdh-final__lead { max-width: 520px; margin: 18px auto 0; color: var(--bdh-muted); font-size: 14px; line-height: 1.6; }
.bdh-final .bdh-button { margin-top: 28px; }

.bdh-footer { padding: 26px 0 32px; border-top: 1px solid var(--bdh-line); }
.bdh-footer__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.bdh-footer nav { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.bdh-footer nav a, .bdh-footer span { color: var(--bdh-muted); font-size: 12px; font-weight: 700; }


@media (max-width: 980px) {
  .bdh-product__grid, .bdh-client-view__grid { grid-template-columns: 1fr; gap: 38px; }
  .bdh-client-view__copy { order: -1; }
  .bdh-product__copy, .bdh-client-view__copy { max-width: 620px; }
  .bdh-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bdh-plan:is(.is-active,:hover,:focus-within) { transform: none; }
}


@media (max-width: 760px) {
  html, body.bdh { max-width: 100%; overflow-x: clip; }
  body.bdh { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

  .bdh-container { width: min(100% - 32px, 620px); }
  .bdh-header { padding-top: env(safe-area-inset-top); }
  .bdh-header__inner { min-height: 64px; display: flex; gap: 8px; }
  .bdh-brand { width: 32px; flex: 0 0 32px; }
  .bdh-nav { display: none; }
  .bdh-header__actions { margin-left: auto; display: flex; align-items: center; gap: 7px; }
  .bdh-header__actions .bdh-theme { display: none; }
  .bdh-login { min-height: 40px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; color: #ffffff; font-size: 12px; }
  .bdh-button--compact { min-height: 40px; padding-inline: 12px; display: inline-flex; white-space: nowrap; font-size: 12px; }

  main { display: flex; flex-direction: column; }
  .bdh-hero { order: 1; }
  .bdh-product { order: 2; }
  .bdh-features { order: 3; }
  .bdh-client-view { order: 4; }
  .bdh-pricing { order: 5; }
  .bdh-final { order: 6; }

  .bdh-hero { padding: 58px 0 64px; }
  .bdh-hero__inner { max-width: 540px; text-align: left; }
  .bdh-eyebrow { font-size: 10px; letter-spacing: .16em; }
  .bdh-hero h1 { margin-top: 12px; font-size: clamp(43px, 12.4vw, 58px); line-height: .94; letter-spacing: -.052em; }
  .bdh-hero__lead { max-width: 440px; margin: 17px 0 0; font-size: 15px; line-height: 1.62; }
  .bdh-hero__actions { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; justify-items: stretch; }
  .bdh-hero__actions .bdh-button { width: 100%; min-height: 50px; }
  .bdh-hero__actions .bdh-link { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .bdh-hero__proof { margin-top: 17px; justify-content: flex-start; gap: 8px 16px; font-size: 10px; }

  .bdh-product, .bdh-client-view, .bdh-features, .bdh-pricing { padding: 68px 0; }
  .bdh-product__grid, .bdh-client-view__grid { grid-template-columns: 1fr; gap: 30px; }
  .bdh-product__copy, .bdh-client-view__copy { max-width: 520px; }
  .bdh-product__copy h2, .bdh-client-view__copy h2 { margin-top: 10px; font-size: clamp(36px, 10.8vw, 46px); line-height: .98; }
  .bdh-product__copy > p, .bdh-client-view__copy > p { margin-top: 13px; max-width: 440px; font-size: 14px; line-height: 1.62; }
  .bdh-client-view__copy { order: -1; }
  .bdh-showcase { width: 100%; display: grid; place-items: center; overflow: visible; }
  .bdh-showcase .bdh-themed-shot { max-width: 100%; filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .10)); }
  .bdh-showcase--selector { width: 100%; }
  .bdh-showcase--selector .bdh-themed-shot { width: min(300px, 80vw); }
  .bdh-showcase--duo { width: 100%; }
  .bdh-showcase--duo .bdh-themed-shot { width: min(340px, 88vw); }

  .bdh-features { padding-top: 72px; }
  .bdh-section-head { max-width: 520px; }
  .bdh-section-head h2 { margin-top: 10px; font-size: clamp(36px, 10.8vw, 46px); }
  .bdh-section-head__lead { margin-top: 13px; font-size: 13px; line-height: 1.6; }
  .bdh-feature-grid { margin-top: 30px; grid-template-columns: 1fr; }
  .bdh-feature, .bdh-feature:nth-child(even) { min-height: 0; padding: 20px 0; border-left: 0; }
  .bdh-feature > span { margin-bottom: 10px; font-size: 10px; }
  .bdh-feature h3 { font-size: 25px; line-height: 1; }
  .bdh-feature p { margin-top: 7px; font-size: 13px; line-height: 1.5; }
  .bdh-feature small { margin-top: 8px; font-size: 9px; }
  .bdh-feature-note { margin-top: 16px; line-height: 1.5; }

  .bdh-pricing { overflow: hidden; padding: 74px 0 82px; }
  .bdh-pricing .bdh-container { width: 100%; max-width: none; margin-inline: 0; }
  .bdh-pricing__head { width: 100%; max-width: 500px; padding-inline: 16px; text-align: left; margin-inline: 0; }
  .bdh-pricing__chip { min-height: 26px; }
  .bdh-pricing__head h2 { margin-top: 14px; font-size: clamp(36px, 10.8vw, 46px); }
  .bdh-pricing__head > p { margin: 12px 0 0; max-width: 430px; font-size: 14px; }
  .bdh-plans {
    margin-top: 34px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(282px, 84vw);
    align-items: stretch;
    gap: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    width: 100%;
    scroll-padding-inline: 16px;
    padding: 8px 16px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .bdh-plans::-webkit-scrollbar { display: none; }
  .bdh-plan { min-height: 505px; padding: 24px; border-radius: 24px; scroll-snap-align: start; }
  .bdh-plan:is(.is-active,:hover,:focus-within) { transform: none; }
  .bdh-plan__top { min-height: 178px; }
  .bdh-plan__price strong { font-size: 39px; }
  .bdh-plan__button { min-height: 46px; }
  .bdh-compare { margin: 24px 16px 0; border-radius: 20px; }
  .bdh-compare summary { min-height: 72px; padding: 15px 16px; }
  .bdh-compare summary > span { font-size: 14px; }
  .bdh-compare summary > small { font-size: 10px; }
  .bdh-compare__table { min-width: 700px; }
  .bdh-compare__table th, .bdh-compare__table td { padding: 13px 12px; }

  .bdh-final { padding: 78px 0 84px; }
  .bdh-final img { width: 36px; height: 36px; }
  .bdh-final h2 { margin-top: 18px; font-size: clamp(39px, 11vw, 50px); }
  .bdh-final .bdh-button { width: min(100%, 360px); min-height: 50px; margin-top: 24px; }

  .bdh-footer { padding: 24px 0 max(28px, env(safe-area-inset-bottom)); }
  .bdh-footer__inner { grid-template-columns: 1fr; gap: 18px; justify-items: center; text-align: center; }
  .bdh-footer nav { max-width: 330px; display: grid; grid-template-columns: repeat(2, auto); gap: 12px 22px; }
  .bdh-footer nav a { min-height: 32px; display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 520px) {
  .bdh-container { width: min(100% - 32px, 430px); }
  .bdh-pricing .bdh-container { width: 100%; max-width: none; }
  .bdh-hero { padding-top: 48px; }
  .bdh-hero h1 { font-size: clamp(42px, 12.5vw, 52px); }
  .bdh-showcase--selector .bdh-themed-shot { width: min(288px, 80vw); }
  .bdh-showcase--duo .bdh-themed-shot { width: min(326px, 90vw); }
  .bdh-plans { grid-auto-columns: minmax(278px, 86vw); }
  .bdh-plan { min-height: 495px; border-radius: 22px; }
}

@media (max-width: 380px) {
  .bdh-container { width: calc(100% - 28px); }
  .bdh-pricing .bdh-container { width: 100%; max-width: none; }
  .bdh-header__inner { min-height: 58px; }
  .bdh-brand { width: 32px; }
  .bdh-theme { width: 42px; height: 42px; flex-basis: 42px; }
  .bdh-nav { top: calc(58px + env(safe-area-inset-top)); left: 14px; right: 14px; }
  .bdh-hero { padding: 44px 0 56px; }
  .bdh-hero h1 { font-size: clamp(39px, 12.7vw, 47px); }
  .bdh-hero__lead { font-size: 14px; }
  .bdh-product, .bdh-client-view, .bdh-features, .bdh-pricing { padding: 58px 0; }
  .bdh-product__copy h2, .bdh-client-view__copy h2, .bdh-section-head h2, .bdh-pricing__head h2 { font-size: 35px; }
  .bdh-showcase--selector .bdh-themed-shot { width: min(270px, 78vw); }
  .bdh-showcase--duo .bdh-themed-shot { width: min(300px, 88vw); }
  .bdh-plans { grid-auto-columns: minmax(258px, 88vw); }
  .bdh-final { padding: 68px 0 74px; }
  .bdh-final h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bdh-button { transition: none; }
}

.bdh-plan:focus-visible { outline: 3px solid rgba(79, 124, 255, .38); outline-offset: 4px; }
.bdh-themed-shot[data-bd-auto-contrast="off"] { filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .14)); }
html[data-bd-theme="dark"] .bdh-themed-shot[data-bd-auto-contrast="off"], html.dark .bdh-themed-shot[data-bd-auto-contrast="off"], html[data-theme="dark"] .bdh-themed-shot[data-bd-auto-contrast="off"] { filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .44)); }
