:root {
  
  --bx-red:        #e30613;
  --bx-red-dark:   #b90410;
  --bx-ink:        #17110f;
  --bx-cream:      #f7f5f2;
  --bx-white:      #ffffff;
  --bx-text:       #554c47;
  --bx-muted:      #7a736d;
  --bx-muted-2:    #6b625c;
  --bx-faint:      #a8a09a;
  --bx-line:       #ece6df;
  --bx-line-2:     #efeae4;
  --bx-line-3:     #f2ede7;
  --bx-field:      #e8e2db;
  --bx-field-bg:   #fbfaf8;
  --bx-soft:       #f9f7f4;
  --bx-blue:       #1e7be0;
  --bx-green:      #1fa463;

  --bx-container:  74.25rem;  
  --bx-nav:        79.5rem;   
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bx-cream);
  color: var(--bx-ink);
  font-family: Ruda, 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--bx-red); text-decoration: none; }
a:hover { color: var(--bx-red-dark); }

img, video, svg { max-width: 100%; height: auto; display: block; }

input, textarea, button, select { font-family: inherit; }

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--bx-ink) !important;
  box-shadow: 0 0 0 4px rgba(23, 17, 15, 0.07) !important;
}

::placeholder { color: var(--bx-faint); }

:focus-visible { outline: 3px solid rgba(227, 6, 19, 0.45); outline-offset: 2px; }

.bx-page {
  background: var(--bx-cream);
  min-height: 100svh;
  overflow-x: clip;
}

.bx-container { max-width: var(--bx-container); margin: 0 auto; }

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

.bx-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@keyframes bxMarquee  { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes bxFloat    { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-11px) rotate(-5deg); } }
@keyframes bxPulse    { 0%,100% { opacity: .45; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes bxUpArrow  { 0%,100% { transform: translateY(0); opacity: 1; } 35% { transform: translateY(-6px); opacity: 0; } 36% { transform: translateY(4px); opacity: 0; } 70% { transform: translateY(0); opacity: 1; } }
@keyframes bxGlow     { 0%,100% { box-shadow: 0 26px 44px -22px rgba(227,6,19,0.8); } 50% { box-shadow: 0 30px 56px -20px rgba(227,6,19,0.95); } }
@keyframes bxCaret    { 0%,45% { opacity: 1; } 55%,100% { opacity: 0; } }
@keyframes bxDraw     { 0%,100% { stroke-dashoffset: 0; } 12% { stroke-dashoffset: 1; } 55% { stroke-dashoffset: 0; } }
@keyframes bxIconFloat{ 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes bxIconScan { 0%,100% { transform: translate(0,0); } 35% { transform: translate(3px,-3px); } 70% { transform: translate(-3px,3px); } }
@keyframes bxRise     { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.bx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bx-white);
}

.bx-nav {
  max-width: var(--bx-nav);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.5rem;
}

.bx-nav__logo {
  height: 1.875rem;
  width: auto;
  display: block;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}

.bx-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.625rem;
  flex: 1 1 auto;
}

.bx-nav__link {
  color: var(--bx-text);
  font-size: 0.875rem;
  font-weight: 600;
}
.bx-nav__link:hover { color: var(--bx-ink); }

.bx-lang {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f2efeb;
  border-radius: 999px;
  padding: 3px;
  flex: 0 0 auto;
}

.bx-lang__btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .06em;
  background: transparent;
  color: var(--bx-muted);
  transition: background .15s ease, color .15s ease;
}
.bx-lang__btn.is-active { background: var(--bx-white); color: var(--bx-ink); }

.bx-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bx-ink);
  color: var(--bx-white);
  padding: 0.75rem 1.375rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
  transition: background .15s ease;
}
.bx-nav__cta:hover { background: var(--bx-red); color: var(--bx-white); }

.bx-hero {
  position: relative;
  max-width: var(--bx-container);
  margin: 0 auto;
  padding: 3.25rem 1.25rem 0;
}

.bx-hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}

.bx-hero__media { flex: 1 1 20.625rem; max-width: 27.5rem; min-width: 16.25rem; }

.bx-hero__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2.75rem;
  overflow: hidden;
  background: #ece6df;
  box-shadow: 0 44px 80px -44px rgba(23, 17, 15, 0.55);
}

.bx-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

.bx-hero__chip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 0.75rem 0.9375rem;
}

.bx-hero__avatar {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--bx-blue);
  color: var(--bx-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  flex: 0 0 auto;
}

.bx-hero__chipText {
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--bx-ink);
}

.bx-hero__body { flex: 1 1 23.75rem; min-width: 17.5rem; }

