@font-face {
      font-family: "Atkinson Hyperlegible";
      src: url("db_fonts/db_AtkinsonHyperlegibleNext-Light.otf") format("opentype");
      font-style: normal;
      font-weight: 300;
      font-display: swap;
    }

    @font-face {
      font-family: "Atkinson Hyperlegible";
      src: url("db_fonts/db_AtkinsonHyperlegibleNext-Regular.otf") format("opentype");
      font-style: normal;
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: "Atkinson Hyperlegible";
      src: url("db_fonts/db_AtkinsonHyperlegibleNext-Medium.otf") format("opentype");
      font-style: normal;
      font-weight: 500;
      font-display: swap;
    }

    @font-face {
      font-family: "Atkinson Hyperlegible";
      src: url("db_fonts/db_AtkinsonHyperlegibleNext-SemiBold.otf") format("opentype");
      font-style: normal;
      font-weight: 600;
      font-display: swap;
    }

    @font-face {
      font-family: "Atkinson Hyperlegible";
      src: url("db_fonts/db_AtkinsonHyperlegibleNext-Bold.otf") format("opentype");
      font-style: normal;
      font-weight: 700;
      font-display: swap;
    }

    :root {
      --db-black: #111111;
      --db-white: #ffffff;
      --db-pink: #ff0096;
      --db-blue: #1c45d8;
      --db-cyan: #00b4da;
      --db-gray-50: #f0efed;
      --db-gray-100: #ececea;
      --db-gray-300: #b8b8b5;
      --db-gray-600: #5b5b58;
      --db-container: 1780px;
      --db-gutter: 8vw;
      --db-section: clamp(72px, 7vw, 112px);
      --db-shadow: 0 18px 55px rgb(0 0 0 / 14%);
      --a11y-scale: 1;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--db-black);
      background: var(--db-white);
      font-family: "Atkinson Hyperlegible", Arial, sans-serif;
      font-size: calc(var(--a11y-scale, 1) * (18px));
      font-weight: 300;
      line-height: 1.38;
      text-rendering: optimizeLegibility;
    }

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

    a {
      color: inherit;
      text-underline-offset: 0.2em;
    }

    button,
    summary {
      font: inherit;
    }

    button,
    a,
    summary {
      -webkit-tap-highlight-color: transparent;
    }

    :focus-visible {
      outline: 3px solid var(--db-cyan);
      outline-offset: 4px;
    }

    .u-container {
      width: min(100% - (var(--db-gutter) * 2), var(--db-container));
      margin-inline: auto;
    }

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

    .site-header {
      position: relative;
      z-index: 20;
      min-height: 82px;
      background: var(--db-white);
      border-bottom: 1px solid var(--db-gray-100);
    }

    .site-header__inner {
      display: grid;
      grid-template-columns: 190px 1fr 82px;
      width: 100%;
      max-width: none;
      padding-right: 0;
      padding-left: 8vw;
      margin-inline: 0;
      align-items: center;
      min-height: 82px;
    }

    .site-header__brand {
      display: block;
      width: 128px;
      aspect-ratio: 470 / 169;
    }

    .site-header__brand-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
    }

    .site-header__nav {
      justify-self: center;
    }

    .site-header__list {
      display: flex;
      align-items: center;
      gap: clamp(24px, 2.75vw, 46px);
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .site-header__link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      font-size: calc(var(--a11y-scale, 1) * (15px));
      font-weight: 600;
      text-decoration: none;
    }

    .site-header__link::after {
      position: absolute;
      right: 0;
      bottom: 5px;
      left: 0;
      height: 2px;
      background: var(--db-pink);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 180ms ease;
    }

    .site-header__link:hover::after,
    .site-header__link:focus-visible::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .site-header__accessibility {
      position: relative;
      display: grid;
      width: 82px;
      height: 82px;
      padding: 0;
      margin-left: auto;
      place-items: center;
      background: var(--db-blue);
      border: 0;
      cursor: pointer;
    }

    .site-header__accessibility img {
      width: 44px;
      height: 44px;
      object-fit: contain;
    }

    .accessibility-panel {
      position: absolute;
      top: 100%;
      right: 0;
      z-index: 30;
      display: none;
      width: 260px;
      padding: 18px;
      color: var(--db-black);
      background: var(--db-white);
      border: 1px solid var(--db-gray-300);
      box-shadow: var(--db-shadow);
    }

    .accessibility-panel[data-open="true"] {
      display: grid;
      gap: 10px;
    }

    .accessibility-panel__button {
      min-height: 42px;
      padding: 8px 12px;
      text-align: left;
      background: var(--db-white);
      border: 1px solid var(--db-black);
      cursor: pointer;
    }

    body.db-accessibility-contrast {
      filter: contrast(1.35);
    }

    body.db-accessibility-grayscale {
      filter: grayscale(1);
    }

    body.db-accessibility-large {
      --a11y-scale: 1.3;
    }

    .site-header__menu-button {
      display: none;
      width: 50px;
      height: 50px;
      padding: 12px;
      margin-left: auto;
      color: var(--db-white);
      background: var(--db-black);
      border: 0;
      cursor: pointer;
    }

    .site-header__menu-lines,
    .site-header__menu-lines::before,
    .site-header__menu-lines::after {
      display: block;
      width: 26px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .site-header__menu-lines {
      position: relative;
    }

    .site-header__menu-lines::before {
      position: absolute;
      top: -8px;
    }

    .site-header__menu-lines::after {
      position: absolute;
      top: 8px;
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-lines {
      background: transparent;
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-lines::before {
      top: 0;
      transform: rotate(45deg);
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-lines::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: clamp(540px, 45vw, 700px);
      overflow: hidden;
      background: #d9d3c5;
    }

    .hero__image {
      width: 100%;
      height: clamp(540px, 45vw, 700px);
      object-fit: cover;
      object-position: center 48%;
    }

    .intro {
      padding: clamp(54px, 5vw, 80px) 0;
      border-bottom: 1px solid var(--db-gray-300);
    }

    .intro__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

    .intro__title {
      max-width: 780px;
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (clamp(36px, 4.36vw, 84px)));
      line-height: 0.98;
      letter-spacing: -0.035em;
    }

    .intro__title span {
      display: block;
      margin-top: 12px;
      font-size: calc(var(--a11y-scale, 1) * (0.985em));
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.025em;
    }

    .intro__symbol {
      width: clamp(120px, 12.83vw, 197px);
      flex: 0 0 auto;
      transform: translateY(-7px);
    }

    .section {
      padding: var(--db-section) 0;
    }

    .section--gray {
      background: var(--db-gray-50);
    }

    .section-heading {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-bottom: 14px;
      margin: 0 0 30px;
      border-bottom: 1px solid var(--db-gray-300);
      font-size: calc(var(--a11y-scale, 1) * (clamp(30px, 2.35vw, 40px)));
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .section-heading__arrow {
      width: 30px;
      height: 30px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .section-kicker {
      margin: -14px 0 50px;
      color: var(--db-gray-600);
      font-size: calc(var(--a11y-scale, 1) * (clamp(22px, 2vw, 30px)));
      line-height: 1.2;
    }

    .about__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(460px, 0.93fr);
      column-gap: clamp(54px, 7vw, 108px);
      row-gap: 42px;
      align-items: start;
    }

    .about .section-heading {
      border-bottom: 0;
    }

    .about__content {
      font-size: calc(var(--a11y-scale, 1) * (clamp(18px, 1.55vw, 23px)));
    }

    .about__content p {
      margin: 0;
    }

    .about__content strong {
      font-weight: 700;
    }

    .video-card {
      margin: 0;
    }

    .video-card__video {
      display: block;
      width: 100%;
      aspect-ratio: 2.17 / 1;
      background: var(--db-black);
      border: 1px solid rgb(0 0 0 / 25%);
      box-shadow: var(--db-shadow);
      object-fit: cover;
    }

    .video-card__caption {
      display: block;
      margin-top: 15px;
      font-size: calc(var(--a11y-scale, 1) * (15px));
      text-decoration: underline;
    }

    .how__lead-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: clamp(50px, 7vw, 110px);
      align-items: center;
      margin-bottom: 76px;
    }

    .how__lead-copy {
      max-width: 660px;
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (clamp(18px, 1.4vw, 22px)));
    }

    .how__lead-copy strong {
      font-weight: 700;
    }

    .how__visual {
      display: grid;
      grid-template-columns: 0.42fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .how__code {
      width: 100%;
      max-width: 230px;
      justify-self: center;
    }

    .how__alliance {
      width: 100%;
    }

    .how__download {
      grid-column: 1 / -1;
      justify-self: end;
      margin-top: 5px;
      font-size: calc(var(--a11y-scale, 1) * (14px));
    }

    .steps {
      margin-top: 20px;
    }

    .steps__title {
      margin: 0 0 34px;
      font-size: calc(var(--a11y-scale, 1) * (clamp(25px, 2.3vw, 34px)));
    }

    .steps__title::before {
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-right: 14px;
      background: var(--db-pink);
      content: "";
    }

    .steps__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(38px, 5vw, 76px);
    }

    .steps__item {
      position: relative;
      padding-top: 8px;
    }

    .steps__number {
      margin: 0 0 12px;
      font-size: calc(var(--a11y-scale, 1) * (18px));
      font-weight: 700;
    }

    .steps__copy {
      margin: 0;
      color: #282826;
      font-size: calc(var(--a11y-scale, 1) * (15px));
    }

    .benefits {
      padding: 44px 0 38px;
      color: var(--db-white);
      background: var(--db-pink);
    }

    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
    }

    .benefits__item {
      display: flex;
      min-width: 0;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }

    .benefits__icon {
      width: 72px;
      height: 72px;
      object-fit: contain;
      margin-bottom: 16px;
    }

    .benefits__copy {
      max-width: 150px;
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (15px));
      font-weight: 600;
      line-height: 1.15;
    }

    .apps__layout {
      display: grid;
      grid-template-columns: 33.5% 33.25% 33.25%;
      min-height: clamp(40.999rem, 78.0vw, 74.88rem);
      align-items: stretch;
    }

    .apps__sidebar {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(0.578rem, 1.1vw, 1.056rem) clamp(1.419rem, 2.7vw, 2.592rem) clamp(2.943rem, 5.6vw, 5.376rem) 0;
    }

    .app-card {
      display: grid;
      grid-template-rows: clamp(15.848rem, 30.15vw, 28.944rem) 1fr;
      align-content: start;
      padding-top: clamp(0.578rem, 1.1vw, 1.056rem);
    }

    .app-card__phone-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .app-card:nth-child(2) .app-card__phone-wrap {
      padding-left: clamp(0.736rem, 1.4vw, 1.344rem);
    }

    .app-card:nth-child(3) .app-card__phone-wrap {
      padding-left: clamp(1.577rem, 3.0vw, 2.88rem);
    }

    .app-card__phone {
      width: auto;
      max-width: 100%;
      max-height: clamp(15.033rem, 28.6vw, 27.456rem);
    }

    .app-card__body {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      width: min(100%, clamp(13.403rem, 25.5vw, 24.48rem));
      padding-top: clamp(0.657rem, 1.25vw, 1.2rem);
      margin-inline: 0;
      text-align: left;
    }

    .app-card:nth-child(2) .app-card__body {
      margin-left: clamp(1.314rem, 2.5vw, 2.4rem);
    }

    .app-card:nth-child(3) .app-card__body {
      margin-left: clamp(2.05rem, 3.9vw, 3.744rem);
    }

    .app-card__logo {
      width: clamp(2.628rem, 5.0vw, 4.8rem);
      height: clamp(2.628rem, 5.0vw, 4.8rem);
      margin-bottom: clamp(0.526rem, 1.0vw, 0.96rem);
      object-fit: contain;
    }

    .app-card__title {
      margin: 0 0 clamp(1.051rem, 2.0vw, 1.92rem);
      font-size: calc(var(--a11y-scale, 1) * (clamp(25px, 2.1vw, 40px)));
      line-height: 1;
    }

    .app-card__audience {
      width: 100%;
      min-height: clamp(2.418rem, 4.6vw, 4.416rem);
      margin: 0 0 clamp(0.867rem, 1.65vw, 1.584rem);
      font-size: calc(var(--a11y-scale, 1) * (clamp(17px, 1.52vw, 29px)));
      font-weight: 700;
      line-height: 1.38;
      text-align: left;
    }

    .app-card__list {
      flex-grow: 1;
      width: 100%;
      padding: 0;
      margin: 0 0 clamp(0.788rem, 1.5vw, 1.44rem);
      list-style: none;
    }

    .app-card__list li {
      position: relative;
      padding-left: clamp(0.657rem, 1.25vw, 1.2rem);
      margin-bottom: clamp(0.657rem, 1.25vw, 1.2rem);
      font-size: calc(var(--a11y-scale, 1) * (clamp(16px, 1.38vw, 26px)));
      line-height: 1.42;
    }

    .app-card__list li::before {
      position: absolute;
      top: 0.62em;
      left: 0;
      width: clamp(0.21rem, 0.4vw, 0.384rem);
      height: clamp(0.21rem, 0.4vw, 0.384rem);
      background: var(--db-black);
      border-radius: 50%;
      content: "";
    }

    .app-card__download {
      margin-top: clamp(12px, 1.2vw, 20px);
      font-size: calc(var(--a11y-scale, 1) * (clamp(16px, 1.35vw, 26px)));
      font-weight: 600;
    }

    .apps__store-badges {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: clamp(0.473rem, 0.9vw, 0.864rem);
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (clamp(18px, 1.55vw, 30px)));
    }

    .apps__store-badges img {
      width: clamp(6.833rem, 13.0vw, 12.48rem);
      height: auto;
      object-fit: contain;
    }

    .apps__store-badges a {
      display: block;
    }

    .apps__privacy-list {
      padding: 0;
      margin: 0;
      list-style: none;
      transform: translateY(clamp(1.472rem, 2.8vw, 2.688rem));
    }

    .apps__privacy-list li {
      position: relative;
      padding-left: clamp(0.604rem, 1.15vw, 1.104rem);
      margin-bottom: clamp(0.552rem, 1.05vw, 1.008rem);
      font-size: calc(var(--a11y-scale, 1) * (clamp(17px, 1.43vw, 27px)));
      font-weight: 700;
      line-height: 1.22;
    }

    .apps__privacy-list li::before {
      position: absolute;
      top: 0.52em;
      left: 0;
      width: clamp(0.221rem, 0.42vw, 0.403rem);
      height: clamp(0.221rem, 0.42vw, 0.403rem);
      background: var(--db-black);
      border-radius: 50%;
      content: "";
    }

    .stats {
      padding: 38px 0 34px;
      color: var(--db-white);
      background: var(--db-pink);
    }

    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stats__item {
      text-align: center;
    }

    .stats__label {
      display: block;
      margin-bottom: 8px;
      font-size: calc(var(--a11y-scale, 1) * (18px));
      font-weight: 600;
    }

    .stats__value {
      display: block;
      font-size: calc(var(--a11y-scale, 1) * (clamp(42px, 4.3vw, 68px)));
      line-height: 0.9;
    }

    .stats__unit {
      display: block;
      margin-top: 8px;
      font-size: calc(var(--a11y-scale, 1) * (18px));
    }

    .sectors__lead {
      margin-bottom: 48px;
    }

    .sectors__list {
      display: grid;
      gap: 28px;
    }

    .sector-card {
      display: grid;
      grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.5fr);
      gap: clamp(28px, 4vw, 62px);
      align-items: start;
      min-height: 250px;
    }

    .sector-card__image-wrap {
      height: 250px;
      overflow: hidden;
      background: var(--db-gray-100);
    }

    .sector-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sector-card--portrait .sector-card__image {
      object-position: center 45%;
    }

    .sector-card__title {
      margin: 0 0 10px;
      font-size: calc(var(--a11y-scale, 1) * (25px));
      line-height: 1.05;
    }

    .sector-card > div:last-child {
      padding-top: 4px;
    }

    .sector-card__copy {
      max-width: 760px;
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (17px));
    }

    .alliances__grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 30px 56px;
      align-items: center;
      padding: 26px 0 6px;
    }

    .alliances__logo-wrap {
      display: flex;
      height: 62px;
      align-items: center;
      justify-content: center;
    }

    .alliances__logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0.9);
    }

    .faq {
      background: var(--db-gray-50);
    }

    .faq__list {
      width: min(100%, 920px);
      margin-left: auto;
    }

    .faq__item {
      border-bottom: 1px solid var(--db-gray-300);
    }

    .faq__question {
      position: relative;
      display: flex;
      min-height: 64px;
      align-items: center;
      padding: 18px 58px 18px 0;
      font-size: calc(var(--a11y-scale, 1) * (18px));
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }

    .faq__question::-webkit-details-marker {
      display: none;
    }

    .faq__question::before,
    .faq__question::after {
      position: absolute;
      top: 31px;
      right: 15px;
      width: 18px;
      height: 2px;
      background: var(--db-black);
      content: "";
    }

    .faq__question::after {
      transform: rotate(90deg);
      transition: transform 180ms ease;
    }

    .faq__item[open] .faq__question::after {
      transform: rotate(0);
    }

    .faq__answer {
      max-width: 760px;
      padding: 0 44px 28px 0;
      color: #373735;
      font-size: calc(var(--a11y-scale, 1) * (17px));
    }

    .faq__answer p {
      margin: 0;
    }

    .site-footer {
      padding: 52px 0;
      color: var(--db-white);
      background: var(--db-black);
    }

    .site-footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

    .site-footer__brand {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .site-footer__logo {
      width: 90px;
      height: 90px;
      object-fit: contain;
    }

    .site-footer__copy {
      margin: 0;
      font-size: calc(var(--a11y-scale, 1) * (15px));
      line-height: 1.35;
    }

    .site-footer__mail {
      display: inline-block;
      margin-top: 4px;
      font-weight: 600;
    }

    .site-footer__social {
      display: flex;
      gap: 28px;
    }

    .site-footer__social-link {
      display: grid;
      width: 52px;
      height: 52px;
      background: var(--db-white);
      border-radius: 50%;
      place-items: center;
    }

    .site-footer__social-link img {
      width: 21px;
      height: 21px;
      object-fit: contain;
    }

    @media (min-width: 841px) {
      .section-heading {
        gap: 14px;
        padding-bottom: 18px;
        margin-bottom: 22px;
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.367rem, 2.6vw, 2.496rem)));
        line-height: 1.05;
        letter-spacing: 0.01em;
      }

      .section-heading__arrow {
        width: clamp(1.104rem, 2.1vw, 2.016rem);
        height: clamp(1.104rem, 2.1vw, 2.016rem);
      }

      .section-kicker {
        margin: 0;
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.367rem, 2.6vw, 2.496rem)));
        font-weight: 300;
        line-height: 1.12;
        letter-spacing: 0.01em;
      }

      .site-header,
      .site-header__inner {
        min-height: clamp(3.595rem, 6.84vw, 6.566rem);
      }

      .site-header__inner {
        grid-template-columns: 190px 1fr clamp(3.595rem, 6.84vw, 6.566rem);
      }

      .site-header__accessibility {
        width: clamp(3.595rem, 6.84vw, 6.566rem);
        height: clamp(3.595rem, 6.84vw, 6.566rem);
      }

      .hero,
      .hero__image {
        min-height: clamp(26.108rem, 49.67vw, 47.683rem);
        height: clamp(26.108rem, 49.67vw, 47.683rem);
      }

      .intro {
        display: flex;
        align-items: center;
        padding-block: clamp(2.365rem, 4.5vw, 4.32rem);
      }

      .intro__inner {
        width: min(100% - (var(--db-gutter) * 2), var(--db-container));
      }

      .intro__title {
        width: clamp(28.909rem, 55.0vw, 52.8rem);
        max-width: none;
        flex: 0 0 auto;
        font-size: calc(var(--a11y-scale, 1) * (clamp(2.155rem, 4.1vw, 3.936rem)));
        font-weight: 500;
        letter-spacing: 0.01em;
        transform: translateY(-5px);
      }

      .intro__title span {
        margin-top: 3px;
        font-weight: 300;
        letter-spacing: 0.01em;
      }

      .about {
        padding: clamp(1.629rem, 3.1vw, 2.976rem) 0 clamp(1.735rem, 3.3vw, 3.168rem);
      }

      .about__grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
        column-gap: clamp(2.733rem, 5.2vw, 4.992rem);
        row-gap: clamp(1.997rem, 3.8vw, 3.648rem);
      }

      .about .section-heading {
        padding-bottom: 0;
        margin-bottom: clamp(1.787rem, 3.4vw, 3.264rem);
        border-bottom: 0;
      }

      .about__content {
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.025rem, 1.95vw, 1.872rem)));
        font-weight: 300;
        line-height: 1.42;
        letter-spacing: 0.01em;
      }

      .about__content--second {
        align-self: start;
      }

      .video-card__video {
        aspect-ratio: 1.85 / 1;
      }

      .video-card__caption {
        margin-top: 12px;
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.762rem, 1.45vw, 1.392rem)));
        line-height: 1.18;
      }

      .how {
        padding: clamp(0.762rem, 1.45vw, 1.392rem) 0 clamp(1.577rem, 3.0vw, 2.88rem);
      }

      .how .section-kicker {
        padding-bottom: clamp(0.71rem, 1.35vw, 1.296rem);
        margin-bottom: clamp(1.945rem, 3.7vw, 3.552rem);
        border-bottom: 1px solid var(--db-black);
      }

      .how__lead-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
        gap: clamp(2.418rem, 4.6vw, 4.416rem);
        align-items: start;
        margin-bottom: clamp(1.419rem, 2.7vw, 2.592rem);
      }

      .how__lead-copy {
        max-width: none;
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.025rem, 1.95vw, 1.872rem)));
        font-weight: 300;
        line-height: 1.42;
        letter-spacing: 0.01em;
      }

      .how__visual {
        grid-template-columns: clamp(6.833rem, 13.0vw, 12.48rem) 1fr;
        gap: clamp(1.577rem, 3.0vw, 2.88rem);
        align-items: start;
      }

      .how__code {
        width: clamp(6.833rem, 13.0vw, 12.48rem);
        max-width: none;
        border: 1px solid var(--db-black);
      }

      .how__alliance {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border: 1px solid var(--db-black);
      }

      .how__download {
        margin-top: 0;
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.762rem, 1.45vw, 1.392rem)));
      }

      .steps {
        margin-top: 0;
      }

      .steps__title {
        margin-bottom: clamp(1.262rem, 2.4vw, 2.304rem);
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.051rem, 2.0vw, 1.92rem)));
      }

      .steps__item {
        padding-top: 0;
      }

      .steps__number {
        margin-bottom: clamp(0.394rem, 0.75vw, 0.72rem);
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.815rem, 1.55vw, 1.488rem)));
        line-height: 1.2;
      }

      .steps__copy {
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.752rem, 1.43vw, 1.373rem)));
        font-weight: 300;
        line-height: 1.45;
      }

      .steps__grid {
        gap: clamp(2.418rem, 4.6vw, 4.416rem);
      }

      .benefits {
        display: flex;
        align-items: center;
        padding-block: clamp(0.894rem, 1.7vw, 1.632rem);
      }

      .benefits__grid {
        gap: clamp(0.631rem, 1.2vw, 1.152rem);
      }

      .benefits__icon {
        width: clamp(4.205rem, 8.0vw, 7.68rem);
        height: clamp(4.205rem, 8.0vw, 7.68rem);
        margin-bottom: clamp(0.631rem, 1.2vw, 1.152rem);
      }

      .benefits__copy {
        max-width: clamp(6.57rem, 12.5vw, 12.0rem);
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.894rem, 1.7vw, 1.632rem)));
        font-weight: 300;
        line-height: 1.16;
      }

      .apps {
        padding: clamp(1.629rem, 3.1vw, 2.976rem) 0 clamp(2.103rem, 4.0vw, 3.84rem);
      }

      .apps .section-kicker {
        padding-bottom: clamp(0.71rem, 1.35vw, 1.296rem);
        margin-top: 0;
        margin-bottom: clamp(1.787rem, 3.4vw, 3.264rem);
        border-bottom: 1px solid var(--db-black);
      }

      .app-card__title {
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.104rem, 2.1vw, 2.016rem)));
      }

      .app-card__audience {
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.815rem, 1.55vw, 1.488rem)));
        line-height: 1.45;
      }

      .app-card__list li,
      .apps__privacy-list li {
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.736rem, 1.4vw, 1.344rem)));
        font-weight: 300;
        line-height: 1.45;
      }

      .apps__privacy-list li {
        font-weight: 700;
      }

      .app-card__download {
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.736rem, 1.4vw, 1.344rem)));
      }

      .stats {
        display: flex;
        align-items: center;
        padding-block: clamp(1.314rem, 2.5vw, 2.4rem);
      }

      .stats__label,
      .stats__unit {
        font-size: calc(var(--a11y-scale, 1) * (clamp(1.051rem, 2.0vw, 1.92rem)));
        font-weight: 700;
        line-height: 1;
      }

      .stats__label {
        margin-bottom: clamp(0.526rem, 1.0vw, 0.96rem);
      }

      .stats__value {
        font-size: calc(var(--a11y-scale, 1) * (clamp(3.206rem, 6.1vw, 5.856rem)));
        line-height: 0.82;
      }

      .stats__unit {
        margin-top: clamp(0.578rem, 1.1vw, 1.056rem);
      }

      .sectors {
        padding: clamp(1.629rem, 3.1vw, 2.976rem) 0;
      }

      .sectors .section-kicker {
        padding-bottom: clamp(0.71rem, 1.35vw, 1.296rem);
        border-bottom: 1px solid var(--db-black);
      }

      .sectors__list {
        gap: clamp(0.762rem, 1.45vw, 1.392rem);
        padding-top: 32px;
      }

      .sector-card {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 1fr);
        gap: clamp(1.367rem, 2.6vw, 2.496rem);
      }

      .sector-card__image-wrap {
        height: clamp(8.699rem, 16.55vw, 15.888rem);
      }

      .sector-card__title {
        margin-bottom: clamp(0.42rem, 0.8vw, 0.768rem);
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.972rem, 1.85vw, 1.776rem)));
        letter-spacing: 0.01em;
      }

      .sector-card__copy {
        max-width: clamp(27.332rem, 52.0vw, 49.92rem);
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.694rem, 1.32vw, 1.267rem)));
        font-weight: 300;
        line-height: 1.48;
      }

      .alliances {
        display: flex;
        align-items: center;
        padding: clamp(1.472rem, 2.8vw, 2.688rem) 0 clamp(3.049rem, 5.8vw, 5.568rem);
      }

      .alliances > .u-container {
        width: min(100% - (var(--db-gutter) * 2), var(--db-container));
      }

      .alliances__grid {
        gap: clamp(1.577rem, 3.0vw, 2.88rem) clamp(1.945rem, 3.7vw, 3.552rem);
        padding: clamp(1.577rem, 3.0vw, 2.88rem) 0 0;
      }

      .alliances__logo-wrap {
        height: clamp(2.733rem, 5.2vw, 4.992rem);
      }

      .alliances__logo-wrap:nth-child(1) {
        transform: scale(0.88);
      }

      .alliances__logo-wrap:nth-child(8) {
        transform: scale(1.8);
      }

      .alliances__logo-wrap:nth-child(10) {
        transform: scale(1.25);
      }

      .faq {
        padding: clamp(1.629rem, 3.1vw, 2.976rem) 0 clamp(3.417rem, 6.5vw, 6.24rem);
      }

      .faq .section-heading {
        margin-bottom: clamp(1.682rem, 3.2vw, 3.072rem);
      }

      .faq__list {
        width: min(100%, clamp(28.909rem, 55.0vw, 52.8rem));
      }

      .faq__question {
        min-height: clamp(2.181rem, 4.15vw, 3.984rem);
        padding: clamp(0.473rem, 0.9vw, 0.864rem) clamp(1.997rem, 3.8vw, 3.648rem) clamp(0.473rem, 0.9vw, 0.864rem) 0;
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.762rem, 1.45vw, 1.392rem)));
        line-height: 1.25;
      }

      .faq__question::before,
      .faq__question::after {
        top: clamp(1.051rem, 2.0vw, 1.92rem);
      }

      .faq__answer {
        max-width: clamp(23.653rem, 45.0vw, 43.2rem);
        padding: 0 clamp(1.577rem, 3.0vw, 2.88rem) clamp(0.841rem, 1.6vw, 1.536rem) 0;
        font-size: calc(var(--a11y-scale, 1) * (clamp(0.736rem, 1.4vw, 1.344rem)));
        font-weight: 300;
        line-height: 1.45;
      }

      .site-footer {
        display: flex;
        align-items: center;
        padding-block: clamp(1.787rem, 3.4vw, 3.264rem);
      }

      .site-footer__inner {
        width: min(100% - (var(--db-gutter) * 2), var(--db-container));
      }

      .site-footer__social-link {
        width: clamp(1.787rem, 3.4vw, 3.264rem);
        height: clamp(1.787rem, 3.4vw, 3.264rem);
      }

      .site-footer__social-link img {
        width: clamp(0.815rem, 1.55vw, 1.488rem);
        height: clamp(0.815rem, 1.55vw, 1.488rem);
      }
    }

    @media (max-width: 1120px) {
      body {
        font-size: calc(var(--a11y-scale, 1) * (17px));
      }

      .site-header__inner {
        grid-template-columns: 170px 1fr 72px;
      }

      .site-header__list {
        gap: 20px;
      }

      .site-header__link {
        font-size: calc(var(--a11y-scale, 1) * (13px));
      }

      .site-header__accessibility {
        width: 72px;
        height: 82px;
      }

      .about__grid {
        grid-template-columns: 1fr 0.9fr;
        column-gap: 48px;
      }

      .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px 20px;
      }

      .app-card {
        grid-template-rows: 520px 1fr;
      }

      .app-card__phone {
        max-height: 520px;
      }

      .alliances__grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 840px) {
      :root {
        --db-gutter: 8vw;
      }

      .site-header__inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
      }

      .site-header__nav {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 26px var(--db-gutter) 34px;
        background: var(--db-white);
        border-top: 1px solid var(--db-gray-100);
        box-shadow: 0 20px 30px rgb(0 0 0 / 12%);
        justify-self: stretch;
      }

      .site-header__nav[data-open="true"] {
        display: block;
      }

      .site-header__list {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
      }

      .site-header__link {
        min-height: 46px;
        font-size: calc(var(--a11y-scale, 1) * (18px));
      }

      .site-header__accessibility {
        width: 58px;
        height: 58px;
      }

      .site-header__accessibility img {
        width: 34px;
        height: 34px;
      }

      .site-header__menu-button {
        display: grid;
        place-items: center;
      }

      .hero,
      .hero__image {
        min-height: 510px;
        height: 510px;
      }

      .hero__image {
        object-position: 53% center;
      }

      .about__grid,
      .how__lead-grid {
        grid-template-columns: 1fr;
      }

      .how__visual {
        max-width: 640px;
      }

      .steps__grid {
        gap: 34px;
      }

      .apps__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 36px;
        min-height: 0;
      }

      .apps__sidebar {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
        padding: 0;
      }

      .apps__store-badges {
        gap: 10px;
        font-size: calc(var(--a11y-scale, 1) * (18px));
      }

      .apps__store-badges img {
        width: 150px;
      }

      .apps__privacy-list li {
        padding-left: 16px;
        margin-bottom: 10px;
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .app-card {
        grid-template-rows: 430px 1fr;
        padding-top: 0;
      }

      .app-card__phone {
        max-height: 430px;
      }

      .app-card__body {
        width: 100%;
        padding-top: 20px;
      }

      .app-card:nth-child(2) .app-card__phone-wrap,
      .app-card:nth-child(3) .app-card__phone-wrap {
        padding-left: 0;
        justify-content: center;
      }

      .app-card:nth-child(2) .app-card__body,
      .app-card:nth-child(3) .app-card__body {
        margin-left: 0;
      }

      .app-card__logo {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
      }

      .app-card__title {
        margin-bottom: 16px;
        font-size: calc(var(--a11y-scale, 1) * (28px));
      }

      .app-card__audience {
        min-height: 70px;
        margin-bottom: 20px;
        font-size: calc(var(--a11y-scale, 1) * (17px));
      }

      .app-card__list li {
        padding-left: 18px;
        margin-bottom: 12px;
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .app-card__download {
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .sector-card {
        grid-template-columns: 300px 1fr;
      }

      .sector-card__image-wrap {
        height: 230px;
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 20px;
      }
    }

    @media (max-width: 640px) {
      :root {
        --db-gutter: 8vw;
        --db-section: 66px;
      }

      body {
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .site-header,
      .site-header__inner {
        min-height: 72px;
      }

      .site-header__brand {
        width: 170px;
        height: 45px;
      }

      .site-header__brand-image {
        top: -47px;
        left: -34px;
        width: 210px;
      }

      .site-header__nav {
        top: 72px;
      }

      .site-header__accessibility {
        display: grid;
        width: 50px;
        height: 50px;
      }

      .hero,
      .hero__image {
        min-height: 420px;
        height: 420px;
      }

      .hero__image {
        object-position: 57% center;
      }

      .intro__inner {
        align-items: flex-start;
        gap: 22px;
      }

      .intro__title {
        font-size: calc(var(--a11y-scale, 1) * (34px));
      }

      .intro__title span {
        font-size: calc(var(--a11y-scale, 1) * (0.77em));
      }

      .intro__symbol {
        width: 88px;
        transform: none;
      }

      .section-heading {
        gap: 10px;
        font-size: calc(var(--a11y-scale, 1) * (29px));
      }

      .section-heading__arrow {
        width: 24px;
        height: 24px;
      }

      .section-kicker {
        margin-bottom: 34px;
        font-size: calc(var(--a11y-scale, 1) * (21px));
      }

      .about__content {
        font-size: calc(var(--a11y-scale, 1) * (17px));
      }

      .how__lead-grid {
        gap: 36px;
        margin-bottom: 54px;
      }

      .how__visual {
        grid-template-columns: 120px 1fr;
        gap: 14px;
      }

      .how__download {
        justify-self: start;
      }

      .steps__grid {
        grid-template-columns: 1fr;
      }

      .steps__item {
        padding-left: 22px;
        border-left: 3px solid var(--db-pink);
      }

      .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefits__icon {
        width: 62px;
        height: 62px;
      }

      .apps__layout {
        grid-template-columns: 1fr;
        gap: 74px;
      }

      .apps__sidebar {
        grid-column: auto;
        grid-template-columns: 1fr;
      }

      .app-card {
        grid-template-rows: auto auto;
      }

      .app-card__phone-wrap {
        height: 540px;
      }

      .app-card__phone {
        max-height: 540px;
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats__label,
      .stats__unit {
        font-size: calc(var(--a11y-scale, 1) * (15px));
      }

      .sector-card {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .sector-card__image-wrap {
        height: 230px;
      }

      .sector-card__copy {
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .alliances__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 24px;
      }

      .alliances__logo-wrap {
        height: 54px;
      }

      .faq__question {
        font-size: calc(var(--a11y-scale, 1) * (16px));
      }

      .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .site-footer__logo {
        width: 70px;
        height: 70px;
      }

    }

    @media (max-width: 390px) {
      .site-header__brand {
        width: 154px;
      }

      .intro__inner {
        gap: 12px;
      }

      .intro__title {
        font-size: calc(var(--a11y-scale, 1) * (30px));
      }

      .intro__symbol {
        width: 72px;
      }

      .how__visual {
        grid-template-columns: 100px 1fr;
      }

      .app-card__phone-wrap {
        height: 460px;
      }

      .app-card__phone {
        max-height: 460px;
      }

      .alliances__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 1000;
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: var(--db-black);
  background: var(--db-white);
  border: 3px solid var(--db-black);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.how__download .dosbit-download__link {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-weight: 600;
}

.how__download {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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