.bx-hero__title {
  font-size: clamp(2.375rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--bx-ink);
  text-wrap: balance;
}
.bx-hero__title em { font-style: normal; color: var(--bx-red); }

.bx-hero__sub {
  margin: 1.375rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--bx-muted-2);
  max-width: 30rem;
  text-wrap: pretty;
}

.bx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6875rem;
  margin-top: 1.875rem;
}

.bx-hero__kpis {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bx-kpi {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bx-muted-2);
}

.bx-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.bx-btn--primary {
  background: var(--bx-red);
  color: var(--bx-white);
  padding: 1.0625rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 20px 40px -20px rgba(227, 6, 19, 0.9);
}
.bx-btn--primary:hover { background: var(--bx-ink); color: var(--bx-white); }

.bx-btn--ghost {
  background: var(--bx-white);
  border: 1px solid var(--bx-line);
  color: var(--bx-ink);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  gap: 0.5625rem;
}
.bx-btn--ghost:hover { border-color: var(--bx-ink); color: var(--bx-ink); }

.bx-btn--dark {
  background: var(--bx-ink);
  color: var(--bx-white);
  padding: 0.8125rem 1.5rem;
  font-size: 0.875rem;
  gap: 0.5625rem;
}

.bx-btn--next {
  background: var(--bx-red);
  color: var(--bx-white);
  padding: 1.0625rem 1.875rem;
  font-size: 1rem;
  box-shadow: 0 20px 38px -18px rgba(227, 6, 19, 0.8);
}
.bx-btn--next:hover { background: var(--bx-ink); }

.bx-btn--submit { padding: 1.0625rem 2rem; }

.bx-btn--back {
  border: 1.5px solid var(--bx-field);
  background: var(--bx-white);
  border-radius: 999px;
  padding: 1rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bx-text);
}
.bx-btn--back:hover { border-color: var(--bx-ink); color: var(--bx-ink); }

.bx-btn[disabled] { opacity: .6; cursor: progress; }

.bx-logos { padding: 2.875rem 1.25rem 0; }

.bx-logos__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bx-faint);
  margin-bottom: 1.375rem;
}

.bx-logos__mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.bx-logos__track {
  display: flex;
  width: max-content;
  gap: 0.96rem;
  animation: bxMarquee 42s linear infinite;
}

.bx-logos__item {
  flex: 0 0 auto;
  width: 11.34rem;
  height: 5.44rem;
  border: 1px solid var(--bx-line);
  border-radius: 1.24rem;
  background: var(--bx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.83rem;
}

.bx-logos__item img {
  width: 9.63rem;
  height: 3.3rem;
  object-fit: contain;
  display: block;
}

.bx-form { padding: 3.5rem 1.25rem 0; }

.bx-form__wrap { max-width: var(--bx-container); margin: 0 auto; position: relative; }

.bx-card {
  position: relative;
  background: var(--bx-white);
  border: 1px solid var(--bx-line-2);
  border-radius: 1.875rem;
  box-shadow: 0 60px 110px -60px rgba(23, 17, 15, 0.5);
}

.bx-tilt {
  position: absolute;
  right: 1.125rem;
  top: -2rem;
  z-index: 4;
  animation: bxFloat 7s ease-in-out infinite;
}

.bx-tilt__inner {
  background: var(--bx-red);
  color: var(--bx-white);
  border-radius: clamp(1.375rem, 2vw, 1.5625rem);
  padding: clamp(1rem, 1.7vw, 1.125rem) clamp(1.375rem, 2.3vw, 1.5625rem);
  box-shadow: 0 26px 44px -22px rgba(227, 6, 19, 0.8);
  text-align: center;
  animation: bxGlow 3.4s ease-in-out infinite;
}

.bx-tilt__big {
  font-size: clamp(1.75rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bx-tilt__label {
  font-size: clamp(0.625rem, 0.9vw, 0.71875rem);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .92;
  margin-top: 3px;
}

.bx-steps {
  display: flex;
  gap: 0.5rem;
  padding: 1.25rem clamp(1.125rem, 3vw, 2rem);
  border-bottom: 1px solid var(--bx-line-3);
  flex-wrap: wrap;
}

.bx-step {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.5625rem;
  background: var(--bx-white);
  border: 1.5px solid var(--bx-field);
  color: var(--bx-faint);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.bx-step__dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: #f5f1ec;
  color: var(--bx-faint);
}

.bx-step__label { font-size: 0.8125rem; font-weight: 700; }

.bx-step.is-active { background: var(--bx-ink); border-color: var(--bx-ink); color: var(--bx-white); }
.bx-step.is-active .bx-step__dot { background: var(--bx-white); color: var(--bx-ink); }

.bx-step.is-past { background: #fff1f2; border-color: #fbd5d8; color: var(--bx-red); }
.bx-step.is-past .bx-step__dot { background: var(--bx-red); color: var(--bx-white); }

.bx-card__body { padding: clamp(1.625rem, 3.4vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem); }

.bx-pane { display: none; }
.bx-pane.is-visible { display: block; }

.bx-pane__title {
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--bx-ink);
}

.bx-pane__sub {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--bx-muted);
  line-height: 1.55;
  max-width: 32.5rem;
}

.bx-drop {
  cursor: pointer;
  border: 2px dashed #ddd5cc;
  background: #faf8f5;
  border-radius: 1.625rem;
  padding: clamp(2.125rem, 5vw, 3.375rem) 1.5rem;
  text-align: center;
  transition: all .2s ease;
  width: 100%;
  display: block;
  font: inherit;
  color: inherit;
}
.bx-drop.is-drag { border-color: var(--bx-red); background: #fff4f4; }

.bx-drop__icon {
  width: 4.125rem;
  height: 4.125rem;
  margin: 0 auto 1.125rem;
  border-radius: 1.375rem;
  background: var(--bx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -16px rgba(23, 17, 15, 0.55);
}

.bx-drop__title {
  display: block;
  font-size: clamp(1.1875rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bx-ink);
  line-height: 1.2;
}

.bx-drop__sub { display: block; font-size: 0.875rem; color: var(--bx-muted); margin-top: 0.4375rem; }

.bx-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  margin-top: 1.25rem;
  background: var(--bx-ink);
  color: var(--bx-white);
  border-radius: 999px;
  padding: 0.8125rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.bx-drop__hint { display: block; font-size: 0.75rem; color: var(--bx-faint); margin-top: 1rem; }

.bx-files {
  display: none;
  margin-top: 1rem;
  flex-direction: column;
  gap: 0.625rem;
}
.bx-files.is-visible { display: flex; }

.bx-file {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--bx-soft);
  border-radius: 1.125rem;
  padding: 0.875rem 1rem;
  animation: bxRise .28s ease both;
}

.bx-file__icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.8125rem;
  background: var(--bx-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px -10px rgba(23, 17, 15, 0.5);
}

.bx-file__main { flex: 1 1 auto; min-width: 0; }

.bx-file__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bx-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bx-file__meta {
  display: block;
  font-size: 0.75rem;
  color: var(--bx-muted);
  margin-top: 3px;
}

.bx-file__bar {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: var(--bx-field);
  margin-top: 0.5625rem;
  overflow: hidden;
}

.bx-file__fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--bx-red);
  width: 45%;
  transition: width .5s ease;
}
.bx-file.is-ok .bx-file__fill { background: var(--bx-green); width: 100%; }

.bx-file__remove {
  flex: 0 0 auto;
  border: none;
  background: var(--bx-white);
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.bx-file__remove:hover { background: var(--bx-red); }
.bx-file__remove:hover svg { stroke: #ffffff; }

.bx-error {
  display: none;
  margin-top: 1.125rem;
  background: #fff1f2;
  color: var(--bx-red-dark);
  border-radius: 1rem;
  padding: 0.875rem 1.0625rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.bx-error.is-visible { display: block; }

.bx-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.625rem;
  flex-wrap: wrap;
}

.bx-actions__note {
  font-size: 0.8125rem;
  color: var(--bx-faint);
  max-width: 18.75rem;
  line-height: 1.4;
}

.bx-entity {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.bx-entity__opt {
  cursor: pointer;
  text-align: left;
  border: 1.5px solid var(--bx-field);
  background: var(--bx-white);
  border-radius: 1.375rem;
  padding: 1.125rem 1.25rem;
  display: flex;
  gap: 0.8125rem;
  align-items: flex-start;
  transition: background .18s ease, border-color .18s ease;
}

.bx-entity__dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 6px solid var(--bx-field);
  flex: 0 0 auto;
  margin-top: 2px;
  background: var(--bx-white);
  transition: border-color .18s ease;
}

.bx-entity__title { display: block; font-size: 0.9375rem; font-weight: 800; color: var(--bx-ink); }

.bx-entity__sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--bx-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.bx-entity__opt.is-active { border-color: var(--bx-ink); background: var(--bx-ink); }
.bx-entity__opt.is-active .bx-entity__dot { border-color: var(--bx-red); }
.bx-entity__opt.is-active .bx-entity__title { color: var(--bx-white); }
.bx-entity__opt.is-active .bx-entity__sub { color: rgba(255, 255, 255, 0.6); }

.bx-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.375rem, 1fr));
  gap: 0.875rem;
}

.bx-field { display: block; }
.bx-field.is-hidden { display: none; }

.bx-field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bx-muted);
  margin-bottom: 0.5rem;
}

.bx-input {
  width: 100%;
  border: 1.5px solid var(--bx-field);
  border-radius: 1rem;
  padding: 0.9375rem 1.0625rem;
  font-size: 0.9375rem;
  color: var(--bx-ink);
  background: var(--bx-field-bg);
  transition: all .15s ease;
}

textarea.bx-input { resize: vertical; }

.bx-field--note { margin-top: 0.875rem; }

.bx-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.6875rem;
  margin-top: 1.125rem;
  cursor: pointer;
}

.bx-gdpr input {
  width: 1.1875rem;
  height: 1.1875rem;
  margin: 2px 0 0;
  accent-color: var(--bx-red);
  flex: 0 0 auto;
}

.bx-gdpr span { font-size: 0.8125rem; color: var(--bx-muted); line-height: 1.5; }

.bx-actions--pair { gap: 0.75rem; }

.bx-summary {
  background: var(--bx-soft);
  border-radius: 1.5rem;
  padding: 0.5rem;
}

.bx-summary__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.125rem;
  padding: 0.875rem 1rem;
}

.bx-summary__k {
  flex: 0 0 11.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bx-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-top: 2px;
}

.bx-summary__v {
  flex: 1 1 13.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bx-ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.bx-promise {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.25rem;
  background: var(--bx-ink);
  border-radius: 1.375rem;
  padding: 1.125rem 1.25rem;
}

.bx-promise img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 13%;
  flex: 0 0 auto;
}

.bx-promise span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.78); line-height: 1.5; }

.bx-done { display: none; text-align: center; padding: 1.375rem 0.5rem 0.625rem; }
.bx-done.is-visible { display: block; animation: bxRise .4s ease both; }

.bx-done__icon {
  width: 4.875rem;
  height: 4.875rem;
  margin: 0 auto 1.375rem;
  border-radius: 1.625rem;
  background: var(--bx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 50px -22px rgba(227, 6, 19, 0.85);
}

.bx-done__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  color: var(--bx-ink);
}

.bx-done__sub {
  margin: 0 auto;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--bx-muted-2);
}

.bx-done__ref {
  margin: 1.125rem auto 0;
  font-size: 0.8125rem;
  color: var(--bx-faint);
  font-weight: 700;
  letter-spacing: .04em;
}

.bx-done__again {
  margin-top: 1.625rem;
  border: 1.5px solid var(--bx-field);
  background: var(--bx-white);
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9375rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bx-text);
}
.bx-done__again:hover { border-color: var(--bx-ink); color: var(--bx-ink); }

.bx-how { padding: 5.5rem 1.25rem 0; }

.bx-how__head { text-align: center; max-width: 35rem; margin: 0 auto 2.25rem; }

.bx-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bx-red);
}

.bx-h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0.875rem 0 0;
  color: var(--bx-ink);
  text-wrap: balance;
}

.bx-how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 0.875rem;
}

.bx-how__card {
  position: relative;
  overflow: hidden;
  background: var(--bx-white);
  border: 1px solid var(--bx-line-2);
  border-radius: 1.625rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 16.25rem;
}

.bx-how__num {
  position: absolute;
  top: 0.375rem;
  right: 1.125rem;
  font-size: 6.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 17, 15, 0.16);
  pointer-events: none;
}

.bx-how__icon { position: relative; display: flex; align-items: center; }

.bx-how__title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: auto 0 0.5625rem;
  color: var(--bx-ink);
}

.bx-how__text {
  position: relative;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--bx-muted);
  text-wrap: pretty;
}

.bx-how__card--red {
  background: var(--bx-red);
  border: none;
  box-shadow: 0 30px 60px -34px rgba(227, 6, 19, 0.8);
}
.bx-how__card--red .bx-how__num   { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45); }
.bx-how__card--red .bx-how__title { color: var(--bx-white); }
.bx-how__card--red .bx-how__text  { color: rgba(255, 255, 255, 0.88); }

.bx-how__card--ink { background: var(--bx-ink); border: none; }
.bx-how__card--ink .bx-how__num   { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32); }
.bx-how__card--ink .bx-how__title { color: var(--bx-white); }
.bx-how__card--ink .bx-how__text  { color: rgba(255, 255, 255, 0.68); }

.bx-cta { padding: 5.5rem 1.25rem 0; }

.bx-cta__box {
  max-width: var(--bx-container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--bx-ink);
  padding: clamp(2.375rem, 5vw, 3.875rem) clamp(1.375rem, 4vw, 3.5rem);
  text-align: center;
}

.bx-cta__title {
  position: relative;
  font-size: clamp(1.75rem, 3.6vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0 auto 0.875rem;
  color: var(--bx-white);
  max-width: 32.5rem;
}

.bx-cta__ghostText { visibility: hidden; }

.bx-cta__typed { position: absolute; left: 0; right: 0; top: 0; }

.bx-caret {
  display: inline-block;
  width: 3px;
  height: 0.86em;
  margin-left: 4px;
  vertical-align: -0.08em;
  background: var(--bx-red);
  animation: bxCaret 1s step-end infinite;
}

.bx-cta__sub {
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 27.5rem;
  text-wrap: pretty;
}

.bx-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6875rem; }

.bx-btn--ctaPrimary {
  background: var(--bx-red);
  color: var(--bx-white);
  padding: 1.0625rem 1.875rem;
  font-size: 1rem;
}
.bx-btn--ctaPrimary:hover { background: var(--bx-white); color: var(--bx-ink); }

.bx-btn--ctaGhost {
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--bx-white);
  padding: 1rem 1.625rem;
  font-size: 0.9375rem;
}
.bx-btn--ctaGhost:hover { border-color: var(--bx-white); color: var(--bx-white); }

.bx-footer { padding: 5.5rem 1.25rem 1.625rem; }

.bx-footer__box {
  max-width: var(--bx-container);
  margin: 0 auto;
  background: var(--bx-white);
  border: 1px solid var(--bx-line-2);
  border-radius: 2rem;
  padding: clamp(1.875rem, 4vw, 3.25rem) clamp(1.375rem, 3vw, 2.875rem) 1.625rem;
}

.bx-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.125rem;
  border-bottom: 1px solid #f0eae3;
}

.bx-footer__brand { flex: 1 1 18.75rem; min-width: 15.625rem; }

.bx-footer__logo { height: 2.375rem; width: auto; display: block; mix-blend-mode: multiply; }

.bx-footer__about {
  margin: 1.125rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bx-muted);
  max-width: 20rem;
  text-wrap: pretty;
}

.bx-footer__col { flex: 0 1 12.5rem; }

.bx-footer__colTitle {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bx-faint);
  margin-bottom: 1rem;
}

.bx-footer__list { display: flex; flex-direction: column; gap: 0.6875rem; }

.bx-footer__mail { color: var(--bx-ink); font-size: 0.9375rem; font-weight: 700; }
.bx-footer__mail:hover { color: var(--bx-red); }

.bx-footer__link { color: var(--bx-text); font-size: 0.9375rem; font-weight: 600; }
.bx-footer__link:hover { color: var(--bx-ink); }

.bx-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.375rem;
}

.bx-footer__copy { font-size: 0.8125rem; color: var(--bx-faint); }

.bx-footer__legal { display: flex; gap: 1.375rem; }

.bx-footer__legal a { font-size: 0.8125rem; color: var(--bx-muted); font-weight: 600; }
.bx-footer__legal a:hover { color: var(--bx-ink); }

@media (max-width: 47.9375rem) {           
  .bx-nav { gap: 0.75rem; padding: 0.75rem 1rem; flex-wrap: wrap; }
  .bx-nav__links { display: none; }
  
  .bx-nav__cta { padding: 0.625rem 1rem; font-size: 0.8125rem; margin-left: auto; }

  .bx-tilt {
    position: static;
    text-align: right;
    margin: -2.5rem 0.875rem 0 0;
    pointer-events: none;
  }
  .bx-tilt__inner { display: inline-block; text-align: center; }

  .bx-hero { padding-top: 2.25rem; }
  .bx-summary__k { flex: 1 1 100%; }
  .bx-summary__v { flex: 1 1 100%; }

  .bx-actions .bx-btn,
  .bx-actions .bx-btn--back { flex: 1 1 auto; justify-content: center; }

  .bx-footer__legal { gap: 1rem; }
}

@media (max-width: 39.9375rem) {           
  .bx-how,
  .bx-cta,
  .bx-footer { padding-top: 3.5rem; }

  .bx-how__num { font-size: 5rem; }
  .bx-promise { align-items: flex-start; }
}

@media (min-width: 40rem) and (max-width: 63.9375rem) {
  .bx-nav__links { gap: 1.125rem; }
}

@media (min-width: 64rem) { 
  .bx-nav__links { gap: 1.625rem; }
}

@media (min-width: 120rem) {               
  .bx-hero   { padding-top: 4rem; }
  .bx-how,
  .bx-cta,
  .bx-footer { padding-top: 6.5rem; }
}
