@layer app {
  .sessions-banner {
    container-type: inline-size;
    container-name: sessions-banner;
    margin-block-start: var(--hds-space-core-400);
  }
  .sessions-banner .hds-text--emphasized {
    display: block;
  }
  @media (min-width: 1300px) {
    .sessions-banner {
      margin-block-start: auto;
      margin-block-end: 0;
    }
  }
  .sessions-banner__card {
    background-color: var(--hds-color-core-neutral-0);
    border: 1px solid var(--hds-color-surface-border-quiet);
    border-radius: var(--hds-space-core-radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--hds-font-text-sm-size);
  }
  .sessions-banner__picture {
    width: 100%;
    order: 1;
    flex-shrink: 0;
  }
  .sessions-banner__image {
    height: 80px;
    object-fit: cover;
    object-position: 90% 50%;
  }
  .sessions-banner__content {
    padding: var(--hds-space-core-200);
    display: flex;
    flex-direction: column;
    gap: var(--hds-space-core-200);
    order: 2;
  }
  @container sessions-banner (min-width: 400px) {
    .sessions-banner__card {
      flex-direction: row;
      align-items: stretch;
    }
    .sessions-banner__picture {
      width: 36%;
      order: 1;
      display: flex;
      aspect-ratio: 280/200;
    }
    .sessions-banner__image {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 90% 50%;
    }
    .sessions-banner__content {
      flex: 1;
      order: 2;
      padding: var(--hds-space-core-200);
      align-self: center;
    }
  }
}
.navigation-hover-arrow {
  display: inline;
  text-wrap-style: balance;
}
.navigation-hover-arrow path,
.navigation-hover-arrow svg {
  transition: none;
}
.navigation-hover-arrow path {
  opacity: 1;
  transform: none;
}
.navigation-hover-arrow svg {
  visibility: hidden;
  transition: visibility 0ms linear 0.3s;
  animation-name: nav-hover-arrow-out;
  animation-duration: 0.15s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
@media (hover: hover) {
  :not([disabled]):where(:hover) > .navigation-hover-arrow svg {
    animation-name: nav-hover-arrow-in;
    animation-duration: 0.3s;
    visibility: visible;
    transition-delay: 0ms;
  }
}
@keyframes nav-hover-arrow-in {
  0% {
    opacity: 0;
    transform: translateX(-3px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes nav-hover-arrow-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@layer app {
  .console-banner {
    display: none;
  }
  @media (min-width: 1300px) {
    .console-banner {
      position: relative;
      grid-column: span 4;
      display: flex;
      justify-content: space-between;
      padding-top: calc(var(--hds-space-core-250) + var(--hds-space-core-300));
    }
    .console-banner:before {
      content: "";
      position: absolute;
      top: var(--hds-space-core-300);
      display: block;
      height: 1px;
      width: 100%;
      background-color: var(--hds-color-surface-border-quiet);
    }
    .navigation__content--products .console-banner .hds-link {
      width: fit-content;
      font-size: var(--hds-font-text-sm-size);
    }
  }
}
@layer app {
  .navigation__content--products .suite-title {
    position: relative;
  }
  .navigation__content--products section:first-child {
    --suite-color: #ff6118;
    --stop-color: #fb76fa;
    --gradient-color: #0066cc;
  }
  .navigation__content--products section:nth-child(2) {
    --suite-color: #fc5;
    --stop-color: #fb76fa;
    --gradient-color: #0066cc;
  }
  .navigation__content--products section:nth-child(3) {
    --suite-color: #f44bcc;
    --stop-color: #ec8fff;
    --gradient-color: #0066cc;
  }
  .navigation__content--products section:nth-child(4) {
    --suite-color: #ea2261;
    --stop-color: #da56ed;
    --gradient-color: #0066cc;
  }
  .navigation__content--products .suite-title:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    top: calc(100% + var(--hds-space-core-150));
    background:
      linear-gradient(
        90deg,
        var(--gradient-color) 0,
        var(--gradient-color) 20%,
        var(--stop-color) 40%,
        var(--suite-color) 60%,
        var(--suite-color) 100%
      ),
      var(--hds-color-core-neutral-50);
    border-radius: 1px;
    pointer-events: none;
  }
  .navigation__content--products aside {
    margin-inline: calc(-1 * var(--navigation-content-padding));
    margin-block-end: calc(-1 * var(--navigation-content-padding));
    padding: var(--navigation-content-padding);
  }
  .navigation__content--products .navigation__links .hds-link {
    flex-direction: column;
  }
  @media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .navigation__content--products .suite-title:after {
      background-size:
        0 100%,
        100% 100%;
      background-position: var(--mouse-in-dir, right), 0;
      background-repeat: no-repeat, no-repeat;
      transition: background-size 0.3s ease-out;
    }
    .navigation__content--products section:hover .suite-title:after {
      background-position: var(--mouse-out-dir, left), 0;
      background-size:
        100% 100%,
        100% 100%;
    }
  }
  @media (max-width: 939px) {
    .navigation__content--products > * + * {
      margin-block-start: var(--hds-space-core-400);
    }
  }
  @media (min-width: 940px) {
    .navigation__content--products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      column-gap: var(--hds-space-core-300);
    }
    .navigation__content--products > aside {
      border-top: 1px solid var(--hds-color-surface-border-quiet);
      grid-column: span 4;
      margin-block-start: var(--hds-space-core-300);
    }
    aside .navigation__links {
      display: grid;
    }
  }
  @media (min-width: 940px) and (max-width: 1299px) {
    .navigation__content--products > aside {
      display: grid;
      grid-template-columns: subgrid;
    }
    :is(.navigation__content--products > aside) .navigation__links {
      display: grid;
      grid-column: span 2;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, min-content);
    }
    :is(.navigation__content--products > aside) .sessions-banner {
      grid-column: span 2;
      margin-block-start: 0;
    }
    .navigation__content--products .aside-title {
      grid-column: span 4;
    }
  }
  @media (min-width: 1300px) {
    .navigation__content--products {
      grid-template-columns: repeat(4, 1fr) 226px;
      column-gap: var(--hds-space-core-500);
    }
    .navigation__content--products > aside {
      display: flex;
      flex-direction: column;
      grid-row: 1 / span 2;
      grid-column: 5;
      border-top: none;
      border-left: 1px solid var(--hds-color-surface-border-quiet);
    }
    :is(.navigation__content--products > aside) .navigation__links {
      grid-template-columns: 1fr;
    }
    .navigation__content--products > aside {
      margin-block: calc(-1 * var(--navigation-content-padding));
      margin-inline-start: 0;
      margin-inline-end: calc(-1 * var(--navigation-content-padding));
      padding: var(--navigation-content-padding);
    }
  }
}
@media (min-width: 940px) and (max-height: 900px) {
  .navigation__content--products {
    max-height: var(--available-height);
    overflow-y: auto;
  }
  .navigation__content--products .navigation__section--secondary:after {
    display: none;
  }
}
@layer app {
  @media (max-width: 939px) {
    .navigation__content--solutions > * + * {
      margin-block-start: var(--hds-space-core-400);
      padding-block-start: var(--hds-space-core-400);
      border-block-start: 1px solid var(--hds-color-surface-border-quiet);
    }
    .navigation__section--ecosystem {
      margin-inline: calc(-1 * var(--navigation-content-padding));
      margin-block-end: calc(-1 * var(--navigation-content-padding));
      padding: var(--navigation-content-padding);
      border-block-start: none;
    }
  }
  @media (min-width: 940px) {
    .navigation__content.navigation__content--solutions {
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .navigation__content.navigation__content--solutions > section {
      padding: var(--navigation-content-padding);
      padding-block-end: var(--hds-space-core-600);
    }
    .navigation__content.navigation__content--solutions > section + section {
      border-left: 1px solid var(--hds-color-surface-border-quiet);
    }
  }
}
@layer app {
  @media (max-width: 939px) {
    .navigation__content--developers > * + * {
      margin-block-start: var(--hds-space-core-400);
      padding-block-start: var(--hds-space-core-400);
      border-block-start: 1px solid var(--hds-color-surface-border-quiet);
    }
  }
  @media (min-width: 940px) {
    .navigation__content.navigation__content--developers {
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .navigation__content.navigation__content--developers > section {
      padding: var(--navigation-content-padding);
      padding-block-end: var(--hds-space-core-600);
    }
    .navigation__content.navigation__content--developers > section + section {
      border-left: 1px solid var(--hds-color-surface-border-quiet);
    }
    .navigation__content.navigation__content--developers
      .navigation__section--get-started {
      background-color: var(--hds-color-surface-bg-subdued);
    }
  }
}
@layer app {
  @media (max-width: 939px) {
    .navigation__content--resources > * + * {
      margin-block-start: var(--hds-space-core-400);
      padding-block-start: var(--hds-space-core-400);
      border-block-start: 1px solid var(--hds-color-surface-border-quiet);
    }
    .navigation__section--contact {
      margin-inline: calc(-1 * var(--navigation-content-padding));
      margin-block-end: calc(-1 * var(--navigation-content-padding));
      padding: var(--navigation-content-padding);
      border-block-start: none;
    }
  }
  @media (min-width: 940px) {
    .navigation__content.navigation__content--resources {
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .navigation__content.navigation__content--resources > section {
      padding: var(--navigation-content-padding);
      padding-block-end: var(--hds-space-core-600);
    }
    .navigation__content.navigation__content--resources > section + section {
      border-left: 1px solid var(--hds-color-surface-border-quiet);
    }
  }
}
.hero-wave-animation {
  inset: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-wave-animation__layout {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--hds-canary-layout-content-maxWidth-borders);
}
.hero-wave-animation__contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1264px) {
  .hero-wave-animation__contents {
    left: 250px;
    width: 110%;
  }
}
.hero-wave-animation__canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-wave-animation__static {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s linear;
}
.hero-wave-animation__static img {
  width: 624px;
  height: 975px;
  max-width: none;
}
@media (min-width: 640px) {
  .hero-wave-animation__static img {
    width: 1248px;
  }
}
@media (min-width: 1264px) {
  .hero-wave-animation__static img {
    width: 1392px;
  }
}
.hero-wave-animation--drawn .hero-wave-animation__static {
  opacity: 0;
}

[data-wave-fallback="1"] .hero-wave-animation__static {
  opacity: 1 !important;
}

[data-wave-fallback="1"] .hero-wave-animation__canvas {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-animation__static {
    opacity: 1 !important;
  }
  .hero-wave-animation__canvas {
    display: none;
  }
}
@layer app {
  :root {
    --hero-font-lang-large: 2.125rem;
    --hero-font-lang-medium: 2.125rem;
    --hero-font-lang-small: 2.125rem;
    --hero-font-lang-min: 2.125rem;
  }
  @media (min-width: 640px) {
    :root {
      --hero-font-lang-large: 2.5rem;
      --hero-font-lang-medium: 2.375rem;
      --hero-font-lang-small: 2.125rem;
    }
  }
  @media (min-width: 940px) {
    :root {
      --hero-font-lang-large: 3rem;
      --hero-font-lang-medium: 2.75rem;
      --hero-font-lang-small: 2.5rem;
    }
  }
  .hero-section-container {
    overflow: visible;
  }
  .hero-section__layout {
    position: static;
    display: grid;
    align-items: center;
    --section-container-pbs-dt: var(--hds-space-core-450);
    --section-container-pbe-dt: var(--hds-space-core-450);
  }
  @media (max-width: 639px) {
    .hero-section__layout {
      padding-block-start: var(--hds-space-core-900);
      padding-block-end: var(--hds-space-core-1100);
    }
  }
  @media (min-width: 640px) {
    .hero-section__layout {
      min-height: min(68svh, 826px);
    }
  }
  .hero-section__layout-grid {
    display: grid;
    column-gap: var(--hds-space-core-200);
    row-gap: var(--hds-space-core-400);
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  @media (min-width: 640px) {
    .hero-section__layout-grid {
      row-gap: var(--hds-space-core-500);
    }
  }
  .hero-section__fullbleed-line {
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0;
    border-block-end: 1px solid var(--hds-color-surface-border-quiet);
    mix-blend-mode: multiply;
  }
  .hero-section__fullbleed-line--top {
    display: none;
    top: var(--navigation-height);
    bottom: auto;
  }
  @media (min-width: 640px) {
    .hero-section__fullbleed-line--top {
      display: block;
    }
  }
  .hero-section__eyebrow {
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    grid-column-end: -1;
    grid-column-start: 1;
  }
  @media (min-width: 940px) {
    .hero-section__eyebrow {
      grid-column-end: -2;
      grid-column-start: 2;
    }
  }
  .hero-section__eyebrow-label {
    margin-right: var(--hds-space-core-25);
    color: var(--hds-color-core-neutral-990);
    font-weight: var(--hds-font-weight-bold);
    font-size: var(--hds-font-text-xs-size);
  }
  :where(:lang(ja)) .hero-section__eyebrow-label {
    font-weight: 600;
    font-variation-settings: "wght" 400;
  }
  .hero-section__eyebrow-value {
    color: var(--hds-color-core-neutral-990);
    font-weight: var(--hds-font-weight-normal);
    -webkit-mask-image: linear-gradient(180deg, #000, #fff 20%, #fff 80%, #000);
    mask-image: linear-gradient(180deg, #000, #fff 20%, #fff 80%, #000);
    font-size: var(--hds-font-text-xs-size);
  }
  @media (min-width: 940px) {
    .hero-section__eyebrow-value {
      color: var(--hds-color-core-neutral-500);
    }
  }
  h1.hero-section__title {
    --lang-font-max: var(--hero-font-lang-medium);
    --lang-font-min: var(--hero-font-lang-min);
    --lang-font-flex: 6lvh;
    position: relative;
    font-family: var(--hds-font-family);
    font-size: max(
      min(var(--lang-font-flex), var(--lang-font-max)),
      var(--lang-font-min)
    );
    grid-column-end: -1;
    grid-column-start: 1;
    grid-row-start: 2;
    line-height: 1.15;
    max-width: 36ch;
    color: #81b81a;
    text-wrap: pretty;
  }
  h1.hero-section__title .hero-section__title-main {
    font-style: normal;
    color: var(--hds-color-heading-solid);
  }
  @media (max-width: 639px) {
    h1.hero-section__title {
      line-height: 1.03;
    }
    h1.hero-section__title .hero-section__title-copy {
      display: none;
    }
  }
  @media (min-width: 940px) {
    h1.hero-section__title {
      grid-column-end: -2;
      grid-column-start: 2;
    }
  }
  @media (color-gamut: p3) {
    h1.hero-section__title {
      color: #ddd600;
    }
  }
  h1.hero-section__title {
    @-moz-document url-prefix() {
      color: #ddd600;
    }
  }
  @supports (-webkit-touch-callout: none) {
    h1.hero-section__title {
      color: #c8c33b;
    }
  }
  h1.hero-section__title--foreground {
    position: relative;
    z-index: 2;
    mix-blend-mode: hard-light;
    color: rgba(0, 14, 255, 0.5);
  }
  h1.hero-section__title--foreground .hero-section__title-main {
    color: #2d2564;
  }
  .hero-section__actions {
    position: relative;
    z-index: 2;
    grid-column-end: -1;
    grid-column-start: 1;
  }
  @media (max-width: 639px) {
    .hero-section__actions {
      margin-top: var(--hds-space-core-100);
    }
  }
  @media (min-width: 940px) {
    .hero-section__actions {
      grid-column-end: -2;
      grid-column-start: 2;
    }
  }
  .hero-section__title-main {
    color: var(--hds-color-core-neutral-900);
    font-family: var(--hds-font-family);
    font-style: normal;
  }
  .hero-section__background {
    inset: calc(-1 * var(--navigation-height)) 0 0 0;
    pointer-events: none;
    z-index: 1;
  }
  :lang(en) .hero-section__title {
    --lang-font-max: var(--hero-font-lang-large);
    max-width: 32ch;
  }
  :lang(es) .hero-section__title {
    max-width: 35ch;
  }
  :lang(fr) .hero-section__title {
    --lang-font-max: var(--hero-font-lang-small);
    max-width: 42ch;
  }
  :lang(jp) .hero-section__title,
  :lang(th) .hero-section__title {
    --lang-font-max: var(--hero-font-lang-large);
  }
  :lang(th) .hero-section__title {
    line-height: 1.2;
  }
  :lang(zh) .hero-section__title {
    --lang-font-max: var(--hero-font-lang-large);
  }
}
.hero-section__button--google {
  background-color: #635bff;
  color: #ffffff;
}
.hero-section__button--google svg {
  fill: #ffffff;
}
@media (min-resolution: 2x) {
  .hero-section__button--google svg {
    transform: translateY(1px);
  }
}
.hero-section__eyebrow-value {
  display: inline-block;
  position: relative;
  min-width: 12ch;
}
.hero-section__eyebrow-value
  .hero-section__eyebrow-value__content-incoming
  span,
.hero-section__eyebrow-value
  .hero-section__eyebrow-value__content-outgoing
  span {
  display: inline-block;
}
.hero-section__eyebrow-value .hero-section__eyebrow-value__content-incoming {
  position: absolute;
  left: 0;
}
.hero-section__eyebrow-value
  .hero-section__eyebrow-value__content-incoming--higher {
  top: 100%;
}
.hero-section__eyebrow-value
  .hero-section__eyebrow-value__content-incoming--lower {
  bottom: 100%;
}
:is(
    :lang(en),
    :lang(pt),
    :lang(ja),
    :lang(it),
    :lang(th),
    :lang(zh),
    :lang(es-MX)
  )
  .hero-section__eyebrow-value__percent-char {
  margin-left: 0.125ch;
}
@layer app {
  .logo-carousel {
    position: relative;
    width: 100%;
    border-block-start: 1px solid var(--hds-color-surface-border-quiet);
    border-block-end: 1px solid var(--hds-color-surface-border-quiet);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  .logo-carousel__marquee-container {
    display: flex;
    overflow: hidden;
    cursor: var(--logo-carousel-cursor, grab);
  }
  .logo-carousel__marquee-container .hds-link {
    cursor: var(--logo-carousel-cursor, pointer);
  }
  .logo-carousel__marquee-container--centered {
    justify-content: center;
    cursor: auto;
  }
  .logo-carousel__marquee-container--centered .hds-link {
    cursor: pointer;
  }
  .logo-carousel__marquee {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    height: var(--hds-space-core-800);
  }
  @media (min-width: 940px) {
    .logo-carousel__marquee {
      height: var(--hds-space-core-900);
    }
  }
  .logo-carousel__item {
    flex-shrink: 0;
    width: 172px;
    height: var(--hds-space-core-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s linear;
  }
  .logo-carousel__item path {
    transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .hero-logo-section {
    --section-container-padding-inline: 0;
    --section-container-pbs: 0;
    --section-container-pbe: 0;
    z-index: 0;
  }
  .hero-logo-section .logo-carousel {
    border-block-end: none;
  }
}
.bento-dialog-layout {
  position: relative;
}
.bento-dialog-layout__header {
  display: grid;
  grid-template-columns: repeat(var(--bento-dialog-columns), minmax(0, 1fr));
  gap: var(--hds-space-core-200);
}
.bento-dialog-layout__intro {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  grid-column: span 5;
}
@media (min-width: 640px) {
  .bento-dialog-layout__intro {
    grid-column: span 7;
  }
}
.bento-dialog-layout__list {
  grid-column: span 4;
  width: 100%;
  margin-block-start: var(--hds-space-core-250);
}
@media (min-width: 640px) {
  .bento-dialog-layout__list {
    grid-column: span 8;
  }
}
@media (min-width: 940px) {
  .bento-dialog-layout__list {
    margin-block-start: 13px;
    grid-column: 8 / span 5;
  }
}
.bento-dialog-layout__divider {
  width: 100%;
  height: 1px;
  border: none;
  background-color: var(--hds-color-surface-border-quiet);
}
.bento-dialog-layout__disclaimer {
  color: var(--hds-color-text-subdued);
}
.bento-dialog-intro {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-300);
}
@media (min-width: 640px) {
  .bento-dialog-intro {
    gap: var(--hds-space-core-400);
  }
}
.bento-dialog-intro__copy {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .bento-dialog-intro__copy {
    padding-inline-end: var(--hds-space-core-400);
  }
}
@media (min-width: 940px) {
  .bento-dialog-intro__copy {
    padding-inline-end: var(--hds-space-core-0);
  }
}
.bento-dialog-intro__title {
  max-width: 24ch;
}
@media (min-width: 640px) {
  .bento-dialog-intro__title {
    max-width: 100%;
  }
}
@media (min-width: 940px) {
  .bento-dialog-intro__title {
    padding-inline-end: var(--hds-space-core-500);
  }
}
.bento-dialog-intro__body {
  color: var(--hds-color-text-soft);
}
@media (min-width: 940px) {
  .bento-dialog-intro__body {
    padding-inline-end: var(--hds-space-core-900);
  }
}
.bento-dialog-list {
  display: flex;
  flex-direction: column;
  row-gap: var(--hds-space-core-100);
  column-gap: var(--hds-space-core-200);
}
@media (min-width: 640px) {
  .bento-dialog-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 940px) {
  .bento-dialog-list {
    display: flex;
    flex-direction: column;
  }
}
.bento-dialog-list__item {
  display: flex;
  gap: var(--hds-space-core-100);
  text-wrap: pretty;
}
.bento-dialog-list__item-icon {
  position: relative;
  top: 3.5px;
  width: 16px;
  height: 16px;
}
.bento-dialog-list__item-text {
  color: var(--hds-color-text-soft);
}
.bento-dialog-details {
  display: grid;
  grid-template-columns: repeat(var(--bento-dialog-columns), minmax(0, 1fr));
  column-gap: var(--hds-space-core-200);
  row-gap: var(--hds-space-core-500);
}
@media (min-width: 640px) {
  .bento-dialog-details {
    row-gap: var(--hds-space-core-200);
  }
}
.bento-dialog-detail {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
}
.bento-dialog-detail__icon .homepage__icon {
  border-color: var(--accent-border-color);
}
.bento-dialog-detail__text {
  color: var(--hds-color-text-soft);
  text-wrap: pretty;
  padding-inline-end: var(--hds-space-core-200);
}
.bento-dialog-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hds-space-core-500);
}
.bento-dialog-footer .hds-button {
  margin: 0 auto;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-400);
  align-items: center;
}
.testimonial-card__headshot {
  width: 48px;
  height: 48px;
}
.testimonial-card__quote {
  font-size: var(--hds-font-quote-md-size);
  font-weight: var(--hds-font-quote-md-weight);
  line-height: var(--hds-font-quote-md-lineHeight);
  letter-spacing: var(--hds-font-quote-md-letterSpacing);
  color: var(--hds-color-heading-subdued);
  max-width: 54ch;
  padding-inline: var(--hds-space-core-200);
  text-align: center;
  text-wrap: pretty;
}
html[lang^="es"] .testimonial-card__quote,
html[lang^="fr"] .testimonial-card__quote {
  quotes: "« " " »" "“" "”";
}
:where(:lang(zh)) .testimonial-card__quote {
  font-weight: 400;
}
.testimonial-card__author {
  font-size: var(--hds-font-quoteAttribution-md-size);
  font-weight: var(--hds-font-weight-bold);
  line-height: var(--hds-font-quoteAttribution-md-lineHeight);
  letter-spacing: var(--hds-font-quoteAttribution-md-letterSpacing);
  color: var(--hds-color-text-solid);
  text-align: center;
  padding-inline: var(--hds-space-core-200);
}
:where(:lang(zh)) .testimonial-card__author {
  font-weight: 400;
}
.testimonial-card__author-role {
  color: var(--hds-color-text-soft);
  font-weight: var(--hds-font-quoteAttribution-md-weight);
}
:where(:lang(zh)) .testimonial-card__author-role {
  font-weight: 400;
}
.bento-overlay-gradient {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  isolation: isolate;
  left: 0;
  top: 0;
  align-items: flex-end;
  animation-name: bento-overlay-gradient-opacity-animation;
  animation-duration: 0.8s;
  animation-direction: alternate;
  pointer-events: none;
}
@keyframes bento-overlay-gradient-opacity-animation {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hds-dialog__overlay {
  --bento-left-blob: var(--hds-color-core-brand-500);
  --bento-right-blob: #fc5;
}
@media (max-width: 639px) {
  .bento-overlay-gradient {
    display: none;
  }
}
.bento-dialog-graphic .bento-overlay-gradient {
  position: absolute;
}
@media (max-width: 639px) {
  .bento-dialog-graphics--has-multiple
    :is(.bento-dialog-graphic .bento-overlay-gradient) {
    display: none;
  }
}
.bento-overlay-payments {
  --bento-right-blob: #ff6118;
}
.bento-overlay-billing {
  --bento-right-blob: #fc5;
}
.bento-overlay-agentic-commerce {
  --bento-right-blob: #ff6118;
}
.bento-overlay-crypto,
.bento-overlay-issuing {
  --bento-right-blob: #f363f3;
}
.bento-overlay-connect {
  --bento-right-blob: #ea2261;
}
.bento-overlay-gradient__orb {
  filter: blur(10px);
  position: absolute;
  will-change: transform;
}
.bento-overlay-gradient__orb1 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--bento-left-blob) 23.56%,
    transparent 100%
  );
  transform: rotate(25.862deg) translate(31%, 75%);
  width: 70%;
  height: auto;
  aspect-ratio: 1238/2077;
}
.bento-overlay-gradient__orb2 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--bento-left-blob) 0,
    transparent 100%
  );
  transform: rotate(25.862deg) translate(44%, 71%);
  width: 45%;
  height: auto;
  aspect-ratio: 926/1068;
}
.bento-overlay-gradient__orb3 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--bento-right-blob) 27.4%,
    transparent 100%
  );
  transform: rotate(27.305deg) translate(40%, 56%);
  right: 0;
  width: 60%;
  height: auto;
  aspect-ratio: 1141.3/971.191;
}
.bento-overlay-gradient__orb4 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--bento-right-blob) 0,
    transparent 100%
  );
  right: 0;
  transform: rotate(36.009deg) translate(39%, 34%);
  width: 45%;
  height: auto;
  aspect-ratio: 771/338;
}
@media (max-width: 939px) {
  .bento-overlay-gradient__orb4 {
    transform: rotate(36.009deg) translate(39%, 4%);
  }
  .bento-overlay-gradient__orb3 {
    transform: rotate(27.305deg) translate(40%, 26%);
  }
  .bento-overlay-gradient__orb2 {
    transform: rotate(25.862deg) translate(34%, 61%);
  }
  .bento-overlay-gradient__orb1 {
    transform: rotate(25.862deg) translate(21%, 65%);
  }
}
.bento-dialog-graphics {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: repeat(var(--total-rows, 1), 1fr);
  gap: var(--hds-space-core-200);
}
.bento-dialog-graphics.bento-dialog-graphics--payments {
  --bento-right-blob: #ff6118;
}
.bento-dialog-graphics.bento-dialog-graphics--billing {
  --bento-right-blob: #fc5;
}
.bento-dialog-graphics.bento-dialog-graphics--agentic-commerce {
  --bento-right-blob: #ff6118;
}
.bento-dialog-graphics.bento-dialog-graphics--crypto,
.bento-dialog-graphics.bento-dialog-graphics--issuing {
  --bento-right-blob: #f363f3;
}
.bento-dialog-graphics.bento-dialog-graphics--connect {
  --bento-right-blob: #ea2261;
}
.bento-dialog-graphics--single-column {
  grid-template-columns: 1fr;
}
.bento-dialog-graphics__item--left {
  grid-column: 1;
  grid-row: span var(--row-span, 1);
}
.bento-dialog-graphics__item--right {
  grid-column: 2;
  grid-row: span var(--row-span, 1);
}
.bento-dialog-graphics__item {
  display: flex;
  flex-direction: column;
}
.bento-dialog-graphics__item-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.bento-dialog-graphics__item--left .bento-dialog-graphic {
  aspect-ratio: 1;
  flex: 1;
  width: 100%;
  height: 100%;
}
.bento-dialog-graphics--short
  .bento-dialog-graphics__item--left
  .bento-dialog-graphic {
  aspect-ratio: 1.59;
}
.bento-dialog-graphics--single-column
  .bento-dialog-graphics__item--left
  .bento-dialog-graphic {
  aspect-ratio: 354/540;
}
@media (min-width: 640px) {
  .bento-dialog-graphics--single-column
    .bento-dialog-graphics__item--left
    .bento-dialog-graphic {
    aspect-ratio: 16/9;
  }
}
.bento-dialog-graphic {
  position: relative;
  flex: 1;
  height: 100%;
  display: grid;
  place-items: center;
  padding: var(--hds-space-core-300);
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-surface-bg-subdued);
  overflow: hidden;
}
.bento-dialog-graphics--has-multiple .bento-dialog-graphic {
  z-index: 2;
  background-color: transparent;
}
@media (min-width: 640px) {
  .bento-dialog-graphics--has-multiple .bento-dialog-graphic {
    background-color: var(--hds-color-surface-bg-subdued);
  }
}
.bento-dialog-graphics-container {
  position: relative;
}
.bento-dialog-graphics-container.bento-dialog-graphics-container--payments {
  --bento-right-blob: #ff6118;
}
.bento-dialog-graphics-container.bento-dialog-graphics-container--billing {
  --bento-right-blob: #fc5;
}
.bento-dialog-graphics-container.bento-dialog-graphics-container--agentic-commerce {
  --bento-right-blob: #ff6118;
}
.bento-dialog-graphics-container.bento-dialog-graphics-container--crypto,
.bento-dialog-graphics-container.bento-dialog-graphics-container--issuing {
  --bento-right-blob: #f363f3;
}
.bento-dialog-graphics-container.bento-dialog-graphics-container--connect {
  --bento-right-blob: #ea2261;
}
.bento-dialog-graphics {
  z-index: 1;
  position: relative;
}
.bento-dialog-graphics__gradients {
  position: absolute;
  inset: 0;
  bottom: var(--hds-space-core-200);
  z-index: 0;
  background-color: var(--hds-color-surface-bg-subdued);
  border-radius: var(--hds-space-core-radius-md);
}
@media (min-width: 640px) {
  .bento-dialog-graphics__gradients {
    display: none;
  }
}
.bento-dialog-graphic--mobile-gradient-container {
  --bento-dialog-graphic-progress: clamp(
    -1,
    var(--bento-dialog-graphic-index) - var(--carousel-scroll-progress),
    1
  );
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--hds-space-core-radius-md);
  opacity: calc(
    1 -
      max(
        (var(--bento-dialog-graphic-progress)),
        -1 * (var(--bento-dialog-graphic-progress))
      )
  );
  transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.bento-dialog-graphic--mobile-gradient-container.bento-dialog-graphic--mobile-gradient-container--index-0
  .bento-dialog-graphic--mobile-gradient {
  position: absolute;
  width: 662.71px;
  height: 1111.84px;
  left: -276.32px;
  top: 85.97px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--bento-left-blob) 23.56%,
    rgba(83, 58, 253, 0) 100%
  );
  filter: blur(12.1969px);
  transform: matrix(0.99, -0.11, -0.11, -0.99, 0, 0);
  will-change: transform;
}
.bento-dialog-graphic--mobile-gradient-container.bento-dialog-graphic--mobile-gradient-container--index-1
  .bento-dialog-graphic--mobile-gradient {
  position: absolute;
  width: 928.02px;
  height: 789.7px;
  left: -87.3px;
  top: 217px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    color-mix(in srgb, var(--bento-right-blob) 80%, transparent) 0,
    rgba(243, 99, 243, 0) 100%
  );
  filter: blur(12px);
  transform: matrix(-0.21, 0.98, 0.98, 0.21, 0, 0);
  will-change: transform;
}
.bento-dialog-graphic--mobile-gradient-container.bento-dialog-graphic--mobile-gradient-container--index-2
  .bento-dialog-graphic--mobile-gradient {
  position: absolute;
  width: 770.02px;
  height: 1348.4px;
  left: -346.98px;
  top: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    color-mix(in srgb, var(--bento-left-blob) 80%, transparent) 0,
    rgba(83, 58, 253, 0) 100%
  );
  filter: blur(12px);
  transform: rotate(25.86deg);
  will-change: transform;
}
.bento-dialog-graphics-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-block-start: var(--hds-space-core-200);
}
@media (min-width: 640px) {
  .bento-dialog-graphics-pagination {
    display: none;
  }
}
.bento-dialog-graphics-pagination__segment {
  height: 2px;
  border-radius: 1px;
  background: var(--hds-color-util-brand-300);
  width: 10px;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
  will-change: width, background-color;
}
.bento-dialog-graphics-pagination__segment--active {
  width: 30px;
  background: var(--hds-color-util-brand-600);
}
@media (max-width: 639px) {
  .bento-dialog-graphics--has-multiple {
    display: flex;
    grid-template-columns: unset;
    grid-template-rows: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bento-dialog-graphics--has-multiple::-webkit-scrollbar {
    display: none;
  }
  .bento-dialog-graphics--has-multiple .bento-dialog-graphics__item {
    grid-column: unset;
    grid-row: unset;
    display: block;
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
  }
  .bento-dialog-graphics--has-multiple .bento-dialog-graphic {
    aspect-ratio: 354/432;
  }
}
.bento-dialog-cards {
  display: grid;
  gap: var(--hds-space-core-400);
}
.bento-dialog-cards__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--hds-space-core-700);
}
@media (min-width: 640px) {
  .bento-dialog-cards__grid {
    display: grid;
    grid-template-columns: repeat(var(--bento-dialog-columns), minmax(0, 1fr));
    column-gap: var(--hds-space-core-200);
    row-gap: var(--hds-space-core-400);
  }
}
@media (min-width: 940px) {
  .bento-dialog-cards__grid {
    row-gap: var(--hds-space-core-200);
  }
}
.bento-dialog-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  border-radius: var(--hds-space-core-radius-md);
  justify-content: flex-start;
  height: 100%;
}
@media (min-width: 640px) {
  .bento-dialog-card {
    grid-column: span 4;
  }
}
.bento-dialog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  padding-inline-end: var(--hds-space-core-200);
  text-wrap: pretty;
}
.bento-dialog-card__text {
  color: var(--hds-color-text-soft);
}
.bento-dialog-card__graphic {
  width: 100%;
  position: relative;
  aspect-ratio: 0.93;
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-surface-bg-subdued);
  overflow: hidden;
  border: 1px solid var(--hds-color-util-neutral-25);
}
.bento-dialog-card__graphic-wrap {
  position: absolute;
  width: var(--bdcg-width);
  height: auto;
}
.bento-dialog-card__graphic-wrap--x-left {
  left: var(--bdcg-offset-x);
}
.bento-dialog-card__graphic-wrap--x-center {
  left: 50%;
  transform: translateX(calc(-50% + var(--bdcg-offset-x)));
}
.bento-dialog-card__graphic-wrap--x-right {
  right: var(--bdcg-offset-x);
}
.bento-dialog-card__graphic-wrap--y-top {
  top: var(--bdcg-offset-y);
}
.bento-dialog-card__graphic-wrap--y-center {
  top: 50%;
  transform: translateY(calc(-50% + var(--bdcg-offset-y)));
}
.bento-dialog-card__graphic-wrap--y-bottom {
  bottom: var(--bdcg-offset-y);
}
.bento-dialog-card__graphic-wrap--x-center.bento-dialog-card__graphic-wrap--y-center {
  transform: translate(
    calc(-50% + var(--bdcg-offset-x)),
    calc(-50% + var(--bdcg-offset-y))
  );
}
.agentic-commerce-protocol-graphic__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-protocol-graphic__layout {
  position: relative;
  width: 362px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.agentic-commerce-protocol-graphic__user-bubble {
  padding: 12px 20px;
  gap: 12px;
  width: 250px;
  background: var(--hds-color-util-brand-600);
  border-radius: var(--hds-space-core-radius-md);
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.2;
  color: var(--hds-color-util-neutral-0);
  margin-block-end: 16px;
  margin-inline-start: auto;
  margin-inline-end: 0;
}
.agentic-commerce-protocol-graphic__agent-response {
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-protocol-graphic__cart {
  background: var(--hds-color-util-neutral-0);
  border: 1px solid var(--hds-canary-ui-mini-stroke);
  border-radius: var(--hds-space-core-radius-md);
}
.agentic-commerce-protocol-graphic__cart-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.agentic-commerce-protocol-graphic__product {
  padding: 20px;
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
}
.agentic-commerce-protocol-graphic__product-image {
  position: relative;
  width: 86px;
  height: 86px;
  background: var(--hds-color-util-neutral-50);
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.agentic-commerce-protocol-graphic__product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto min-content;
  flex: 1;
  position: relative;
}
.agentic-commerce-protocol-graphic__product-name {
  grid-column: 1/2;
  grid-row: 1/2;
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-990);
  padding-inline-end: 8px;
  text-wrap: balance;
}
.agentic-commerce-protocol-graphic__product-price {
  grid-row: 2/3;
  font-weight: var(--hds-font-weight-bold);
  color: var(--hds-color-util-neutral-900);
}
.agentic-commerce-protocol-graphic__product-price,
.agentic-commerce-protocol-graphic__vendor-name {
  grid-column: 1/2;
  align-self: end;
  font-family: var(--hds-font-family);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.agentic-commerce-protocol-graphic__vendor-name {
  grid-row: 3/4;
  font-weight: var(--hds-font-weight-normal);
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-protocol-graphic__quantity-control {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 12px;
  gap: 14px;
  height: 26px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: 100px;
  align-self: start;
  justify-self: end;
}
.agentic-commerce-protocol-graphic__quantity-button {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-protocol-graphic__quantity-value {
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-700);
  min-width: 8px;
  text-align: center;
}
.agentic-commerce-protocol-graphic__icon {
  flex-shrink: 0;
}
.agentic-commerce-protocol-graphic__icon--chevron {
  width: 10px;
  height: 10px;
  border-radius: 1px;
}
.agentic-commerce-protocol-graphic__divider {
  width: 100%;
  height: 1px;
  background: var(--hds-color-util-neutral-50);
}
.agentic-commerce-protocol-graphic__total-cart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}
.agentic-commerce-protocol-graphic__total {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.agentic-commerce-protocol-graphic__total-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-protocol-graphic__total-label svg {
  width: 10px;
  height: 10px;
}
.agentic-commerce-protocol-graphic__total-amount {
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  text-align: right;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-protocol-graphic__talking-button {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(83, 58, 253, 0.1);
  border-radius: 4px;
}
.agentic-commerce-protocol-graphic__network-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.agentic-commerce-protocol-graphic__talking-text {
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.3;
  color: var(--hds-color-util-brand-600);
}
.shared-payment-tokens-graphic__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shared-payment-tokens-graphic__editor {
  width: 496px;
  height: 492px;
  background: #101d51;
  border-radius: var(--hds-space-core-radius-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
}
.shared-payment-tokens-graphic__code {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--hds-font-family-code);
  font-size: 13px;
  line-height: 1.6;
}
.shared-payment-tokens-graphic__line-numbers {
  color: var(--hds-color-util-brand-300);
  text-align: right;
  white-space: pre;
  flex-shrink: 0;
  min-width: 22px;
}
.shared-payment-tokens-graphic__content {
  color: var(--hds-color-util-neutral-0);
  white-space: pre;
  flex: 1;
  overflow-x: auto;
}
.agent-toolkit-graphic__layout {
  width: 362px;
  height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-toolkit-graphic__header {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 6px;
}
.agent-toolkit-graphic__logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.agent-toolkit-graphic__logo svg {
  width: 100%;
  height: 100%;
}
.agent-toolkit-graphic__title {
  font-family: var(--hds-font-family);
  font-size: 16px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  color: var(--hds-color-util-brand-600);
}
.agent-toolkit-graphic__flight-card {
  border: 1px solid var(--hds-canary-ui-mini-stroke);
  background: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-toolkit-graphic__flight-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.agent-toolkit-graphic__airline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.agent-toolkit-graphic__airline-logo {
  width: 22px;
  height: 22px;
  background: var(--hds-color-util-neutral-25);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-toolkit-graphic__airline-logo svg {
  width: 13px;
  height: 13px;
}
.agent-toolkit-graphic__airline-name {
  color: var(--hds-color-util-neutral-990);
}
.agent-toolkit-graphic__airline-name,
.agent-toolkit-graphic__price {
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.agent-toolkit-graphic__price {
  color: var(--hds-color-util-brand-600);
}
.agent-toolkit-graphic__flight-details {
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  padding: 18px 16px;
  gap: 16px;
}
.agent-toolkit-graphic__flight-leg {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-toolkit-graphic__route {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.agent-toolkit-graphic__airport-code {
  font-family: var(--hds-font-family);
  font-size: 13px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1;
  color: var(--hds-color-util-neutral-500);
}
.agent-toolkit-graphic__plane-icon {
  width: 11px;
  height: 10px;
  flex-shrink: 0;
}
.agent-toolkit-graphic__plane-icon svg {
  width: 100%;
  height: 100%;
}
.agent-toolkit-graphic__times {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.agent-toolkit-graphic__time {
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  color: var(--hds-color-util-neutral-990);
}
.agent-toolkit-graphic__time-separator {
  width: 4px;
  height: 7px;
  background: var(--hds-color-util-neutral-500);
  border-radius: 1px;
  flex-shrink: 0;
}
.agent-toolkit-graphic__divider {
  width: 1px;
  height: calc(100% + 18px * 2);
  margin-block-start: -18px;
  background: var(--hds-color-util-neutral-50);
}
.agent-toolkit-graphic__purchase-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 9px;
  height: 39px;
  background: var(--hds-color-util-brand-50);
  border-radius: var(--hds-space-core-radius-md);
}
.agent-toolkit-graphic__cart-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.agent-toolkit-graphic__purchase-text {
  font-family: var(--hds-font-family);
  font-size: 15px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  color: var(--hds-color-util-brand-600);
}
.agent-toolkit-graphic__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.agent-toolkit-graphic__user-bubble {
  margin-inline-start: auto;
  margin-inline-end: 0;
  background: var(--hds-color-util-brand-600);
  border-radius: var(--hds-space-core-radius-md);
  color: var(--hds-color-util-neutral-0);
}
.agent-toolkit-graphic__agent-bubble,
.agent-toolkit-graphic__user-bubble {
  padding: 14px;
  max-width: 264px;
  font-family: var(--hds-font-family);
  font-size: 14px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.46;
}
.agent-toolkit-graphic__agent-bubble {
  align-self: flex-start;
  display: flex;
  background: var(--hds-color-util-neutral-0);
  border: 1px solid var(--hds-canary-ui-mini-stroke);
  border-radius: var(--hds-space-core-radius-md);
  color: var(--hds-color-util-neutral-700);
}
.browser-graphic {
  --browser-graphic-desktop-width: 0;
  --browser-graphic-desktop-height: 0;
  --browser-graphic-mobile-width: 0;
  --browser-graphic-mobile-height: 0;
  --browser-graphic-dots-color: color-mix(
    in srgb,
    var(--hds-color-util-neutral-200) 50%,
    transparent
  );
  position: relative;
  width: var(--browser-graphic-mobile-width);
  height: var(--browser-graphic-mobile-height);
}
@media (min-width: 640px) {
  .browser-graphic {
    width: var(--browser-graphic-desktop-width);
    height: var(--browser-graphic-desktop-height);
  }
}
.browser-graphic__window {
  position: absolute;
  inset: 0;
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  background: rgba(248, 250, 253, 0.45);
  box-shadow: 0 15px 35px 0 hsla(0, 0%, 9%, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.browser-graphic__window-top-bar {
  height: 35px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  padding: 2px 20px;
  gap: 14px;
  align-items: center;
  align-content: center;
}
.browser-graphic__url-box {
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(262px, 100%);
  height: 20px;
  padding: 2px 8px;
  align-items: center;
  border-radius: 16px;
  outline: 1px solid var(--hds-canary-ui-stroke);
  background: hsla(0, 0%, 100%, 0.38);
}
.browser-graphic__url-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-top: 1px;
  color: var(--hds-color-util-neutral-600);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 9px;
}
.browser-graphic__url-box-text {
  transform: translateY(-1px);
  height: 12px;
}
.browser-graphic__page {
  position: absolute;
  inset: 35px 6px 6px 6px;
  border-radius: var(--hds-space-core-radius-md);
  background: var(--hds-color-util-neutral-0);
  box-shadow: 0 3px 6px 0 hsla(0, 0%, 9%, 0.06);
  overflow: hidden;
}
@supports (overflow: clip) {
  .browser-graphic__page {
    overflow: clip;
  }
}
.browser-graphic--on-dark {
  --browser-graphic-dots-color: color-mix(
    in srgb,
    var(--hds-color-util-neutral-0) 50%,
    transparent
  );
}
.agentic-commerce-ai-graphic__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-ai-graphic__container {
  width: 100%;
  height: 100%;
  display: flex;
}
.agentic-commerce-ai-graphic__browser-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__browser-content {
    padding-left: 24px;
  }
}
.agentic-commerce-ai-graphic__logo {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 77px;
  height: 10px;
}
.agentic-commerce-ai-graphic__sidebar {
  width: 130px;
  display: none;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__sidebar {
    display: flex;
  }
}
.agentic-commerce-ai-graphic__new-chat-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 6px;
  gap: 6px;
  height: 22px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: 4px;
  align-self: flex-start;
}
.agentic-commerce-ai-graphic__edit-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.agentic-commerce-ai-graphic__new-chat-text {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.8;
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-ai-graphic__history {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agentic-commerce-ai-graphic__history-label {
  font-family: var(--hds-font-family);
  font-size: 8px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.5;
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-ai-graphic__history-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 16px;
}
.agentic-commerce-ai-graphic__history-item {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.2;
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-ai-graphic__history-item--active {
  color: var(--hds-color-util-neutral-900);
  position: relative;
}
.agentic-commerce-ai-graphic__history-item--active span {
  position: relative;
  z-index: 1;
}
.agentic-commerce-ai-graphic__history-item--active:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -24px;
  width: calc(100% + 30px);
  height: calc(100% + 10px);
  background: var(--hds-color-util-neutral-25);
  z-index: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.agentic-commerce-ai-graphic__divider {
  width: 1px;
  height: 100%;
  background: var(--hds-color-util-neutral-50);
}
@media (max-width: 639px) {
  .agentic-commerce-ai-graphic__divider {
    display: none;
  }
}
.agentic-commerce-ai-graphic__main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 639px) {
  .agentic-commerce-ai-graphic__main {
    padding-top: 14px;
  }
}
.agentic-commerce-ai-graphic__content {
  position: relative;
  flex: 1;
  background: var(--hds-color-util-neutral-0);
  border-radius: 5px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__content {
    gap: 16px;
    padding: 16px 24px;
  }
}
.agentic-commerce-ai-graphic__chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__chat-bubbles {
    gap: 16px;
    min-height: 126px;
  }
}
.agentic-commerce-ai-graphic__user-bubble {
  align-self: flex-end;
  display: flex;
  padding: 7px 8px;
  max-width: 258px;
  background: rgba(40, 99, 177, 0.08);
  border: 1px solid rgba(40, 99, 177, 0.15);
  border-radius: var(--hds-space-core-radius-md);
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  color: #2863b1;
}
html:not(:lang(en)) .agentic-commerce-ai-graphic__user-bubble {
  max-width: none;
  font-size: 9px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__user-bubble {
    max-width: 270px;
    padding: 11px 12px;
  }
  html:not(:lang(en)) .agentic-commerce-ai-graphic__user-bubble {
    max-width: 330px;
    font-size: 11px;
  }
}
.agentic-commerce-ai-graphic__agent-bubble {
  position: relative;
  align-self: flex-start;
  display: flex;
  padding: 7px 8px;
  max-width: 250px;
  min-width: 36px;
  min-height: 30px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  color: var(--hds-color-util-neutral-900);
}
html:not(:lang(en)) .agentic-commerce-ai-graphic__agent-bubble {
  max-width: none;
  font-size: 9px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__agent-bubble {
    max-width: 258px;
    padding: 11px 12px;
  }
  html:not(:lang(en)) .agentic-commerce-ai-graphic__agent-bubble {
    max-width: 360px;
    font-size: 11px;
  }
}
.agentic-commerce-ai-graphic__agent-bubble-dots {
  position: absolute;
  bottom: 13px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.agentic-commerce-ai-graphic__agent-bubble-dot {
  position: relative;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--hds-color-util-neutral-500);
  transform-origin: center;
}
.agentic-commerce-ai-graphic__agent-bubble-text--fallback {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .agentic-commerce-ai-graphic__agent-bubble-text--fallback {
    display: block;
  }
  .agentic-commerce-ai-graphic__agent-bubble-dots {
    display: none;
  }
}
.agentic-commerce-ai-graphic__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__products {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.agentic-commerce-ai-graphic__product-card {
  position: relative;
  display: flex;
  gap: 12px;
  flex-direction: column;
  border-radius: var(--hds-space-core-radius-md);
  overflow: hidden;
}
@media (max-width: 639px) {
  .agentic-commerce-ai-graphic__product-card:last-child {
    display: none;
  }
}
.agentic-commerce-ai-graphic__product-border,
.agentic-commerce-ai-graphic__product-gradient {
  position: absolute;
  border-radius: var(--hds-space-core-radius-md);
}
.agentic-commerce-ai-graphic__product-border {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--hds-color-util-neutral-50);
}
.agentic-commerce-ai-graphic__product-gradient {
  top: -42px;
  left: -72px;
  width: 300px;
  height: 300px;
  background: conic-gradient(
    from 0deg,
    #0066cc 0,
    #fb76fa 33%,
    #ffcf5e 66%,
    #0066cc 100%
  );
  z-index: 1;
}
.agentic-commerce-ai-graphic__product-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1px;
  z-index: 2;
}
@media (max-width: 639px) {
  .agentic-commerce-ai-graphic__product-content {
    transform: translateZ(0);
  }
}
.agentic-commerce-ai-graphic__product-inner {
  width: 100%;
  height: 100%;
  background: var(--hds-color-util-neutral-0);
  border-radius: 5px;
}
.agentic-commerce-ai-graphic__product-image {
  aspect-ratio: 102/84;
  width: 100%;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ecf0f4;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__product-image {
    padding: 16px 28px;
    aspect-ratio: 158/135;
  }
}
.agentic-commerce-ai-graphic__product-image-picture {
  aspect-ratio: 1;
  width: 100%;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__product-image-picture {
    width: 100px;
  }
}
.agentic-commerce-ai-graphic__product-details {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 12px;
  flex: 1;
}
.agentic-commerce-ai-graphic__product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__product-info {
    gap: 8px;
  }
}
.agentic-commerce-ai-graphic__product-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agentic-commerce-ai-graphic__product-description,
.agentic-commerce-ai-graphic__product-price,
.agentic-commerce-ai-graphic__product-variant,
.agentic-commerce-ai-graphic__vendor-name {
  font-family: var(--hds-font-family);
  font-size: 9px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1;
  color: var(--hds-color-util-neutral-990);
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__product-description,
  .agentic-commerce-ai-graphic__product-price,
  .agentic-commerce-ai-graphic__product-variant,
  .agentic-commerce-ai-graphic__vendor-name {
    font-size: 10px;
  }
}
.agentic-commerce-ai-graphic__product-variant {
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-ai-graphic__product-price {
  font-weight: var(--hds-font-weight-bold);
}
.agentic-commerce-ai-graphic__vendor-name {
  line-height: 1.4;
  color: var(--hds-color-util-neutral-700);
}
.agentic-commerce-ai-graphic__vendor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.agentic-commerce-ai-graphic__vendor-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-ai-graphic__input-container {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  width: calc(100% - 32px);
  background: var(--hds-color-util-neutral-0);
  border: 1px solid var(--hds-color-util-neutral-50);
  box-shadow:
    0 6px 12px -2px rgba(50, 50, 93, 0.08),
    0 3px 7px -3px rgba(0, 0, 0, 0.04);
  border-radius: var(--hds-space-core-radius-md);
  padding: 8px 12px;
  flex-shrink: 0;
  margin-top: 12px;
}
@media (min-width: 640px) {
  .agentic-commerce-ai-graphic__input-container {
    bottom: 34px;
    left: 24px;
    width: calc(100% - 48px);
  }
}
.agentic-commerce-ai-graphic__input-text {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-ai-graphic__input-text-value {
  color: var(--hds-color-util-neutral-900);
}
.agentic-commerce-ai-graphic__send-icon {
  width: 12px;
  height: 11px;
  border-radius: 16px;
  flex-shrink: 0;
}
.agentic-commerce-checkout-graphic__cart {
  width: 320px;
  height: 472px;
  padding: 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agentic-commerce-checkout-graphic__vendor-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.agentic-commerce-checkout-graphic__vendor-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.agentic-commerce-checkout-graphic__vendor-name {
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.3;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--hds-color-util-neutral-25);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
  padding: 10px;
}
.agentic-commerce-checkout-graphic__product-item {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 72px;
}
.agentic-commerce-checkout-graphic__product-image {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--hds-space-core-radius-md);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-checkout-graphic__product-border,
.agentic-commerce-checkout-graphic__product-gradient {
  position: absolute;
  border-radius: 5px;
}
.agentic-commerce-checkout-graphic__product-border {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--hds-color-util-neutral-50);
}
.agentic-commerce-checkout-graphic__product-gradient {
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: conic-gradient(
    from 0deg,
    #0066cc 0,
    #fb76fa 33%,
    #ffcf5e 66%,
    #0066cc 100%
  );
  z-index: 1;
}
.agentic-commerce-checkout-graphic__product-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1px;
  z-index: 2;
}
@media (max-width: 639px) {
  .agentic-commerce-checkout-graphic__product-image-container {
    transform: translateZ(0);
  }
}
.agentic-commerce-checkout-graphic__product-image-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #ecf0f4;
  border-radius: 5px;
}
.agentic-commerce-checkout-graphic__product-image-picture {
  display: block;
  width: 56px;
  height: 56px;
}
.agentic-commerce-checkout-graphic__product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding-top: 4px;
}
.agentic-commerce-checkout-graphic__product-name {
  color: var(--hds-color-util-neutral-990);
  padding-right: 8px;
}
.agentic-commerce-checkout-graphic__product-name,
.agentic-commerce-checkout-graphic__product-variant {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.agentic-commerce-checkout-graphic__product-variant {
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-checkout-graphic__product-price {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__quantity-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 10px;
  gap: 12px;
  height: 22px;
  background: var(--hds-color-util-neutral-0);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: 30px;
  margin-top: 6px;
}
.agentic-commerce-checkout-graphic__quantity-button {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.agentic-commerce-checkout-graphic__quantity-value {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-900);
}
.agentic-commerce-checkout-graphic__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agentic-commerce-checkout-graphic__option {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 8px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
}
.agentic-commerce-checkout-graphic__option-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agentic-commerce-checkout-graphic__option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.agentic-commerce-checkout-graphic__option-title {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.25;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__option-details {
  font-family: var(--hds-font-family);
  font-size: 8px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1;
  color: var(--hds-color-util-neutral-700);
}
.agentic-commerce-checkout-graphic__option-chevron {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.agentic-commerce-checkout-graphic__total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.agentic-commerce-checkout-graphic__total-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__total-chevron {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}
.agentic-commerce-checkout-graphic__total-chevron svg {
  width: 100%;
  height: 100%;
}
.agentic-commerce-checkout-graphic__total-amount {
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  text-align: right;
  letter-spacing: -0.01em;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__breakdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.agentic-commerce-checkout-graphic__breakdown-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.agentic-commerce-checkout-graphic__breakdown-label {
  color: var(--hds-color-util-neutral-500);
}
.agentic-commerce-checkout-graphic__breakdown-label,
.agentic-commerce-checkout-graphic__breakdown-value {
  font-family: var(--hds-font-family);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.agentic-commerce-checkout-graphic__breakdown-value {
  text-align: right;
  color: var(--hds-color-util-neutral-990);
}
.agentic-commerce-checkout-graphic__buy-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 8px;
  background: rgba(40, 99, 177, 0.1);
  border-radius: var(--hds-space-core-radius-md);
  margin-top: 8px;
}
.agentic-commerce-checkout-graphic__buy-text {
  font-family: var(--hds-font-family);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.25;
  color: #2863b1;
}
.agentic-commerce-bento-modal-graphic {
  width: 100%;
  height: 100%;
  position: relative;
}
.agentic-commerce-bento-modal-graphic__ai-graphic {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 80%;
  top: -12%;
}
@media (min-width: 640px) {
  .agentic-commerce-bento-modal-graphic__ai-graphic {
    width: 72%;
    top: auto;
    bottom: -40px;
    left: 1.6%;
  }
}
.agentic-commerce-bento-modal-graphic__checkout-graphic {
  width: 80%;
  position: absolute;
  bottom: -1%;
  right: 0;
  z-index: 2;
}
@media (min-width: 640px) {
  .agentic-commerce-bento-modal-graphic__checkout-graphic {
    width: 33%;
    bottom: auto;
    top: 3%;
    right: 0;
  }
}
.usage-based-billing-invoice {
  position: relative;
  width: 100%;
}
.usage-based-billing-invoice__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.usage-based-billing-invoice__invoice-card {
  position: relative;
  width: 328px;
  height: 430px;
  padding-block: var(--hds-space-core-300);
  padding-inline: var(--hds-space-core-400);
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  box-shadow:
    0 13.365px 26.73px -12.276px rgba(50, 50, 93, 0.25),
    0 8.019px 16.038px -8.019px rgba(0, 0, 0, 0.1);
}
.usage-based-billing-invoice__invoice-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #06c;
  border-top-left-radius: var(--hds-space-core-radius-md);
  border-top-right-radius: var(--hds-space-core-radius-md);
}
.usage-based-billing-invoice__invoice-card-span {
  display: inline-flex;
}
.usage-based-billing-invoice__invoice-card-span:has(
    + .usage-based-billing-invoice__invoice-card-span
  ):after {
  content: "\00a0";
}
.usage-based-billing-invoice__invoice-card-header {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-250);
}
.usage-based-billing-invoice__invoice-card-heading {
  color: var(--hds-color-util-neutral-990);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.usage-based-billing-invoice__invoice-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hds-space-core-300);
}
.usage-based-billing-invoice__invoice-card-detail {
  color: var(--hds-color-util-neutral-990);
  font-size: 9px;
  line-height: 1.4;
}
.usage-based-billing-invoice__invoice-card-detail-label {
  font-weight: var(--hds-font-weight-bold);
}
.usage-based-billing-invoice__invoice-card-detail-info {
  color: var(--hds-color-util-neutral-500);
}
.usage-based-billing-invoice__invoice-card-table {
  margin-top: 66px;
}
.usage-based-billing-invoice__invoice-card-table-heading {
  color: var(--hds-color-util-neutral-990);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.usage-based-billing-invoice__invoice-card-table-amount:after {
  content: "\00a0";
}
.usage-based-billing-invoice__invoice-card-table-body {
  margin-top: 18px;
}
.usage-based-billing-invoice__invoice-card-table-row {
  display: grid;
  grid-template-columns: 21% repeat(2, 25%) auto;
  gap: var(--hds-space-core-150);
  color: var(--hds-color-util-neutral-990);
  font-size: 9px;
  line-height: 1.5;
}
.usage-based-billing-invoice__invoice-card-table-row--header {
  margin-block-end: var(--hds-space-core-75);
  padding-block-end: var(--hds-space-core-75);
  border-block-end: 1px solid var(--hds-color-util-neutral-50);
  color: var(--hds-color-util-neutral-600);
}
.usage-based-billing-invoice__invoice-card-table-cell-heading {
  font-weight: var(--hds-font-weight-bold);
}
.usage-based-billing-invoice__invoice-card-table-footer {
  display: flex;
  flex-direction: column;
  margin-block-start: var(--hds-space-core-550);
  padding-inline-start: var(--hds-space-core-500);
  color: var(--hds-color-util-neutral-975);
  font-size: 9px;
  line-height: 1.5;
}
.usage-based-billing-invoice__invoice-card-table-footer-amount-due {
  font-weight: var(--hds-font-weight-bold);
}
.usage-based-billing-invoice__invoice-card-table-footer-amount-due,
.usage-based-billing-invoice__invoice-card-table-footer-total {
  padding-block: var(--hds-space-core-50);
  border-block-start: 1px solid var(--hds-color-util-neutral-50);
}
.usage-based-billing-invoice__card-overlay {
  position: absolute;
  top: 146px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-150);
}
.usage-based-billing-invoice__meter-card {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-150);
  width: 276px;
  height: 152px;
  padding: var(--hds-space-core-150);
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  box-shadow:
    0 27px 40.5px -27px rgba(50, 50, 93, 0.25),
    0 16.2px 32.4px -16.2px rgba(0, 0, 0, 0.1);
}
.usage-based-billing-invoice__meter-card-header {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-100);
}
.usage-based-billing-invoice__meter-card-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.usage-based-billing-invoice__meter-card-plan {
  display: flex;
  flex-direction: column;
  margin-block-start: 1px;
}
.usage-based-billing-invoice__meter-card-plan-name {
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.35;
}
.usage-based-billing-invoice__meter-card-plan-description {
  color: var(--hds-color-util-neutral-600);
  font-size: 11px;
  line-height: 1.47;
  letter-spacing: 0.003em;
}
.usage-based-billing-invoice__meter-bar-container {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-100);
}
.usage-based-billing-invoice__meter-bar-label {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-50);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.26;
}
.usage-based-billing-invoice__meter-bar {
  position: relative;
  width: 100%;
  height: 14px;
  background: var(--hds-color-util-neutral-25);
  border-radius: 4px;
  overflow: hidden;
}
.usage-based-billing-invoice__meter-bar-indicator {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 230px;
  height: 10px;
  border-radius: 3px;
  overflow: hidden;
}
.usage-based-billing-invoice__meter-bar-indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 10px;
  background: linear-gradient(90deg, #0066cc 3.13%, #fb76fa 50%, #ffcf5e);
  border-radius: 3px;
}
.usage-based-billing-invoice__meter-card-tokens {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-25);
}
.usage-based-billing-invoice__meter-card-tokens-label {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.3;
}
.usage-based-billing-invoice__meter-card-tokens-value {
  color: var(--hds-color-util-neutral-700);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.26;
}
.usage-based-billing-invoice__chart-card-header {
  display: flex;
  flex-direction: column;
}
.usage-based-billing-invoice__chart-card-label {
  color: var(--hds-color-util-neutral-500);
  font-size: 10px;
  line-height: 1.26;
}
.usage-based-billing-invoice__chart-card-value {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.31;
}
.usage-based-billing-invoice__chart-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 276px;
  height: 200px;
  padding: var(--hds-space-core-150);
  padding-block-end: 18px;
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-canary-ui-stroke);
  box-shadow:
    0 27px 40.5px -27px rgba(50, 50, 93, 0.25),
    0 16.2px 32.4px -16.2px rgba(0, 0, 0, 0.1);
}
.usage-based-billing-invoice__chart-card-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding-inline: 10px;
  gap: 3.2px;
}
.usage-based-billing-invoice__chart-card-bar {
  width: 4px;
  height: 134px;
  background: #06c;
  border-radius: 1px;
  transform-origin: bottom;
}
.usage-based-billing-invoice__line-scene {
  position: absolute;
  top: 72px;
  right: 126px;
}
.usage-based-billing-invoice__line {
  position: relative;
  z-index: 1;
}
.usage-based-billing-invoice__line-cap {
  position: absolute;
  display: grid;
  place-items: center;
  z-index: 2;
}
.usage-based-billing-invoice__line-cap-inner {
  position: relative;
  width: 6px;
  height: 6px;
  background-color: #06c;
  border-radius: 50%;
  border: 1px solid var(--hds-color-util-neutral-0);
  z-index: 1;
}
.usage-based-billing-invoice__line-cap-pulse {
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(153, 102, 255, 0.15);
  border-radius: 50%;
}
.usage-based-billing-invoice__line-cap--start {
  bottom: -3px;
  right: -2px;
}
.usage-based-billing-invoice__line-cap--end {
  top: -3px;
  left: -3px;
}
.usage-based-billing-invoice__line-arrow {
  position: absolute;
  top: 1px;
  left: -1px;
  width: 6px;
  height: 6px;
  display: grid;
  place-items: center;
  offset: path("M96.09 91.345V8.5a8 8 0 0 0-8-8H0");
  offset-distance: 5px;
  transform: rotate(-29deg);
  transform-origin: center center;
}
.usage-based-billing-invoice__line-arrow--static {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .usage-based-billing-invoice__line-cap-pulse:nth-of-type(2) {
    width: 16px;
    height: 16px;
  }
  .usage-based-billing-invoice__line-cap-pulse:nth-of-type(3) {
    background: rgba(153, 102, 255, 0.03);
  }
  .usage-based-billing-invoice__line-arrow {
    offset-distance: 45px;
  }
  .usage-based-billing-invoice__line-arrow--static {
    opacity: 1;
    offset-distance: 128px;
  }
  .usage-based-billing-invoice__line-cap--start
    .usage-based-billing-invoice__line-cap-pulse {
    opacity: 0;
  }
  .usage-based-billing-invoice__meter-bar-indicator {
    transform: translateX(-60%);
  }
  .usage-based-billing-invoice__meter-bar-indicator-fill {
    transform: translateX(60%);
  }
}
.pay-as-you-go-graphic {
  width: 95%;
}
.pay-as-you-go-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px var(--hds-space-core-300);
  font-weight: var(--hds-font-weight-normal);
}
.pay-as-you-go-graphic__header {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-75);
}
.pay-as-you-go-graphic__heading {
  color: var(--hds-color-core-neutral-990);
  font-size: 16px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.33;
}
.pay-as-you-go-graphic__description {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-50);
}
.pay-as-you-go-graphic__description span {
  color: var(--hds-color-core-neutral-600);
  font-size: 9px;
  line-height: 1.33;
}
.pay-as-you-go-graphic__currency {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-50);
}
.pay-as-you-go-graphic__model {
  display: flex;
  gap: var(--hds-space-core-75);
  margin-top: var(--hds-space-core-400);
  padding-bottom: var(--hds-space-core-200);
  border-bottom: 1px solid var(--hds-color-core-neutral-50);
}
.pay-as-you-go-graphic__model-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--hds-space-core-radius-sm);
  background: var(--hds-color-core-neutral-25);
}
.pay-as-you-go-graphic__model-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
}
.pay-as-you-go-graphic__model-name {
  color: var(--hds-color-core-neutral-990);
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.33;
}
.pay-as-you-go-graphic__model-description {
  color: var(--hds-color-core-neutral-500);
  font-size: 9px;
  line-height: 1.33;
}
.pay-as-you-go-graphic__model-price {
  color: var(--hds-color-core-neutral-800);
  font-size: 9px;
  line-height: 1.33;
  text-align: right;
}
.pay-as-you-go-graphic__model-price span:first-child:after {
  content: "\00a0";
}
.pay-as-you-go-graphic__options {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  margin-top: var(--hds-space-core-200);
}
.pay-as-you-go-graphic__option-name {
  margin-bottom: var(--hds-space-core-75);
  font-weight: var(--hds-font-weight-bold);
  letter-spacing: -0.01em;
}
.pay-as-you-go-graphic__option-input,
.pay-as-you-go-graphic__option-name {
  display: flex;
  color: var(--hds-color-core-neutral-990);
  font-size: 9px;
  line-height: 1.33;
}
.pay-as-you-go-graphic__option-input {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--hds-space-core-350);
  padding: var(--hds-space-core-100);
  border-radius: var(--hds-space-core-radius-sm);
  border: 0.5px solid var(--hds-color-core-neutral-100);
}
.pay-as-you-go-graphic__option-input svg {
  margin-bottom: 2px;
}
.pay-as-you-go-graphic__option-toggle {
  position: relative;
  width: 100%;
  height: var(--hds-space-core-450);
  padding: var(--hds-space-core-25);
  border-radius: var(--hds-space-core-radius-sm);
  background-color: var(--hds-color-core-neutral-25);
}
.pay-as-you-go-graphic__option-toggle-background {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  top: var(--hds-space-core-25);
  left: var(--hds-space-core-25);
  width: calc(100% - var(--hds-space-core-50));
  height: calc(100% - var(--hds-space-core-50));
}
.pay-as-you-go-graphic__option-toggle-indicator {
  width: 100%;
  height: 100%;
  border-radius: var(--hds-space-core-radius-sm);
  background-color: var(--hds-color-core-neutral-0);
  border: 0.5px solid var(--hds-color-core-neutral-50);
}
.pay-as-you-go-graphic__option-toggle-values {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hds-space-core-50);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pay-as-you-go-graphic__option-toggle-value {
  display: grid;
  place-items: center;
}
.pay-as-you-go-graphic__option-toggle-value span {
  font-size: 9px;
  line-height: 1.1;
}
.pay-as-you-go-graphic__option-toggle-value--active {
  font-weight: var(--hds-font-weight-bold);
}
.pay-as-you-go-graphic__option-toggle--two-up
  .pay-as-you-go-graphic__option-toggle-background,
.pay-as-you-go-graphic__option-toggle--two-up
  .pay-as-you-go-graphic__option-toggle-values {
  grid-template-columns: repeat(2, 1fr);
}
.connect-payments-dashboard-graphic {
  display: none;
  position: absolute;
  top: 185px;
  left: 0;
  width: 800px;
  height: 430px;
  border-radius: var(--hds-space-core-radius-md);
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic {
    display: block;
  }
}
.connect-payments-dashboard-graphic--mobile {
  display: block;
  position: absolute;
  top: 430px;
  left: -40px;
  width: 480px;
  height: 258px;
  border-radius: var(--hds-space-core-radius-md);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background: var(--hds-color-surface-bg-quiet);
  box-shadow: var(--hds-canary-ui-shadow);
  outline: 1px solid var(--hds-canary-ui-stroke);
}
.connect-payments-dashboard-graphic--mobile
  .connect-payments-dashboard-graphic__main {
  padding-block: var(--hds-space-core-300);
  padding-inline-end: var(--hds-space-core-300);
}
.connect-payments-dashboard-graphic--mobile
  .connect-payments-dashboard-graphic__main-table-row {
  grid-template-columns: 170px repeat(2, 1fr);
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic--mobile {
    display: none;
  }
}
.connect-payments-dashboard-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 150px auto;
}
.connect-payments-dashboard-graphic__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-300);
  padding: var(--hds-space-core-200);
  border-right: 1px solid var(--hds-color-util-neutral-50);
}
.connect-payments-dashboard-graphic__sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
}
.connect-payments-dashboard-graphic__sidebar-title {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
}
.connect-payments-dashboard-graphic__sidebar-items,
.connect-payments-dashboard-graphic__sidebar-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-25);
}
.connect-payments-dashboard-graphic__sidebar-items {
  gap: var(--hds-space-core-50);
}
.connect-payments-dashboard-graphic__sidebar-items-title {
  color: var(--hds-color-util-neutral-400);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.connect-payments-dashboard-graphic__sidebar-item,
.connect-payments-dashboard-graphic__sidebar-item-group {
  display: flex;
  align-items: center;
}
.connect-payments-dashboard-graphic__sidebar-item {
  justify-content: space-between;
}
.connect-payments-dashboard-graphic__sidebar-item-group {
  gap: var(--hds-space-core-75);
}
.connect-payments-dashboard-graphic__sidebar-item-label {
  max-width: 14.5ch;
  padding-right: var(--hds-space-core-25);
  color: var(--hds-color-util-neutral-700);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.connect-payments-dashboard-graphic__sidebar-item-label--active {
  color: var(--hds-color-util-brand-600);
}
.connect-payments-dashboard-graphic__sidebar-item-icon {
  justify-self: flex-end;
}
.connect-payments-dashboard-graphic__main {
  padding-block-start: var(--hds-space-core-800);
}
.connect-payments-dashboard-graphic__main-header {
  margin-block-end: 14px;
  padding-inline: var(--hds-space-core-300);
  font-size: 16px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.63;
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic__main-header {
    font-size: 14px;
  }
}
.connect-payments-dashboard-graphic__main-table-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  align-items: center;
  padding-block: var(--hds-space-core-100);
  padding-inline: var(--hds-space-core-300);
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic__main-table-row {
    padding-block: var(--hds-space-core-75);
  }
}
.connect-payments-dashboard-graphic__main-table-row--header {
  padding-block: var(--hds-space-core-100);
}
.connect-payments-dashboard-graphic__main-table-row--header
  .connect-payments-dashboard-graphic__main-table-cell {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.57;
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic__main-table-row--header
    .connect-payments-dashboard-graphic__main-table-cell {
    font-size: 10px;
  }
}
.connect-payments-dashboard-graphic__main-table-cell {
  color: var(--hds-color-util-neutral-600);
  font-size: 12px;
  line-height: 1.43;
}
@media (min-width: 640px) {
  .connect-payments-dashboard-graphic__main-table-cell {
    font-size: 11px;
  }
}
.connect-payments-dashboard-graphic__main-table-cell--account {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
}
.connect-payments-payouts-graphic {
  position: absolute;
  top: 8px;
  right: -36px;
  width: 455px;
  min-height: 388px;
  z-index: 1;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic {
    top: 26px;
    right: 0;
    width: 480px;
    min-height: 428px;
  }
}
.connect-payments-payouts-graphic__dom-graphic {
  width: 100%;
  height: 100%;
  border-radius: var(--hds-space-core-radius-md);
  background: var(--hds-color-surface-bg-quiet);
  box-shadow: var(--hds-canary-ui-shadow);
  outline: 1px solid var(--hds-canary-ui-stroke);
}
@media (max-width: 640px) {
  .connect-payments-payouts-graphic__dom-graphic {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.connect-payments-payouts-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px var(--hds-space-core-350) 10px;
}
.connect-payments-payouts-graphic__header {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
  color: var(--hds-color-util-neutral-990);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__header {
    font-size: 11px;
  }
}
.connect-payments-payouts-graphic__summary {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-150);
  margin-top: var(--hds-space-core-150);
  padding: var(--hds-space-core-200);
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-color-util-accent-magenta-100);
  background: rgba(255, 230, 245, 0.2);
}
.connect-payments-payouts-graphic__summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.connect-payments-payouts-graphic__summary-header-title {
  color: var(--hds-color-util-accent-magenta-600);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__summary-header-title {
    font-size: 11px;
  }
}
.connect-payments-payouts-graphic__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 20px;
  padding-block: var(--hds-space-core-50);
  padding-inline: var(--hds-space-core-100);
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__button {
    font-size: 8px;
  }
}
.connect-payments-payouts-graphic__button-background-container {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.connect-payments-payouts-graphic__button-background {
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #ffe0ef;
  border-radius: var(--hds-space-core-radius-sm);
}
.connect-payments-payouts-graphic__button-gradient {
  position: absolute;
  top: -50px;
  left: -12px;
  width: 120px;
  height: 120px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    var(--hds-color-util-accent-magenta-100) 0,
    rgba(165, 29, 133, 0.75) 50%,
    var(--hds-color-util-accent-magenta-100) 100%
  );
  z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .connect-payments-payouts-graphic__button-gradient {
    opacity: 0;
  }
}
.connect-payments-payouts-graphic__button-text {
  position: relative;
  margin-bottom: 1px;
  color: var(--hds-color-util-accent-magenta-600);
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  text-align: center;
}
.connect-payments-payouts-graphic__summary-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hds-space-core-50);
}
.connect-payments-payouts-graphic__summary-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: var(--hds-space-core-100);
  border: 1px solid var(--hds-color-util-accent-magenta-100);
  border-radius: var(--hds-space-core-radius-md);
}
.connect-payments-payouts-graphic__summary-item-label {
  color: var(--hds-color-util-neutral-600);
  font-size: 11px;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__summary-item-label {
    font-size: 10px;
  }
}
.connect-payments-payouts-graphic__summary-item-value {
  display: flex;
  gap: var(--hds-space-core-50);
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.72;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__summary-item-value {
    font-size: 10px;
  }
}
.connect-payments-payouts-graphic__summary-item-value-currency {
  color: var(--hds-color-util-neutral-600);
  font-weight: var(--hds-font-weight-normal);
}
.connect-payments-payouts-graphic__body {
  margin-top: var(--hds-space-core-250);
}
.connect-payments-payouts-graphic__body-header {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-100);
}
.connect-payments-payouts-graphic__body-header-title {
  color: var(--hds-color-util-neutral-990);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-header-title {
    font-size: 11px;
  }
}
.connect-payments-payouts-graphic__body-header-tabs {
  display: flex;
  gap: var(--hds-space-core-250);
  border-bottom: 1px solid var(--hds-color-util-accent-magenta-100);
}
.connect-payments-payouts-graphic__body-header-tab {
  padding-block: var(--hds-space-core-50);
  color: var(--hds-color-util-neutral-600);
  font-size: 10px;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-header-tab {
    font-size: 9px;
  }
}
.connect-payments-payouts-graphic__body-header-tab--active {
  color: var(--hds-color-util-accent-magenta-600);
  font-weight: var(--hds-font-weight-bold);
  border-bottom: 1px solid var(--hds-color-util-accent-magenta-600);
}
.connect-payments-payouts-graphic__body-table-wrap {
  position: relative;
}
.connect-payments-payouts-graphic__body-table-row {
  display: grid;
  gap: var(--hds-space-core-200);
  align-items: center;
  grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1fr));
  padding-block: var(--hds-space-core-75);
  border-bottom: 1px solid var(--hds-color-util-accent-magenta-100);
}
:lang(es-MX) .connect-payments-payouts-graphic__body-table-row,
:lang(ja) .connect-payments-payouts-graphic__body-table-row,
:lang(nl) .connect-payments-payouts-graphic__body-table-row,
:lang(pt) .connect-payments-payouts-graphic__body-table-row {
  grid-template-columns: minmax(0, 3fr) repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-table-row {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  }
  :lang(ja) .connect-payments-payouts-graphic__body-table-row,
  :lang(nl) .connect-payments-payouts-graphic__body-table-row,
  :lang(pt) .connect-payments-payouts-graphic__body-table-row {
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .connect-payments-payouts-graphic__body-table-row:nth-of-type(n + 7) {
    display: none;
  }
}
.connect-payments-payouts-graphic__body-table-row--content:last-child,
.connect-payments-payouts-graphic__body-table-row--content:nth-last-child(2) {
  border-bottom: none;
}
.connect-payments-payouts-graphic__body-table-row--content:last-child {
  border-top: 1px solid var(--hds-color-util-accent-magenta-100);
}
.connect-payments-payouts-graphic__body-table-row--content {
  position: relative;
  background: var(--hds-color-util-neutral-0);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .connect-payments-payouts-graphic__body-table-row--content {
    z-index: -1;
  }
}
.connect-payments-payouts-graphic__body-table-row--animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.connect-payments-payouts-graphic__body-table-row-bg,
.connect-payments-payouts-graphic__body-table-row-shadow {
  position: absolute;
  top: 0;
  left: calc(var(--hds-space-core-350) * -1);
  width: calc(100% + var(--hds-space-core-350) * 2);
  height: 29px;
}
.connect-payments-payouts-graphic__body-table-row-bg {
  background: var(--hds-color-util-neutral-25);
}
@media (prefers-reduced-motion: reduce) {
  .connect-payments-payouts-graphic__body-table-row-bg {
    background: var(--hds-color-util-neutral-0);
  }
}
.connect-payments-payouts-graphic__body-table-row-shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .connect-payments-payouts-graphic__body-table-row-shadow {
    opacity: 0;
  }
}
.connect-payments-payouts-graphic__body-table-row--header {
  margin-top: var(--hds-space-core-150);
  padding-block: var(--hds-space-core-50);
}
.connect-payments-payouts-graphic__body-table-row--header
  .connect-payments-payouts-graphic__body-table-cell {
  color: var(--hds-color-util-neutral-990);
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.7;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-table-row--header
    .connect-payments-payouts-graphic__body-table-cell {
    font-size: 8px;
  }
}
.connect-payments-payouts-graphic__body-table-cell {
  color: var(--hds-color-util-neutral-600);
  font-size: 11px;
  line-height: 1.72;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-table-cell {
    font-size: 10px;
  }
}
.connect-payments-payouts-graphic__body-table-cell--account
  > span:has(+ span):after {
  content: "\00a0";
}
.connect-payments-payouts-graphic__body-table-cell-amount {
  display: flex;
  gap: var(--hds-space-core-75);
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-table-cell-amount {
    font-size: 10px;
  }
}
.connect-payments-payouts-graphic__body-table-cell-amount-currency {
  color: var(--hds-color-util-neutral-600);
  font-weight: var(--hds-font-weight-normal);
}
.connect-payments-payouts-graphic__body-table-cell--amount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--hds-space-core-75);
}
:lang(en-CA) .connect-payments-payouts-graphic__body-table-cell--amount,
:lang(zh) .connect-payments-payouts-graphic__body-table-cell--amount {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
}
.connect-payments-payouts-graphic__body-table-cell-status {
  display: flex;
  align-items: center;
}
.connect-payments-payouts-graphic__body-table-cell-status-badge {
  padding-inline: var(--hds-space-core-75);
  padding-block: var(--hds-space-core-50);
  color: #0e8138;
  background-color: #edfdf3;
  border-radius: 3px;
  border: 1px solid #a1e5ba;
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .connect-payments-payouts-graphic__body-table-cell-status-badge {
    font-size: 8px;
  }
}
.connect-payments-payouts-graphic__body-table-cell-status-badge--disputed {
  color: var(--hds-color-util-neutral-700);
  background: #ebeef1;
  border: 1px solid #d8dee4;
}
.connect-payments-line-graphic {
  position: absolute;
  top: 98px;
  left: 6px;
  width: 34px;
  height: 272px;
  z-index: 1;
}
@media (max-width: 639px) {
  .connect-payments-line-graphic {
    transform: scale(1.45);
  }
}
@media (min-width: 640px) {
  .connect-payments-line-graphic {
    top: 55px;
    left: 316px;
    width: 160px;
    height: 127px;
  }
}
.connect-payments-line-graphic__ring {
  position: absolute;
  top: -4px;
  right: -4px;
  transform: scale(0);
}
.connect-payments-line-graphic__desktop-svg {
  display: none;
}
@media (min-width: 640px) {
  .connect-payments-line-graphic__desktop-svg {
    display: flex;
  }
}
.connect-payments-line-graphic__mobile-svg {
  display: flex;
}
@media (min-width: 640px) {
  .connect-payments-line-graphic__mobile-svg {
    display: none;
  }
}
.connect-payments-graphic {
  display: flex;
  justify-content: flex-end;
  font-weight: var(--hds-font-weight-normal);
}
.connect-payments-graphic,
.connect-payments-graphic__container,
.instant-payouts-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}
.instant-payouts-graphic {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  padding: var(--hds-space-core-300) var(--hds-space-core-350);
  font-weight: var(--hds-font-weight-normal);
}
.instant-payouts-graphic__title {
  color: var(--hds-color-util-neutral-990);
  font-size: 18px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.12;
}
.instant-payouts-graphic__item {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-100);
}
.instant-payouts-graphic__label {
  color: var(--hds-color-util-neutral-990);
  font-size: 13px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.38;
  letter-spacing: -0.01em;
}
.instant-payouts-graphic__option {
  display: flex;
  gap: var(--hds-space-core-150);
  padding-block: 8px 12px;
  padding-inline: 12px;
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.instant-payouts-graphic__option--selected {
  border-color: var(--hds-color-util-brand-600);
}
.instant-payouts-graphic__option--selected
  .instant-payouts-graphic__option-label {
  color: var(--hds-color-util-brand-600);
}
.instant-payouts-graphic__option--selected
  .instant-payouts-graphic__option-radio
  span {
  border-color: var(--hds-color-util-brand-600);
  border-width: 3px;
}
.instant-payouts-graphic__option-radio span {
  margin-top: var(--hds-space-core-50);
  display: flex;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--hds-color-util-neutral-50);
}
.instant-payouts-graphic__option-label {
  color: var(--hds-color-util-neutral-990);
  font-size: 13px;
  line-height: 1.4;
  font-weight: var(--hds-font-weight-bold);
  letter-spacing: -0.01em;
}
.instant-payouts-graphic__option-description {
  margin-block-start: var(--hds-space-core-25);
  padding-inline-end: 5px;
  color: var(--hds-color-util-neutral-500);
  font-size: 11px;
  line-height: 1.2;
}
.instant-payouts-graphic__dropdown,
.instant-payouts-graphic__input {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  padding-inline: 12px;
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.instant-payouts-graphic__dropdown-content {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-100);
  color: var(--hds-color-util-neutral-990);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.instant-payouts-graphic__input {
  color: var(--hds-color-util-neutral-500);
  font-size: 12px;
  line-height: 1.78;
  letter-spacing: -0.01em;
}
.capital-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--hds-space-core-300);
  font-weight: var(--hds-font-weight-normal);
}
.capital-graphic__heading {
  color: var(--hds-color-util-neutral-990);
  font-size: 18px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.12;
}
.capital-graphic__tabs {
  display: flex;
  gap: var(--hds-space-core-300);
  margin-top: 26px;
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.capital-graphic__tab {
  position: relative;
  padding: var(--hds-space-core-50) 0;
  color: var(--hds-color-util-neutral-500);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.capital-graphic__tab--active {
  color: var(--hds-color-util-brand-600);
}
.capital-graphic__tab--active:after {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--hds-color-util-brand-600);
}
.capital-graphic__table {
  margin-top: 14px;
}
.capital-graphic__table-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hds-space-core-100);
  padding-block: 10px;
  color: var(--hds-color-util-neutral-800);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.capital-graphic__table-cell {
  white-space: nowrap;
}
.capital-graphic__table-row--header {
  color: var(--hds-color-util-neutral-600);
  font-size: 11px;
}
.capital-graphic__balance {
  color: var(--hds-color-util-neutral-500);
  font-weight: var(--hds-font-weight-normal);
}
.company-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.company-graphic__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company-graphic__background img,
.company-graphic__background svg {
  border-radius: var(--hds-space-core-radius-md);
}
.company-graphic__background img {
  width: 100%;
}
.company-graphic__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hds-space-core-100);
  color: var(--hds-color-util-neutral-990);
  z-index: 1;
}
.company-graphic__gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.83) 75%,
    #fff
  );
}
.crypto-payment-form-graphic {
  position: relative;
  width: 420px;
  height: 496px;
  padding: 30px;
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic {
    width: 388px;
    height: 482px;
  }
}
.crypto-payment-form-graphic__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hds-space-core-75);
}
.crypto-payment-form-graphic__button {
  display: grid;
  place-items: center;
  padding-block: 10px;
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-payment-form-graphic__button--link {
  background-color: #00d66f;
}
.crypto-payment-form-graphic__button--apple-pay {
  background-color: #000;
}
.crypto-payment-form-graphic__divider {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: var(--hds-space-core-350);
}
.crypto-payment-form-graphic__divider:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hds-color-util-neutral-50);
  transform: translateY(-50%);
}
.crypto-payment-form-graphic__divider-text {
  position: relative;
  padding-inline: 7px;
  color: var(--hds-color-util-neutral-500);
  background: var(--hds-color-util-neutral-0);
  font-size: 11px;
  line-height: 1;
  z-index: 1;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__divider-text {
    font-size: 9px;
  }
}
.crypto-payment-form-graphic__email {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-75);
}
.crypto-payment-form-graphic__email-label {
  color: var(--hds-color-util-neutral-500);
  font-size: 11px;
  line-height: 1.16;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__email-label {
    font-size: 9px;
  }
}
.crypto-payment-form-graphic__email-input {
  min-height: 32px;
  padding-block: var(--hds-space-core-100);
  padding-inline: 14px;
  color: var(--hds-color-util-neutral-990);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
  font-size: 12px;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__email-input {
    font-size: 11px;
  }
}
.crypto-payment-form-graphic__payment-methods {
  margin-top: var(--hds-space-core-300);
}
.crypto-payment-form-graphic__payment-methods-heading {
  color: var(--hds-color-util-neutral-990);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__payment-methods-heading {
    font-size: 10px;
  }
}
.crypto-payment-form-graphic__payment-methods-items {
  display: flex;
  flex-direction: column;
  margin-top: var(--hds-space-core-150);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-payment-form-graphic__payment-methods-item {
  padding-inline: 10px;
  padding-block: 13px;
}
.crypto-payment-form-graphic__payment-methods-item:not(:last-child) {
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-payment-form-graphic__payment-methods--selected
  .crypto-payment-form-graphic__payment-methods-radio {
  border-color: var(--hds-color-util-neutral-990);
  border-width: 3px;
}
.crypto-payment-form-graphic__payment-methods--selected
  .crypto-payment-form-graphic__payment-methods-label {
  color: var(--hds-color-util-neutral-990);
}
.crypto-payment-form-graphic__payment-methods-radio {
  position: relative;
  width: 10px;
  height: 10px;
  outline: 1px solid var(--hds-color-util-neutral-400);
  outline-offset: -1px;
  border-radius: 50%;
}
.crypto-payment-form-graphic__payment-methods-radio-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--hds-color-util-neutral-990);
  opacity: 0;
}
.crypto-payment-form-graphic__payment-methods-label {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-50);
  color: var(--hds-color-util-neutral-500);
  font-size: 12px;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__payment-methods-label {
    font-size: 11px;
  }
}
.crypto-payment-form-graphic__payment-methods-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.crypto-payment-form-graphic__payment-methods-collapsible {
  overflow: hidden;
}
.crypto-payment-form-graphic__payment-methods-panel {
  padding-block-start: 10px;
}
.crypto-payment-form-graphic__payment-methods-panel-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-50);
}
.crypto-payment-form-graphic__payment-methods-panel-wrap--border {
  padding: var(--hds-space-core-100);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-payment-form-graphic__payment-methods-panel-text {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  line-height: 1.57;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__payment-methods-panel-text {
    font-size: 10px;
  }
}
.crypto-payment-form-graphic__payment-methods-panel-input-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hds-space-core-75);
}
.crypto-payment-form-graphic__payment-methods-panel-input {
  padding-block: 9px;
  padding-inline: var(--hds-space-core-75);
  color: var(--hds-color-util-neutral-500);
  background-color: var(--hds-color-util-neutral-25);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-payment-form-graphic__payment-methods-panel-footer {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
}
.crypto-payment-form-graphic__payment-methods-panel-footer-text {
  color: var(--hds-color-util-neutral-500);
  font-size: 10px;
  line-height: 1.25;
  max-width: 30ch;
}
@media (min-width: 640px) {
  .crypto-payment-form-graphic__payment-methods-panel-footer-text {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .crypto-payment-form-graphic__payment-methods-collapsible--card {
    display: none;
  }
  .crypto-payment-form-graphic__payment-methods-radio-indicator--crypto {
    opacity: 1;
  }
  .crypto-payment-form-graphic__payment-methods-label--crypto {
    font-weight: var(--hds-font-weight-bold);
    color: var(--hds-color-util-neutral-990);
  }
  .crypto-payment-form-graphic__payment-methods-crypto-icon-bg {
    fill: #0066cc;
  }
}
.crypto-wallets-graphic {
  position: relative;
  width: 246px;
  height: 246px;
}
.crypto-wallets-graphic__items {
  width: 100%;
  height: 100%;
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  box-shadow:
    0 20.417px 30.625px -20.417px rgba(50, 50, 93, 0.25),
    0 12.25px 24.5px -12.25px rgba(0, 0, 0, 0.1);
}
.crypto-wallets-graphic__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.crypto-wallets-graphic__item:not(:last-child) {
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-wallets-graphic__item-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hds-color-util-neutral-990);
  font-size: 13px;
  line-height: 1.45;
}
@media (min-width: 640px) {
  .crypto-wallets-graphic__item-label {
    font-size: 11px;
  }
}
.crypto-wallets-graphic__item-label svg {
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-wallets-graphic__item-badge {
  margin-inline-end: 10px;
  padding: var(--hds-space-core-25) var(--hds-space-core-75);
  color: var(--hds-color-util-neutral-900);
  background-color: var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-xs);
  font-size: 8px;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .crypto-wallets-graphic__item-badge {
    font-size: 7px;
  }
}
.crypto-payment-flow-graphic {
  position: absolute;
  width: 88%;
}
.crypto-payment-flow-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.crypto-payment-flow-graphic__wallets {
  position: absolute;
  top: 150px;
  right: 0;
}
.crypto-issuing-graphic {
  position: absolute;
  width: 94%;
  left: 0;
}
@media (min-width: 640px) {
  .crypto-issuing-graphic {
    left: 6.7%;
    bottom: 0;
    width: 90%;
  }
}
@media (max-width: 639px) {
  .crypto-issuing-graphic__dom-graphic {
    margin: 0;
  }
}
.crypto-issuing-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.crypto-issuing-graphic__dashboard {
  width: 300px;
  height: 270px;
  position: relative;
  outline: 1px solid var(--hds-canary-ui-stroke);
  background-color: var(--hds-color-util-neutral-0);
}
@media (max-width: 639px) {
  .crypto-issuing-graphic__dashboard {
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: var(--hds-space-core-radius-md);
    border-bottom-right-radius: var(--hds-space-core-radius-md);
  }
}
@media (min-width: 640px) {
  .crypto-issuing-graphic__dashboard {
    width: 358px;
    height: 100%;
    border-top-left-radius: var(--hds-space-core-radius-md);
    border-top-right-radius: var(--hds-space-core-radius-md);
  }
}
.crypto-issuing-graphic__dashboard-header {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
  padding: 10px 20px;
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-issuing-graphic__dashboard-header-logo {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: var(--hds-space-core-radius-xs);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-issuing-graphic__dashboard-header-title {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
}
.crypto-issuing-graphic__dashboard-balance {
  display: flex;
  margin-block-start: var(--hds-space-core-200);
  padding-inline: 20px;
}
.crypto-issuing-graphic__dashboard-balance-content {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-100);
  padding: 10px;
  padding-inline-end: var(--hds-space-core-350);
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-sm);
}
@media (min-width: 640px) {
  .crypto-issuing-graphic__dashboard-balance-content {
    padding-inline-end: var(--hds-space-core-500);
  }
}
.crypto-issuing-graphic__dashboard-balance-header {
  color: var(--hds-color-util-neutral-600);
  font-size: 9px;
  line-height: 1;
}
.crypto-issuing-graphic__dashboard-balance-amount {
  color: var(--hds-color-util-neutral-990);
  font-size: 16px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .crypto-issuing-graphic__dashboard-balance-amount {
    font-size: 18px;
  }
}
.crypto-issuing-graphic__dashboard-balance-footer {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-50);
  font-size: 9px;
  line-height: 1;
}
.crypto-issuing-graphic__dashboard-balance-footer-text {
  color: var(--hds-color-util-neutral-600);
}
.crypto-issuing-graphic__dashboard-balance-footer-amount {
  color: #06c;
  font-weight: var(--hds-font-weight-bold);
}
.crypto-issuing-graphic__dashboard-table {
  margin-block-start: 18px;
  padding-inline: 20px;
}
.crypto-issuing-graphic__dashboard-table-header {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.crypto-issuing-graphic__dashboard-table-rows {
  margin-block-start: var(--hds-space-core-50);
}
.crypto-issuing-graphic__dashboard-table-row {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 0.5fr)) minmax(0, 1.28fr);
  padding-block: var(--hds-space-core-75);
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-issuing-graphic__dashboard-table-row--header
  .crypto-issuing-graphic__dashboard-table-row-cell {
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
}
.crypto-issuing-graphic__dashboard-table-row-cell {
  color: var(--hds-color-util-neutral-700);
  font-size: 9px;
  line-height: 1.7;
}
.crypto-issuing-graphic__dashboard-table-row-cell:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.crypto-issuing-graphic__dashboard-table-row-cell-crypto-amount {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-25);
  color: var(--hds-color-util-neutral-500);
}
.crypto-issuing-graphic__dashboard-table-row-cell-amount {
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
}
.crypto-issuing-graphic__card {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 117px;
  border-radius: var(--hds-space-core-radius-md);
  box-shadow:
    0 42.043px 84.087px 0 hsla(0, 0%, 9%, 0.08),
    0 12.613px 29.43px 0 hsla(0, 0%, 9%, 0.08),
    0 4.204px 12.613px 0 hsla(0, 0%, 9%, 0.12);
  z-index: 1;
}
@media (min-width: 640px) {
  .crypto-issuing-graphic__card {
    top: var(--hds-space-core-300);
  }
}
.crypto-issuing-graphic__card img {
  width: 100%;
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-issuing-graphic__card-logo {
  position: absolute;
  top: 14px;
  right: 14px;
}
.crypto-issuing-graphic__card-front {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.crypto-issuing-graphic__card-name {
  color: var(--hds-color-util-neutral-0);
  font-size: 9px;
  line-height: 1;
  letter-spacing: -0.0308em;
}
.crypto-issuing-graphic__card-chip {
  width: 26px;
  height: auto;
}
.crypto-account-balance-graphic {
  width: 100%;
}
@media (min-width: 640px) {
  .crypto-account-balance-graphic {
    position: absolute;
    top: 5.25%;
    width: 90%;
  }
}
.crypto-account-balance-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.crypto-account-balance-graphic__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-account-balance-graphic__header-main {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
}
.crypto-account-balance-graphic__header-logo {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: var(--hds-space-core-radius-xs);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.crypto-account-balance-graphic__header-title {
  color: var(--hds-color-util-neutral-990);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
}
.crypto-account-balance-graphic__header-account {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
}
.crypto-account-balance-graphic__header-account-label {
  color: var(--hds-color-util-neutral-990);
  font-size: 10px;
  line-height: 1;
}
.crypto-account-balance-graphic__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  margin-block-start: 10px;
}
.crypto-account-balance-graphic__balance {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-50);
}
.crypto-account-balance-graphic__balance-label {
  color: var(--hds-color-util-neutral-600);
  font-size: 8px;
  line-height: 1.4;
}
.crypto-account-balance-graphic__balance-value {
  color: var(--hds-color-util-neutral-990);
  font-size: 16px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.crypto-account-balance-graphic__controls {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
}
.crypto-account-balance-graphic__controls-button {
  display: grid;
  place-items: center;
  padding: var(--hds-space-core-100);
  color: #06c;
  border: 1px solid #06c;
  border-radius: var(--hds-space-core-radius-sm);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.crypto-account-balance-graphic__body {
  margin-block-start: 14px;
  padding-inline: 20px;
}
.crypto-account-balance-graphic__body-title {
  color: #06c;
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.crypto-account-balance-graphic__body-items {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-75);
  margin-block-start: 10px;
}
.crypto-account-balance-graphic__body-item,
.crypto-account-balance-graphic__body-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crypto-account-balance-graphic__body-item {
  padding: var(--hds-space-core-100) 10px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
}
.crypto-account-balance-graphic__body-item-main {
  gap: var(--hds-space-core-100);
}
.crypto-account-balance-graphic__body-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.crypto-account-balance-graphic__body-item-icon svg {
  border-radius: 50%;
}
.crypto-account-balance-graphic__body-item-label {
  color: var(--hds-color-util-neutral-990);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.25;
}
.crypto-account-balance-graphic__body-item-amount-crypto,
.crypto-account-balance-graphic__body-item-value {
  color: #06c;
  font-size: 8px;
  line-height: 1;
}
.crypto-account-balance-graphic__body-item-amounts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.crypto-account-balance-graphic__body-item-amount {
  color: var(--hds-color-util-neutral-990);
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.7;
}
.crypto-account-balance-graphic__body-item-amount-crypto {
  color: var(--hds-color-util-neutral-500);
}
.crypto-account-balance-graphic__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 20px;
  margin-block-start: 10px;
}
.crypto-account-balance-graphic__footer-button {
  display: grid;
  place-items: center;
  padding-inline: var(--hds-space-core-100);
  padding-block: var(--hds-space-core-75) var(--hds-space-core-100);
  background-color: #6d2bf0;
  color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-sm);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.issuing-card-balance-graphic {
  position: relative;
  left: calc(var(--hds-space-core-300) * -1 - 2px);
  width: 108%;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic {
    top: 6%;
    left: 0;
    width: 100%;
  }
}
.issuing-card-balance-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
@media (max-width: 639px) {
  .issuing-card-balance-graphic__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.issuing-card-balance-graphic__dashboard {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-250);
  width: 440px;
  height: 380px;
  padding: 24px 46px 24px 32px;
  background-color: var(--hds-color-util-neutral-0);
  outline: 1px solid var(--hds-canary-ui-stroke);
  border-radius: var(--hds-space-core-radius-md);
  box-shadow:
    0 30px 45px -30px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard {
    height: 356px;
    width: 420px;
  }
}
.issuing-card-balance-graphic__dashboard-header {
  display: flex;
  gap: var(--hds-space-core-100);
  align-items: center;
}
.issuing-card-balance-graphic__dashboard-header-logo {
  width: 24px;
  height: 24px;
}
.issuing-card-balance-graphic__dashboard-header-title {
  color: var(--hds-color-util-neutral-990);
  font-size: 14px;
  font-weight: var(--hds-font-weight-bold);
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-header-title {
    font-size: 12px;
  }
}
.issuing-card-balance-graphic__dashboard-balance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--hds-space-core-100);
  width: 148px;
  height: 78px;
  padding: 0 12px 1px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-sm);
}
.issuing-card-balance-graphic__dashboard-balance-label {
  color: var(--hds-color-util-neutral-600);
  font-size: 12px;
  font-weight: var(--hds-font-weight-medium);
  line-height: 1;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-balance-label {
    font-size: 10px;
  }
}
.issuing-card-balance-graphic__dashboard-balance-value {
  color: var(--hds-color-util-neutral-990);
  font-size: 20px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-balance-value {
    font-size: 18px;
  }
}
.issuing-card-balance-graphic__dashboard-balance-pending {
  display: flex;
  align-items: baseline;
  gap: var(--hds-space-core-25);
}
.issuing-card-balance-graphic__dashboard-balance-pending-label,
.issuing-card-balance-graphic__dashboard-balance-pending-value {
  color: var(--hds-color-util-neutral-600);
  font-size: 9px;
  line-height: 1;
}
.issuing-card-balance-graphic__dashboard-balance-pending-value {
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
}
.issuing-card-balance-graphic__dashboard-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-table {
    gap: 10px;
  }
}
.issuing-card-balance-graphic__dashboard-table-header {
  margin-top: var(--hds-space-core-100);
  color: var(--hds-color-util-neutral-990);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-table-header {
    font-size: 11px;
  }
}
.issuing-card-balance-graphic__dashboard-table-body {
  display: flex;
  flex-direction: column;
}
.issuing-card-balance-graphic__dashboard-table-row {
  display: grid;
  align-items: center;
  min-height: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 108px) minmax(
      0,
      60px
    );
  gap: var(--hds-space-core-400);
  padding: var(--hds-space-core-75) 0;
  font-size: 11px;
  line-height: 1.3;
  color: var(--hds-color-util-neutral-700);
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
  white-space: nowrap;
}
@media (max-width: 639px) {
  :lang(es-MX) .issuing-card-balance-graphic__dashboard-table-row,
  :lang(ja) .issuing-card-balance-graphic__dashboard-table-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 154px) minmax(
        0,
        60px
      );
  }
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__dashboard-table-row {
    min-height: 26px;
    grid-template-columns:
      minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 108px)
      minmax(0, 60px);
    padding: var(--hds-space-core-50) 0;
    font-size: 10px;
  }
}
.issuing-card-balance-graphic__dashboard-table-row:last-child {
  border-bottom: 0;
}
.issuing-card-balance-graphic__dashboard-table-row--header {
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.2;
  min-height: auto;
}
.issuing-card-balance-graphic__dashboard-table-cell-amount {
  font-weight: var(--hds-font-weight-bold);
}
.issuing-card-balance-graphic__card {
  position: absolute;
  top: 0;
  right: 0;
  width: 266px;
  height: auto;
  aspect-ratio: 226/140;
  border-radius: var(--hds-space-core-radius-md);
  box-shadow:
    0 27.478px 41.217px 0 rgba(50, 50, 93, 0.12),
    0 16.487px 32.973px 0 rgba(0, 0, 0, 0.07);
}
.issuing-card-balance-graphic__card img {
  width: 100%;
  border-radius: var(--hds-space-core-radius-md);
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__card {
    top: var(--hds-space-core-350);
    width: 226px;
  }
}
.issuing-card-balance-graphic__card-front {
  position: absolute;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  transform: translateZ(0);
}
.issuing-card-balance-graphic__card-name {
  color: var(--hds-color-util-neutral-0);
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.0308em;
}
@media (min-width: 640px) {
  .issuing-card-balance-graphic__card-name {
    font-size: 10px;
  }
}
.issuing-card-balance-graphic__card-chip {
  width: 30px;
  height: auto;
}
.issuing-card-balance-graphic__card-logo {
  position: absolute;
  top: 10px;
  right: 12px;
  transform: translateZ(0);
}
.issuing-card-balance-graphic__canvas-container {
  width: 100%;
  height: 100%;
}
.issuing-card-balance-graphic__canvas-container canvas {
  width: 100%;
  height: 100%;
  border-radius: var(--hds-space-core-radius-md);
}
.issuing-spending-limit-graphic__container {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.issuing-spending-limit-graphic__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 248px;
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  box-shadow: var(--hds-canary-ui-shadow);
}
.issuing-spending-limit-graphic__header {
  color: var(--hds-color-util-neutral-990);
  padding: var(--hds-space-core-200);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  border-bottom: 1px solid var(--hds-color-util-neutral-50);
}
.issuing-spending-limit-graphic__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: var(--hds-space-core-200);
  padding-block-end: var(--hds-space-core-250);
}
.issuing-spending-limit-graphic__label {
  color: var(--hds-color-util-neutral-990);
  font-size: 10px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.issuing-spending-limit-graphic__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.issuing-spending-limit-graphic__row + .issuing-spending-limit-graphic__row {
  margin-block-start: var(--hds-space-core-250);
}
.issuing-spending-limit-graphic__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
.issuing-spending-limit-graphic__button,
.issuing-spending-limit-graphic__input,
.issuing-spending-limit-graphic__select {
  display: flex;
  align-items: center;
  height: 24px;
  padding-block: var(--hds-space-core-50);
  padding-inline: var(--hds-space-core-75);
  color: var(--hds-color-util-neutral-700);
  font-size: 10px;
  line-height: 1;
  border: 1px solid var(--hds-color-util-brand-500);
  border-radius: var(--hds-space-core-radius-sm);
  background-color: var(--hds-color-util-neutral-0);
}
.issuing-spending-limit-graphic__button,
.issuing-spending-limit-graphic__select {
  justify-content: space-between;
  height: 24px;
  color: var(--hds-color-util-neutral-990);
  border: 0;
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-util-neutral-0);
  box-shadow:
    0 1.694px 3.388px 0 rgba(50, 50, 93, 0.2),
    0 1.016px 1.355px 0 rgba(125, 138, 161, 0.09);
}
.issuing-spending-limit-graphic__buttons {
  display: flex;
  gap: var(--hds-space-core-100);
  justify-content: flex-end;
}
.issuing-spending-limit-graphic__button {
  height: 22px;
  color: var(--hds-color-util-neutral-600);
  font-weight: var(--hds-font-weight-bold);
  padding-inline: 10px;
  padding-block-end: var(--hds-space-core-75);
}
.issuing-spending-limit-graphic__button--primary {
  color: var(--hds-color-util-neutral-0);
  background-color: var(--hds-color-util-brand-500);
}
.issuing-spending-limit-graphic__select-dropdown {
  position: absolute;
  top: 178px;
  left: var(--hds-space-core-200);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 140px;
  padding: 10px var(--hds-space-core-75);
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-color-util-neutral-50);
  box-shadow:
    0 12.431px 24.862px -11.418px rgba(50, 50, 93, 0.25),
    0 7.458px 14.917px -7.458px rgba(0, 0, 0, 0.1);
}
.issuing-spending-limit-graphic__select-dropdown-item {
  color: var(--hds-color-util-neutral-700);
  font-size: 10px;
  line-height: 1.2;
}
.financial-accounts-graphic {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.financial-accounts-graphic__editor {
  width: 606px;
  height: 600px;
  background: #101d51;
  border-radius: var(--hds-space-core-radius-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
}
.financial-accounts-graphic__code {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--hds-font-family-code);
  font-size: 13px;
  line-height: 1.6;
}
.financial-accounts-graphic__line-numbers {
  color: var(--hds-color-util-brand-300);
  flex-shrink: 0;
  min-width: 22px;
  line-height: 1.63;
  text-align: right;
  white-space: pre;
}
.financial-accounts-graphic__content {
  color: var(--hds-color-util-neutral-0);
  flex: 1;
  white-space: pre;
  line-height: 1.63;
  overflow-x: auto;
}
.financial-accounts-graphic__code-line--tabbed {
  margin-left: 5ch;
}
.financial-accounts-graphic__code-keyword {
  color: #8bb0ff;
}
.financial-accounts-graphic__code-function {
  color: #7cd889;
}
.financial-accounts-graphic__code-number {
  color: #ffd866;
}
.financial-accounts-graphic__code-string {
  color: #ffaf61;
}
.financial-accounts-graphic__card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 462px;
  padding: var(--hds-space-core-250);
  background-color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid var(--hds-canary-ui-mini-stroke);
  box-shadow:
    0 16.119px 32.239px -14.806px rgba(50, 50, 93, 0.25),
    0 9.672px 19.343px -9.672px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.financial-accounts-graphic__card-header {
  display: flex;
  align-items: center;
  gap: 50px;
}
.financial-accounts-graphic__card-header-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.financial-accounts-graphic__card-header-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-sm);
}
.financial-accounts-graphic__card-header-balance,
.financial-accounts-graphic__card-header-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.financial-accounts-graphic__card-header-balance-label,
.financial-accounts-graphic__card-header-details-name {
  color: var(--hds-color-util-neutral-990);
  font-size: 15px;
  font-weight: var(--hds-font-weight-bold);
}
.financial-accounts-graphic__card-header-balance-value,
.financial-accounts-graphic__card-header-details-bank {
  font-size: 14px;
}
.financial-accounts-graphic__card-header-details-bank > span:has(+ span):after {
  content: "\00a0";
}
.financial-accounts-graphic__card-header-balance-value {
  color: #26a977;
}
.financial-accounts-graphic__card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 18px;
  margin-top: 18px;
  background-color: var(--hds-color-util-neutral-25);
  border-radius: var(--hds-space-core-radius-sm);
  border: 1px solid var(--hds-color-util-neutral-50);
}
.financial-accounts-graphic__card-content-item {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  gap: 38px;
}
.financial-accounts-graphic__card-content-divider {
  width: 100%;
  height: 1px;
  background-color: var(--hds-color-util-neutral-50);
}
.financial-accounts-graphic__card-content-item-label,
.financial-accounts-graphic__card-content-item-value {
  font-size: 14px;
}
.financial-accounts-graphic__card-content-item-value {
  color: var(--hds-color-util-neutral-700);
}
.authorization-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--hds-space-core-250);
  font-weight: var(--hds-font-weight-normal);
}
.authorization-graphic__heading {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-75);
  font-size: 13px;
  line-height: 1;
  margin-bottom: var(--hds-space-core-100);
}
.authorization-graphic__heading-percent {
  padding: 2px 3px;
  color: #15be53;
  font-size: 8px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.52;
  background: rgba(21, 190, 83, 0.15);
  border: 1px solid #15be53;
  border-radius: var(--hds-space-core-radius-sm);
}
.authorization-graphic__filters {
  display: flex;
  gap: var(--hds-space-core-50);
  margin-bottom: var(--hds-space-core-300);
}
.authorization-graphic__filter {
  padding: 2px 6px;
  color: var(--hds-color-core-neutral-600);
  font-size: 8px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.52;
  border: 1px solid var(--hds-color-util-brand-100);
  border-radius: var(--hds-space-core-radius-sm);
}
.authorization-graphic__filter--active {
  color: var(--hds-color-util-brand-600);
  border-color: var(--hds-color-util-brand-600);
}
.authorization-graphic__chart-container {
  position: relative;
  display: flex;
  gap: var(--hds-space-core-50);
}
.authorization-graphic__chart-labels {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  white-space: nowrap;
}
.authorization-graphic__chart-label {
  color: var(--hds-color-core-neutral-500);
  font-size: 8px;
  line-height: 1;
}
.authorization-graphic__chart {
  position: relative;
  padding: 18px 18px 0;
  margin-block: var(--hds-space-core-25);
  border-left: 1px solid var(--hds-color-core-neutral-50);
  border-right: 1px solid var(--hds-color-core-neutral-50);
}
.authorization-graphic__chart-bars {
  position: relative;
  display: flex;
  width: 100%;
  gap: var(--hds-space-core-25);
  z-index: 1;
}
.authorization-graphic__chart-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--hds-space-core-25);
  width: 50px;
}
.authorization-graphic__chart-bar-top {
  background-color: #02bcf5;
  border-radius: var(--hds-space-core-radius-xs);
}
.authorization-graphic__chart-bar-mid {
  background-color: #0073e6;
  border-radius: var(--hds-space-core-radius-xs);
}
.authorization-graphic__chart-bar-bottom {
  background-color: var(--hds-color-util-brand-500);
  border-radius: var(--hds-space-core-radius-xs);
}
.authorization-graphic__chart-lines {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.authorization-graphic__chart-line {
  height: 1px;
  width: 100%;
  background-color: var(--hds-color-core-neutral-50);
}
.authorization-graphic__chart-month {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  padding-block: 10px;
  color: var(--hds-color-core-neutral-500);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.009em;
  text-align: center;
  white-space: nowrap;
}
.authorization-graphic__chart-legend {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 36px;
}
.authorization-graphic__chart-legend-item {
  display: flex;
  align-items: baseline;
  gap: var(--hds-space-core-50);
}
.authorization-graphic__chart-legend-item:first-child
  .authorization-graphic__chart-legend-item-color {
  background-color: var(--hds-color-util-brand-500);
}
.authorization-graphic__chart-legend-item:nth-child(2)
  .authorization-graphic__chart-legend-item-color {
  background-color: #0073e6;
}
.authorization-graphic__chart-legend-item:nth-child(3)
  .authorization-graphic__chart-legend-item-color {
  background-color: #02bcf5;
}
.authorization-graphic__chart-legend-item-color {
  min-width: 8px;
  min-height: 8px;
  border-radius: var(--hds-space-core-radius-xs);
}
.authorization-graphic__chart-legend-item-label {
  color: var(--hds-color-core-neutral-500);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.009em;
}
.stat {
  display: flex;
  padding: 0 var(--hds-space-core-100);
}
.authorization-boost-graphic {
  width: 100%;
}
.authorization-boost-graphic__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--hds-space-core-150);
  font-weight: var(--hds-font-weight-normal);
  height: 100%;
}
.authorization-boost-graphic__stat {
  font-size: 110px;
  font-weight: var(--hds-font-weight-bold);
  background: linear-gradient(
    203deg,
    #ffa319 9.93%,
    #fd6252 82.88%,
    #fd5b86 131.32%
  );
  line-height: 1.2;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 640px) {
  .authorization-boost-graphic__stat {
    font-size: 62px;
    line-height: 1.3;
  }
}
.authorization-boost-graphic__stat-details {
  color: var(--hds-color-util-neutral-900);
  font-size: 1.375rem;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
  max-width: 20ch;
}
@media (min-width: 640px) {
  .authorization-boost-graphic__stat-details {
    font-size: 0.875rem;
    max-width: none;
  }
}
.phone-graphic {
  --phone-graphic-padding: 8px;
  --phone-graphic-border-radius-outer: 36px;
  --phone-graphic-border-radius-inner: calc(
    var(--phone-graphic-border-radius-outer) - var(--phone-graphic-padding)
  );
  --phone-graphic-mobile-width: 266px;
  --phone-graphic-mobile-height: 543px;
  --phone-graphic-width: 266px;
  --phone-graphic-height: 543px;
  position: relative;
  padding: 8px;
  background: #f8fafc;
  border-radius: var(--phone-graphic-border-radius-outer);
  box-shadow: inset 0 -1.854px 4.634px 0 rgba(10, 37, 64, 0.22);
  filter: drop-shadow(0 25.026px 23.172px rgba(50, 50, 93, 0.12));
  font-size: 16px;
  -webkit-user-select: none;
  user-select: none;
  width: var(--phone-graphic-mobile-width);
  height: var(--phone-graphic-mobile-height);
}
@media (min-width: 940px) {
  .phone-graphic {
    width: var(--phone-graphic-width);
    height: var(--phone-graphic-height);
  }
}
.phone-graphic__screen {
  position: relative;
  height: 100%;
  border-radius: var(--phone-graphic-border-radius-inner);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  mask-image: -webkit-radial-gradient(#fff, #000);
  background: #fff;
}
.mobile-payments-graphic {
  width: 61%;
}
@media (min-width: 640px) {
  .mobile-payments-graphic {
    width: 49%;
  }
}
.mobile-payments-graphic__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.mobile-payments-graphic__top {
  padding-block: 20px 0;
  padding-inline: 16px;
}
.mobile-payments-graphic__bottom {
  padding-block: 0 24px;
  padding-inline: 16px;
}
.mobile-payments-graphic__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.mobile-payments-graphic__product-image {
  width: 70px;
  height: auto;
  aspect-ratio: 1;
}
.mobile-payments-graphic__product-image img {
  display: block;
  border-radius: var(--hds-space-core-radius-md);
}
.mobile-payments-graphic__product-details {
  display: flex;
  flex-direction: column;
}
.mobile-payments-graphic__product-name {
  color: var(--hds-color-util-neutral-500);
  font-size: 11px;
  font-weight: var(--hds-font-weight-normal);
}
.mobile-payments-graphic__buttons {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 4px;
}
.mobile-payments-graphic__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 26px;
  border-radius: 4px;
}
.mobile-payments-graphic__button span {
  font-size: 9px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
  color: var(--hds-color-util-neutral-990);
}
.mobile-payments-graphic__button--icon {
  background: #000;
}
.mobile-payments-graphic__button--link {
  background: #00d66f;
}
.mobile-payments-graphic__button--pay {
  height: 28px;
  background: var(--hds-color-util-neutral-975);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.36;
  letter-spacing: 0.0125em;
  color: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
}
.mobile-payments-graphic__divider {
  position: relative;
  display: grid;
  place-items: center;
  padding: 12px 0;
}
.mobile-payments-graphic__divider span {
  padding: 0 7px;
  color: var(--hds-color-util-neutral-500);
  background: var(--hds-color-util-neutral-0);
  font-size: 9px;
  font-weight: var(--hds-font-weight-normal);
}
.mobile-payments-graphic__divider:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hds-color-util-neutral-50);
  z-index: -1;
}
.mobile-payments-graphic__options {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid var(--hds-color-util-neutral-50);
}
.mobile-payments-graphic__option-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mobile-payments-graphic__option {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  border-top: 1px solid var(--hds-color-util-neutral-50);
}
.mobile-payments-graphic__option span {
  color: var(--hds-color-util-neutral-500);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.2;
}
.mobile-payments-graphic__option:first-child {
  border-top: none;
}
.mobile-payments-graphic__option-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  width: 100%;
}
.mobile-payments-graphic__option-name {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-payments-graphic__option-name--active
  .mobile-payments-graphic__option-radio {
  border: 3px solid var(--hds-color-util-neutral-990);
}
.mobile-payments-graphic__option-name--active span {
  color: var(--hds-color-util-neutral-990);
  font-weight: var(--hds-font-weight-bold);
}
.mobile-payments-graphic__option-radio {
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-radius: 50%;
  border: 1px solid var(--hds-color-util-neutral-100);
}
.mobile-payments-graphic__option-description,
.mobile-payments-graphic__option-description span {
  padding-bottom: 11px;
  color: var(--hds-color-util-neutral-700);
  font-size: 9px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.mobile-payments-graphic__card-option-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding-bottom: 14px;
}
.mobile-payments-graphic__card-option-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 29px;
  border-radius: var(--hds-space-core-radius-md);
  background: var(--hds-color-util-neutral-25);
  padding: 0 6.5px;
}
.mobile-payments-graphic__card-option-field span {
  font-size: 9px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.2;
  color: var(--hds-color-util-neutral-500);
  letter-spacing: -0.01em;
}
.mobile-payments-graphic__card-option-field:first-child {
  grid-column: span 2;
}
.mobile-payments-graphic__card-option-icon--offset {
  margin-bottom: 1px;
}
.mobile-payments-graphic__email,
.mobile-payments-graphic__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-payments-graphic__payment-options {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-payments-graphic__payment-options--centered {
  margin-top: 8px;
  gap: 20px;
}
.mobile-payments-graphic__label {
  color: var(--hds-color-util-neutral-900);
  font-size: 8px;
  font-weight: var(--hds-font-weight-bold);
}
.mobile-payments-graphic__input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 24px;
  padding: 4px 8px;
  color: var(--hds-color-util-neutral-500);
  border-radius: 4px;
  border: 1px solid var(--hds-color-util-neutral-50);
  font-size: 10px;
  font-weight: var(--hds-font-weight-normal);
}
.mobile-payments-graphic__slider {
  position: relative;
  flex: 1;
  padding-bottom: 12px;
  overflow: hidden;
}
.mobile-payments-graphic__slider:after,
.mobile-payments-graphic__slider:before {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 100%;
  z-index: 1;
}
.mobile-payments-graphic__slider:before {
  left: 0;
  background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
}
.mobile-payments-graphic__slider:after {
  right: 0;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff);
}
.mobile-payments-graphic__slider-container {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(5, 100%);
}
.mobile-payments-graphic__slider-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-inline: 16px;
}
.mobile-payments-graphic__product-price {
  position: relative;
  overflow: hidden;
  height: 26px;
}
.mobile-payments-graphic__product-price:after,
.mobile-payments-graphic__product-price:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 1;
}
.mobile-payments-graphic__product-price:before {
  top: 0;
  background: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0));
}
.mobile-payments-graphic__product-price:after {
  bottom: 0;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
}
.mobile-payments-graphic__product-price-slider {
  display: grid;
  grid-template-rows: repeat(5, 26px);
}
.mobile-payments-graphic__product-price-slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hds-color-util-neutral-975);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.mobile-payments-graphic__product-price--inline:after,
.mobile-payments-graphic__product-price--inline:before {
  height: 4px;
}
.mobile-payments-graphic__product-price--inline:before {
  background: linear-gradient(180deg, #000, transparent);
}
.mobile-payments-graphic__product-price--inline:after {
  background: linear-gradient(180deg, transparent, #000);
}
.mobile-payments-graphic__product-price--inline
  .mobile-payments-graphic__product-price-slider-item {
  padding-bottom: 2px;
}
:is(
    .mobile-payments-graphic__product-price--inline
      .mobile-payments-graphic__product-price-slider-item
  )
  span {
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.36;
  letter-spacing: 0.0125em;
  color: var(--hds-color-util-neutral-0);
}
.fraud-and-risk-graphic {
  width: 100%;
}
@media (max-width: 639px) {
  .fraud-and-risk-graphic {
    position: absolute;
    right: -9%;
  }
  .fraud-and-risk-graphic__dom-graphic {
    margin: 0 0 0 auto;
  }
}
.fraud-and-risk-graphic__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: var(--hds-space-core-300);
  padding: var(--hds-space-core-300) 0 54px 24px;
  font-weight: var(--hds-font-weight-normal);
  overflow: hidden;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__container {
    gap: var(--hds-space-core-200);
    padding: var(--hds-space-core-200) var(--hds-space-core-300) 30px 18px;
  }
}
.fraud-and-risk-graphic__heading {
  font-size: 20px;
  font-weight: var(--hds-font-weight-bold);
  color: var(--hds-color-core-neutral-900);
  margin-bottom: var(--hds-space-core-25);
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__heading {
    font-size: 13px;
  }
}
.fraud-and-risk-graphic__legend {
  display: flex;
  gap: 12px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__legend {
    gap: 22px;
  }
}
.fraud-and-risk-graphic__legend-item {
  display: flex;
  flex-direction: column;
  row-gap: var(--hds-space-core-25);
}
.fraud-and-risk-graphic__legend-item:first-child
  .fraud-and-risk-graphic__legend-item-icon {
  background-color: var(--hds-color-util-brand-500);
}
.fraud-and-risk-graphic__legend-item:nth-child(2)
  .fraud-and-risk-graphic__legend-item-icon {
  background-color: #0073e6;
}
.fraud-and-risk-graphic__legend-item-heading {
  display: flex;
  align-items: baseline;
  column-gap: var(--hds-space-core-75);
  flex: 1;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__legend-item-heading {
    column-gap: var(--hds-space-core-50);
  }
}
.fraud-and-risk-graphic__legend-item-label {
  position: relative;
  top: -1px;
  font-size: 12px;
  line-height: 1.25;
  color: var(--hds-color-core-neutral-500);
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__legend-item-label {
    font-size: 8px;
  }
}
.fraud-and-risk-graphic__legend-item-icon {
  display: grid;
  place-items: center;
  min-width: 12px;
  min-height: 12px;
  border-radius: var(--hds-space-core-radius-xs);
}
.fraud-and-risk-graphic__legend-item-icon svg {
  transform: scale(1.5);
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__legend-item-icon {
    min-width: 8px;
    min-height: 8px;
  }
  .fraud-and-risk-graphic__legend-item-icon svg {
    transform: scale(1);
  }
}
.fraud-and-risk-graphic__legend-item-value {
  flex: 1;
  color: var(--hds-color-core-neutral-990);
  font-size: 18px;
  line-height: 1.583;
  font-weight: var(--hds-font-weight-bold);
  letter-spacing: -0.0125em;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__legend-item-value {
    font-size: 12px;
  }
}
.fraud-and-risk-graphic__chart {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 12px;
  flex: 1;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart {
    padding-left: 8px;
  }
}
.fraud-and-risk-graphic__chart-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 105px;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-lines {
    height: 88px;
  }
}
.fraud-and-risk-graphic__chart-line {
  border-bottom: 0.6px solid var(--hds-color-core-neutral-50);
}
.fraud-and-risk-graphic__chart-bars {
  position: relative;
  display: flex;
  gap: 3px;
  z-index: 1;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bars {
    gap: var(--hds-space-core-25);
  }
}
.fraud-and-risk-graphic__chart-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 43px;
  gap: var(--hds-space-core-25);
  transform-origin: bottom;
  opacity: 0;
  transform: scaleY(0);
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar {
    min-width: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fraud-and-risk-graphic__chart-bar {
    opacity: 1;
    transform: none;
  }
}
.fraud-and-risk-graphic__chart-bar-top {
  background-color: #0073e6;
  border-radius: var(--hds-space-core-radius-xs);
}
.fraud-and-risk-graphic__chart-bar-bottom {
  background-color: var(--hds-color-util-brand-500);
  border-radius: var(--hds-space-core-radius-xs) var(--hds-space-core-radius-xs)
    0 0;
}
.fraud-and-risk-graphic__chart-bar:first-child
  .fraud-and-risk-graphic__chart-bar-top {
  height: 33px;
}
.fraud-and-risk-graphic__chart-bar:first-child
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 94px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:first-child
    .fraud-and-risk-graphic__chart-bar-top {
    height: 22px;
  }
  .fraud-and-risk-graphic__chart-bar:first-child
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 64px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(2)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 14px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(2)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 78px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(2)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 10px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(2)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 54px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(3)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 33px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(3)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 65px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(3)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 22px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(3)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 46px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(4)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 25px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(4)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 69px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(4)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 18px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(4)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 48px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(5)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 14px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(5)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 76px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(5)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 10px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(5)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 52px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(6)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 25px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(6)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 32px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(6)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 18px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(6)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 22px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(7)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 25px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(7)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 70px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(7)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 18px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(7)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 48px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(8)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 25px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(8)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 56px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(8)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 18px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(8)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 40px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(9)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 20px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(9)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 56px;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-bar:nth-child(9)
    .fraud-and-risk-graphic__chart-bar-top {
    height: 16px;
  }
  .fraud-and-risk-graphic__chart-bar:nth-child(9)
    .fraud-and-risk-graphic__chart-bar-bottom {
    height: 44px;
  }
}
.fraud-and-risk-graphic__chart-bar:nth-child(10)
  .fraud-and-risk-graphic__chart-bar-top {
  height: 10px;
}
.fraud-and-risk-graphic__chart-bar:nth-child(10)
  .fraud-and-risk-graphic__chart-bar-bottom {
  height: 44px;
}
.fraud-and-risk-graphic__chart-overlay {
  position: absolute;
  top: 52px;
  left: 0;
  transform: scale(1.45);
  transform-origin: left;
  z-index: 2;
}
@media (min-width: 640px) {
  .fraud-and-risk-graphic__chart-overlay {
    top: 30px;
    transform: scale(1.03);
  }
}
.radar-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-weight: var(--hds-font-weight-normal);
}
.radar-graphic__heading {
  padding: 14px var(--hds-space-core-150) var(--hds-space-core-150);
  color: var(--hds-color-core-neutral-700);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1;
}
.radar-graphic__chart,
.radar-graphic__heading {
  border-bottom: 1px solid var(--hds-color-core-neutral-50);
}
.radar-graphic__chart {
  position: relative;
  width: 100%;
  height: 204px;
  border-top: 1px solid var(--hds-color-core-neutral-50);
  overflow: hidden;
}
.radar-graphic__chart svg {
  position: relative;
  z-index: 1;
}
.radar-graphic__chart-lines {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: repeat(5, 110px);
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
.radar-graphic__chart-line {
  height: 100%;
  width: 100%;
  border-right: 1px solid var(--hds-color-core-neutral-50);
}
.radar-graphic__chart-legend {
  flex: 1;
  padding: var(--hds-space-core-300);
}
.radar-graphic__chart-legend-item {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-100);
  padding: var(--hds-space-core-100) var(--hds-space-core-50);
  border-top: 1px solid var(--hds-color-core-neutral-50);
}
.radar-graphic__chart-legend-item:last-child {
  border-bottom: 1px solid var(--hds-color-core-neutral-50);
}
.radar-graphic__chart-legend-item:last-child
  .radar-graphic__chart-legend-item-label {
  font-weight: var(--hds-font-weight-normal);
}
.radar-graphic__chart-legend-item-label {
  color: var(--hds-color-core-neutral-700);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.1;
}
.bento-dialog {
  --bento-dialog-columns: 4;
  max-width: 1184px;
}
@media (min-width: 640px) {
  .bento-dialog {
    --bento-dialog-columns: 8;
    margin: var(--hds-space-core-400);
  }
}
@media (min-width: 940px) {
  .bento-dialog {
    --bento-dialog-columns: 12;
    margin-block: clamp(
      var(--hds-space-core-900),
      10lvh,
      var(--hds-space-core-1800)
    );
    margin-inline: var(--hds-space-core-400);
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes bento-dialog-reveal-fade-in-up {
    0% {
      opacity: 0;
      transform: translate3d(0, 30px, 0);
    }
    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }
  .bento-dialog-reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    animation-name: bento-dialog-reveal-fade-in-up;
    animation-timing-function: cubic-bezier(0.2, 0, 0, 1);
    animation-duration: 0.75s;
    animation-delay: var(--reveal-delay);
    animation-fill-mode: forwards;
  }
  @media (min-width: 940px) {
    .bento-dialog-graphic .bento-dialog-reveal:nth-of-type(2),
    .bento-dialog-graphics__item:nth-child(2) .bento-dialog-reveal {
      animation-delay: calc(var(--reveal-delay) + 0.1s);
    }
    .bento-dialog-graphic .bento-dialog-reveal:nth-of-type(3),
    .bento-dialog-graphics__item:nth-child(3) .bento-dialog-reveal {
      animation-delay: calc(var(--reveal-delay) + 0.2s);
    }
  }
  .bento-dialog-reveal--delay {
    --reveal-delay: 100ms;
  }
}
.modular-solutions-bento-card {
  --card-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --card-duration: 800ms;
  --card-scale: 1;
  --card-shift-x: 0;
  --card-shift-y: 0;
  --card-radius: var(--hds-space-core-radius-md);
  --card-radius-inner: 5px;
  position: relative;
  display: flex;
  flex: 1;
  transition: z-index 0.1s step-end;
  cursor: pointer;
  aspect-ratio: 344/504;
  max-height: 676px;
  contain: layout style;
  border: none;
  background: none;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  box-shadow: none;
  padding: 0;
  color: inherit;
  font: inherit;
}
.modular-solutions-bento-card:focus-visible {
  outline: none;
}
.modular-solutions-bento-card:focus-visible
  .modular-solutions-bento-card__dialog-entry-wrapper {
  outline: 2px solid var(--hds-color-action-border-solid);
  outline-offset: 3px;
}
.modular-solutions-bento-card img,
.modular-solutions-bento-card svg {
  pointer-events: none;
}
.modular-solutions-bento-card__inner {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: calc(var(--card-radius) - 1px);
  background: #fff;
}
.modular-solutions-bento-card__background {
  position: absolute;
  inset: 0;
}
@supports selector(:has(*)) {
  @media (min-width: 940px) {
    .modular-solutions-bento-card__inner {
      inset: calc(-1 * var(--card-grow-y)) calc(-1 * var(--card-grow-x))
        calc(-1 * var(--card-grow-y)) calc(-1 * var(--card-grow-x));
      border-radius: 0;
      clip-path: inset(
        var(--card-grow-y) var(--card-grow-x) var(--card-grow-y)
          var(--card-grow-x) round calc(var(--card-radius) - 1px)
      );
    }
  }
  @media (min-width: 940px) and (prefers-reduced-motion: no-preference) {
    .modular-solutions-bento-card__inner {
      transition: clip-path var(--card-duration) var(--card-ease);
    }
  }
}
.modular-solutions-bento-card__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: calc(var(--card-radius) - 1px);
  overflow: hidden;
}
.modular-solutions-bento-card__content-inner {
  width: 100%;
  height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__content-inner {
    transition: transform var(--card-duration) var(--card-ease);
  }
}
.modular-solutions-bento-card__text {
  pointer-events: none;
  max-width: min((100% - 80px), 21ch);
  position: absolute;
  top: var(--hds-space-core-200);
  left: var(--hds-space-core-200);
  z-index: 3;
  font-size: var(--hds-font-heading-md-size);
}
@media (min-width: 640px) {
  .modular-solutions-bento-card__text {
    max-width: min((100% - 100px), 21ch);
  }
  .modular-solutions-bento-card__text .modular-solutions-bento-card__title {
    font-size: min(var(--hds-font-heading-md-size), 2.75vw);
  }
}
@media (min-width: 840px) {
  .modular-solutions-bento-card__text {
    max-width: min((100% - 120px), 21ch);
  }
  .modular-solutions-bento-card__text .modular-solutions-bento-card__title {
    font-size: min(var(--hds-font-heading-md-size), 3.3vw);
  }
}
@media (min-width: 940px) {
  .modular-solutions-bento-card__text {
    max-width: 21ch;
    padding-right: 60px;
    top: var(--hds-space-core-300);
    left: var(--hds-space-core-300);
  }
  .modular-solutions-bento-card__text .modular-solutions-bento-card__title {
    font-size: min(var(--hds-font-heading-md-size), 2.1vw);
  }
}
.modular-solutions-bento-card__title {
  text-wrap: balance;
  font-weight: bold;
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__title {
    transition: transform var(--card-duration) var(--card-ease);
  }
}
.modular-solutions-bento-card__dialog-entry {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  z-index: 3;
  pointer-events: none;
}
.modular-solutions-bento-card__dialog-entry:before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  opacity: 0;
  border-radius: 4px;
  background: var(--hds-color-action-bg-solid);
}
.modular-solutions-bento-card__dialog-entry:after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  border-radius: 4px;
  background: var(--hds-color-core-brand-25);
}
.modular-solutions-bento-card__dialog-entry
  .modular-solutions-bento-card__dialog-entry-wrapper {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: background-color;
  z-index: 1;
}
.modular-solutions-bento-card__dialog-entry svg path {
  fill: var(--hds-color-core-brand-600);
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__dialog-entry {
    transition: transform var(--card-duration) var(--card-ease);
  }
  .modular-solutions-bento-card__dialog-entry:after,
  .modular-solutions-bento-card__dialog-entry:before {
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .modular-solutions-bento-card__dialog-entry svg path {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@media (pointer: fine) {
  :is(
      :is(
          .modular-solutions-bento-card:hover
            .modular-solutions-bento-card__dialog-entry
        )
        svg
    )
    path {
    fill: var(--hds-color-core-neutral-0);
  }
  :is(
      :is(
          .modular-solutions-bento-card:hover
            .modular-solutions-bento-card__dialog-entry
        )
        svg
    )
    path:first-child {
    transform: translate(1px, -1px);
  }
  :is(
      :is(
          .modular-solutions-bento-card:hover
            .modular-solutions-bento-card__dialog-entry
        )
        svg
    )
    path:nth-child(2) {
    transform: translate(-1px, 1px);
  }
  :is(
    .modular-solutions-bento-card:hover
      .modular-solutions-bento-card__dialog-entry
  ):before {
    opacity: 1;
  }
  :is(
    .modular-solutions-bento-card:hover
      .modular-solutions-bento-card__dialog-entry
  ):after {
    opacity: 0;
  }
}
.modular-solutions-bento-card__graphic {
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__graphic {
    transition: transform var(--card-duration) var(--card-ease);
  }
}
.modular-solutions-bento-card__border {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: var(--card-radius);
  background: var(--hds-color-core-neutral-50);
  overflow: hidden;
  pointer-events: none;
}
@supports selector(:has(*)) {
  @media (min-width: 940px) {
    .modular-solutions-bento-card__border {
      inset: calc(-1 * var(--card-grow-y) - 1px)
        calc(-1 * var(--card-grow-x) - 1px) calc(-1 * var(--card-grow-y) - 1px)
        calc(-1 * var(--card-grow-x) - 1px);
      clip-path: inset(
        var(--card-grow-y) var(--card-grow-x) var(--card-grow-y)
          var(--card-grow-x) round var(--card-radius)
      );
    }
  }
  @media (min-width: 940px) and (prefers-reduced-motion: no-preference) {
    .modular-solutions-bento-card__border {
      transition: clip-path var(--card-duration) var(--card-ease);
    }
  }
}
.modular-solutions-bento-card__border-color {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80%;
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 940px) {
  .modular-solutions-bento-card__border-color {
    display: block;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__border-color {
    transition: opacity 0.25s linear;
  }
}
.modular-solutions-bento-card__border-color-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(
    circle,
    var(--hds-color-core-brand-400),
    var(--hds-color-core-magenta-350) 33%,
    var(--hds-color-core-neutral-50) 66%
  );
  transform: translate3d(var(--card-mouse-x), var(--card-mouse-y), 0)
    scale(var(--border-scale, 1));
  --border-hole-radius: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card__border-color-gradient {
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }
}
@media (min-width: 940px) {
  .modular-solutions-bento__card-payments
    .modular-solutions-bento-card__border-color {
    width: 130%;
    height: auto;
  }
  .modular-solutions-bento__card-payments
    .modular-solutions-bento-card__border-color-gradient {
    inset: 15%;
  }
  .modular-solutions-bento__card-payments .modular-solutions-bento-card__text {
    max-width: 42ch;
  }
  .modular-solutions-bento__card-connect
    .modular-solutions-bento-card__border-color {
    width: 130%;
    height: auto;
  }
  .modular-solutions-bento__card-connect
    .modular-solutions-bento-card__border-color-gradient {
    inset: 30%;
  }
}
@media (min-width: 940px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .modular-solutions-bento-card:hover
    .modular-solutions-bento-card__border-color {
    opacity: 1;
  }
  :is(
      :is(
          .modular-solutions-bento-card:hover
            .modular-solutions-bento-card__dialog-entry
        )
        svg
    )
    path:first-child {
    transform: translate(2px, -2px);
  }
  :is(
      :is(
          .modular-solutions-bento-card:hover
            .modular-solutions-bento-card__dialog-entry
        )
        svg
    )
    path:nth-child(2) {
    transform: translate(-2px, 2px);
  }
}
@supports selector(:has(*)) {
  @media (min-width: 940px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .modular-solutions-bento-card:hover .modular-solutions-bento-card__title {
      transform: translate(var(--card-shift-x), var(--card-shift-y));
    }
    .modular-solutions-bento-card:hover
      .modular-solutions-bento-card__dialog-entry {
      transform: translate(calc(var(--card-shift-x) * -1), var(--card-shift-y));
    }
    .modular-solutions-bento-card:hover .modular-solutions-bento-card__inner {
      clip-path: inset(0 round calc(var(--card-radius) - 1px));
    }
    .modular-solutions-bento-card:hover .modular-solutions-bento-card__border {
      clip-path: inset(0 round var(--card-radius));
    }
  }
}
@property --hover-progress {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
.billing-plan-graphic__wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.billing-modal-fattura-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #f6f8fa;
  border-radius: 8px;
  padding: 12px;
}
.billing-modal-fattura-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.billing-plan-graphic__wrapper--fattura {
  overflow: hidden;
  background: #f6f8fa;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.billing-plan-graphic__fattura-img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.billing-plan-graphic__plan-grid {
  display: flex;
  width: 90%;
  padding: var(--hds-space-core-300);
  gap: min(1.08vw, 14px);
  flex-direction: column;
  align-items: center;
  --hover-progress: 0;
  --base-scroll-progress: calc(var(--progress, 0) * 0.95);
  --hover-boost: calc(var(--hover-progress) * 0.05);
  --combined-progress: calc(var(--base-scroll-progress) + var(--hover-boost));
  transition: --hover-progress 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (prefers-reduced-motion: reduce) {
  .billing-plan-graphic__plan-grid {
    --hover-progress: 1;
    transition: none;
  }
}
.billing-plan-graphic__plan-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
}
.billing-plan-graphic__plan-overview {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
.billing-plan-graphic__icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hds-color-core-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
}
.billing-plan-graphic__icon {
  color: var(--hds-color-core-brand-400);
}
.billing-plan-graphic__plan-text {
  display: flex;
  flex-direction: column;
}
.billing-plan-graphic__plan-name {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 14px;
  line-height: 20px;
  color: var(--hds-color-core-neutral-990);
}
.billing-plan-graphic__plan-cadence {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.003em;
  color: var(--hds-color-core-neutral-600);
}
.billing-plan-graphic__plan-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.billing-plan-graphic__item-title {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  color: var(--hds-color-core-neutral-990);
}
.billing-plan-graphic__item-details {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 16px;
  color: var(--hds-color-core-neutral-600);
}
.billing-plan-graphic__usage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.billing-plan-graphic__usage-info {
  display: flex;
  align-items: center;
  gap: 4px;
}
.billing-plan-graphic__usage-icon {
  width: 12px;
  height: 12px;
}
.billing-plan-graphic__usage-text {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  color: var(--hds-color-core-neutral-800);
}
.billing-plan-graphic__usage-bar {
  width: 100%;
  height: 14px;
  background: var(--hds-color-core-neutral-25);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.billing-plan-graphic__usage-progress-wrapper {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 230px;
  height: 10px;
  border-radius: 3px;
  overflow: hidden;
  transform: translateX(calc(-100% + var(--combined-progress) * 100%));
}
.billing-plan-graphic__usage-progress {
  position: absolute;
  width: 230px;
  top: 0;
  left: 0;
  height: 10px;
  background: linear-gradient(90deg, #0066cc 3.13%, #fb76fa 50%, #ffcf5e);
  border-radius: 3px;
  transform: translateX(calc(100% - var(--combined-progress) * 100%));
}
.billing-plan-graphic__chart-header {
  padding: 14px;
}
.billing-plan-graphic__chart-period {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 16px;
  color: var(--hds-color-core-neutral-600);
}
.billing-plan-graphic__chart-title {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  color: var(--hds-color-core-neutral-990);
  margin-top: 2px;
}
.billing-plan-graphic__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3.2px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 14px;
}
.billing-plan-graphic__bar {
  width: 4.28px;
  height: 149px;
  background: var(--hds-color-core-brand-400);
  border-radius: 1px;
  transform-origin: bottom;
  --scale-start: calc(var(--bar-index) / var(--bar-total) * 0.7);
  --scale-end: calc(var(--scale-start) + 0.3);
  --combined-progress-bars: calc(
    var(--progress, 0) * 0.9 + var(--hover-progress) * 0.1
  );
  --progress-in-window: clamp(
    0,
    calc(
      (var(--combined-progress-bars) - var(--scale-start)) /
        (var(--scale-end) - var(--scale-start))
    ),
    1
  );
  transform: scaleY(calc(var(--bar-target-scale) * var(--progress-in-window)));
}
.billing-plan-graphic__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(calc(50% - var(--progress, 0) * 50%));
}
.billing-plan-graphic__background-gradient-1 {
  width: calc(335.79 / 400 * 100%);
  aspect-ratio: 671.58/431.05;
  bottom: -5%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(83, 58, 253, 0.8) 62.5%,
    rgba(83, 58, 253, 0) 100%
  );
  z-index: 1;
}
.billing-plan-graphic__background-gradient-1,
.billing-plan-graphic__background-gradient-2 {
  position: absolute;
  border-radius: 100%;
  left: 50%;
  filter: blur(10px);
  transform: translate3d(-50%, 0, 0) scale(2);
  opacity: 0.85;
}
.billing-plan-graphic__background-gradient-2 {
  width: calc(342.68 / 400 * 100%);
  aspect-ratio: 685.36/407.42;
  bottom: 20%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(243, 99, 243, 0.8) 53.85%,
    rgba(243, 99, 243, 0) 100%
  );
  z-index: 2;
}
.billing-plan-graphic__background-gradient-3 {
  position: absolute;
  width: calc(350.28 / 400 * 100%);
  aspect-ratio: 700.55/419.06;
  border-radius: 100%;
  left: 50%;
  bottom: 36%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffcf5e 41.35%,
    rgba(255, 207, 94, 0) 100%
  );
  filter: blur(10px);
  transform: translate3d(-50%, 0, 0) scale(2);
  z-index: 3;
  opacity: 0.85;
}
.billing-plan-graphic__background-gradient-4 {
  position: absolute;
  width: calc(340 / 400 * 100%);
  aspect-ratio: 680/309;
  left: 50%;
  bottom: 60%;
  background: linear-gradient(180deg, #fff 41.35%, hsla(0, 0%, 100%, 0));
  filter: blur(15px);
  transform: translate3d(-50%, 0, 0) scale(2);
  z-index: 3;
}
.money-movement-graphic__background {
  position: absolute;
  inset: -20px;
  background: transparent;
  display: flex;
  align-items: center;
}
.money-movement-graphic__background-canvas {
  width: 100%;
  height: 100%;
}
.money-movement-graphic__ui-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.money-movement-graphic__arc-ui {
  --ui-x: 0px;
  --ui-y: 0px;
  --ui-scale: 1;
  --ui-opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 12px 4px 4px;
  gap: 10px;
  background: var(--hds-color-util-neutral-0);
  border: 1px solid var(--hds-color-util-neutral-25);
  box-shadow:
    0 13.5px 27px -12.4px rgba(50, 50, 93, 0.12),
    0 8.1px 16.2px -8.1px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  pointer-events: auto;
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(var(--ui-x), var(--ui-y), 0) translate(-50%, -50%)
    scale(var(--ui-scale));
  opacity: var(--ui-opacity);
  transition: transform 0.15s ease-out;
}
.money-movement-graphic__arc-ui-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
}
.money-movement-graphic__arc-ui-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.money-movement-graphic__arc-ui-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 4px;
}
.money-movement-graphic__arc-ui-amount {
  color: var(--hds-color-util-neutral-990);
}
.money-movement-graphic__arc-ui-amount,
.money-movement-graphic__arc-ui-currency {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
  line-height: 1.4;
}
.money-movement-graphic__arc-ui-currency {
  color: var(--hds-color-util-neutral-600);
}
.agentic-graphic__background {
  position: absolute;
  inset: -20px;
  background: var(--hds-color-surface-bg-quiet);
  display: flex;
  align-items: center;
}
.agentic-graphic__background:before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    hsla(24, 92%, 70%, 0) 0,
    rgba(249, 109, 149, 0.075) 45%,
    rgba(153, 61, 240, 0.05) 55%,
    rgba(125, 31, 255, 0) 80%
  );
}
.agentic-graphic__background-canvas {
  width: 100%;
  height: 100%;
}
.issuing-graphic__background {
  position: absolute;
  inset: -20px;
  background: var(--hds-color-surface-bg-quiet);
  display: flex;
  align-items: center;
}
.issuing-graphic__background-canvas {
  width: 100%;
  height: 100%;
}
.lazy-animation {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.lazy-animation--loaded {
  opacity: 1;
}
.modular-solutions-bento {
  position: relative;
}
.modular-solutions-bento__layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hds-space-core-200);
  width: 100%;
}
.modular-solutions-bento__layout .modular-solutions-bento-card {
  flex-basis: 100%;
  max-height: 576px;
}
@media (min-width: 640px) {
  .modular-solutions-bento__layout .modular-solutions-bento-card {
    flex-basis: calc(50% - var(--hds-space-core-200));
    max-height: 100%;
  }
}
@media (min-width: 940px) {
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-payments {
    aspect-ratio: 816/676;
    max-width: 816px;
    flex-basis: calc(66.666% - 8px);
  }
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-billing {
    aspect-ratio: 400/676;
    max-width: 400px;
    flex-basis: calc(33.333% - 8px);
  }
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-agentic-commerce,
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-issuing {
    aspect-ratio: 400/676;
    max-width: 400px;
    flex-basis: calc(33.333% - 12px);
  }
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-crypto {
    aspect-ratio: 400/676;
    max-width: 400px;
    flex-basis: calc(33.333% - 8px);
  }
  .modular-solutions-bento__layout
    .modular-solutions-bento-card.modular-solutions-bento__card-connect {
    aspect-ratio: 1232/450;
    max-width: 1232px;
    flex-basis: 100%;
  }
}
.modular-solutions-bento__card-payments .modular-solutions-bento-card__graphic {
  inset: 30px 0 0 -10px;
}
@media (min-width: 940px) {
  .modular-solutions-bento__card-payments
    .modular-solutions-bento-card__graphic {
    inset: 0;
  }
}
.modular-solutions-bento__card-agentic-commerce
  .modular-solutions-bento-card__graphic {
  inset: 90px 0 0 0;
}
@media (min-width: 940px) {
  .modular-solutions-bento__card-agentic-commerce
    .modular-solutions-bento-card__graphic {
    inset: 0;
  }
}
.modular-solutions-bento__card-billing .modular-solutions-bento-card__graphic {
  inset: 80px 0 0 0;
}
.modular-solutions-bento__card-billing:hover .billing-plan-graphic__plan-grid {
  --hover-progress: 1;
}
@media (min-width: 640px) {
  .modular-solutions-bento__card-billing
    .modular-solutions-bento-card__graphic {
    inset: 40px 0 0 0;
  }
}
.modular-solutions-bento__card-agentic-commerce
  .modular-solutions-bento-card__graphic {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.modular-solutions-bento__card-connect .modular-solutions-bento-card__graphic {
  left: -20px;
  right: 0;
  bottom: 0;
}
@media (min-width: 640px) {
  .modular-solutions-bento__card-connect
    .modular-solutions-bento-card__graphic {
    left: -30px;
    bottom: 6px;
  }
}
@media (min-width: 940px) {
  .modular-solutions-bento__card-connect
    .modular-solutions-bento-card__graphic {
    left: 160px;
  }
}
.lazy-bento-graphic {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.payments-graphic {
  position: relative;
  height: 100%;
  display: grid;
  column-gap: 2px;
  grid: auto/.64fr 0.36fr;
}
@media (min-width: 640px) {
  .payments-graphic {
    column-gap: 6px;
  }
}
@media (min-width: 940px) {
  .payments-graphic {
    grid: auto/.35fr 0.65fr;
    column-gap: 12px;
  }
}
@media (min-width: 640px) {
  .payments-terminal-dom-graphic {
    margin: unset;
    transform: translateY(24px);
  }
}
@media (min-width: 940px) {
  .payments-terminal-dom-graphic {
    transform: translateY(0);
  }
}
.payments-checkout-dom-graphic {
  margin: unset;
  transform: translateY(8px);
}
@media (min-width: 640px) {
  .payments-checkout-dom-graphic {
    transform: translateY(24px);
  }
}
@media (min-width: 940px) {
  .payments-checkout-dom-graphic {
    transform: translateY(0);
  }
}
.payments-graphic__background {
  position: absolute;
  inset: 0;
}
.payments-graphic__background-image {
  display: none;
}
.payments-graphic__background-image img {
  position: absolute;
  bottom: 0;
  width: 860px;
  height: auto;
  max-width: none;
}
@media (min-width: 480px) and (max-width: 639px) {
  .payments-graphic__background-image {
    display: block;
  }
}
@media (min-width: 940px) {
  .payments-graphic__background-image {
    display: block;
  }
}
.payments-graphic__background-image-mobile {
  display: block;
}
.payments-graphic__overlay {
  position: absolute;
  bottom: 80px;
  left: -5%;
  transform: translateX(0%);
  width: 350px;
  height: auto;
  z-index: 10;
}
.payments-graphic__overlay-right {
  position: absolute;
  bottom: 80px;
  right: 0%;
  transform: translateX(0%);
  width: 350px;
  height: auto;
  z-index: 10;
}
.payments-graphic__background-image-mobile img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
@media (min-width: 480px) and (max-width: 639px) {
  .payments-graphic__background-image-mobile {
    display: none;
  }
}
@media (min-width: 940px) {
  .payments-graphic__background-image-mobile {
    display: none;
  }
}
@media (max-width: 479px) {
  .payments-graphic__overlay-right {
    display: none;
  }
  .payments-graphic__overlay {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
  }
}
@media (min-width: 480px) and (max-width: 939px) {
  .payments-graphic__overlay-right {
    display: none;
  }
  .payments-graphic__overlay {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
  }
}
.payments-graphic__terminal {
  position: relative;
  width: 280px;
}
.payments-graphic__terminal-image {
  position: absolute;
  top: 158px;
  left: 18px;
  width: 100%;
}
.payments-graphic__terminal-screen {
  position: absolute;
  top: 190px;
  left: 68px;
  width: 178px;
  height: 340px;
  overflow: hidden;
}
.payments-graphic__terminal-screen-icon {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.payments-graphic__terminal-pay-label {
  height: 15px;
  color: var(--hds-color-util-neutral-900);
  margin-top: 24px;
  padding: 0 12px;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.1px;
  overflow: hidden;
}
.payments-graphic__terminal-pay-label-values {
  height: 100%;
}
.payments-graphic__terminal-pay-label-values > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payments-graphic__terminal-payment-amount {
  height: 30px;
  color: var(--hds-color-util-neutral-990);
  margin-top: 6px;
  padding: 0 12px;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.52px;
  overflow: hidden;
}
.payments-graphic__terminal-payment-amount-values {
  height: 100%;
}
.payments-graphic__terminal-payment-amount-values > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payments-graphic__terminal-message {
  height: 24px;
  color: var(--hds-color-util-neutral-500);
  margin-top: 12px;
  padding: 0 12px;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.1px;
  text-align: center;
  overflow: hidden;
}
.payments-graphic__terminal-message-values {
  height: 100%;
}
.payments-graphic__terminal-message-values > div {
  height: 100%;
  display: flex;
  justify-content: center;
}
.payments-graphic__terminal-message-value-jp {
  padding-inline: var(--hds-space-core-200);
}
.payments-graphic__terminal-transaction-details {
  position: relative;
  margin-top: 22px;
  width: 100%;
  text-align: center;
}
.payments-graphic__terminal-transaction-details:after,
.payments-graphic__terminal-transaction-details:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: 1;
}
.payments-graphic__terminal-transaction-details:before {
  left: 0;
  background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
}
.payments-graphic__terminal-transaction-details:after {
  right: 0;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff);
}
.payments-graphic__terminal-transaction-details-content {
  display: flex;
  flex-wrap: nowrap;
}
.payments-graphic__terminal-transaction-details-block {
  width: 100%;
  flex-shrink: 0;
  padding: 0 12px;
}
.payments-graphic__terminal-transaction-details-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--hds-color-util-border-quiet);
}
.payments-graphic__terminal-transaction-details-label {
  color: var(--hds-color-util-neutral-800);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.1px;
  text-align: left;
}
.payments-graphic__terminal-transaction-details-value {
  color: var(--hds-color-util-neutral-600);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.1px;
}
.payments-graphic__terminal-transaction-button {
  position: relative;
  margin: 20px auto;
  width: calc(100% - 24px);
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.1px;
  background: #ffe0d1;
  color: var(--hds-color-core-orange-350);
}
.payments-graphic__terminal-transaction-button-text {
  height: 12px;
  overflow: hidden;
}
.payments-graphic__terminal-transaction-button-text-values {
  height: 100%;
}
.payments-graphic__terminal-transaction-button-text-values > div {
  height: 100%;
  display: flex;
  justify-content: center;
}
.payments-graphic__terminal-transaction-button-content {
  position: absolute;
  inset: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payments-graphic__terminal-payment-overlay {
  position: absolute;
  inset: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--hds-color-util-neutral-0);
  opacity: 0;
}
.payments-graphic__terminal-payment-overlay-state-icon {
  position: relative;
  height: 90px;
  width: 90px;
}
.payments-graphic__terminal-payment-overlay-state-icon svg {
  position: absolute;
}
.payments-graphic__terminal-payment-overlay-state {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  color: #1a202c;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 16px;
  line-height: 1.76;
  letter-spacing: 0.16px;
}
.payments-graphic__terminal-payment-overlay-approved {
  position: absolute;
}
.payments-graphic__terminal-payment-overlay-amount {
  color: #3f4b66;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 12px;
  line-height: 1.17;
}
.payments-graphic__checkout {
  position: absolute;
  top: 160px;
}
.payments-graphic__checkout-header {
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 36px;
  border-bottom: 1px solid #f8fafc;
}
.payments-graphic__checkout-header-logos-wrapper {
  height: 16px;
  overflow: hidden;
}
.payments-graphic__checkout-header-logos {
  height: 100%;
}
.payments-graphic__checkout-header-logos > div {
  height: 100%;
  display: flex;
  align-items: center;
}
.payments-graphic__checkout-header-logos svg {
  transform: translateY(2px);
}
.payments-graphic__checkout-body {
  display: grid;
  grid-template-columns: 310px 1fr;
}
.payments-graphic__checkout-payment-details {
  padding: 36px 32px 10px 36px;
  border-right: 1px solid #f8fafc;
}
.payments-graphic__checkout-input-label {
  height: 9px;
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 8px;
  line-height: 1.12;
  margin-bottom: 8px;
  overflow: hidden;
}
.payments-graphic__checkout-input-label-values,
.payments-graphic__checkout-input-label-values > div {
  height: 100%;
}
.payments-graphic__checkout-input {
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--hds-color-util-border-quiet);
  background: var(--hds-color-util-neutral-0);
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.2;
  overflow: hidden;
}
.payments-graphic__checkout-input-values {
  height: 100%;
}
.payments-graphic__checkout-input-values > div {
  height: 100%;
  padding: 2px 12px 4px;
  display: flex;
  align-items: center;
}
.payments-graphic__checkout-instant-buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  height: 24px;
}
.payments-graphic__checkout-instant-button {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payments-graphic__checkout-link {
  background: #00d66f;
}
.payments-graphic__checkout-apple-pay {
  background: #000;
}
.payments-graphic__checkout-separator {
  position: relative;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.payments-graphic__checkout-separator:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  transform: translateY(-50%);
  background: var(--hds-color-util-neutral-50);
}
.payments-graphic__checkout-separator-text {
  height: 9px;
  position: relative;
  color: var(--hds-color-util-neutral-500);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 8px;
  line-height: 1.07;
  transform: translateY(-1px);
  z-index: 1;
  overflow: hidden;
}
.payments-graphic__checkout-separator-text-values {
  height: 100%;
}
.payments-graphic__checkout-separator-text-values > div {
  display: flex;
  justify-content: center;
  padding: 0 4px;
  width: fit-content;
  height: 100%;
  background: #fff;
  margin: 0 auto;
}
.payments-graphic__checkout-payment-methods {
  position: relative;
  clip-path: inset(0 round 6px);
}
.payments-graphic__checkout-payment-methods--hidden {
  opacity: 0;
}
.payments-graphic__checkout-payment-methods-border {
  position: absolute;
  inset: 0;
}
.payments-graphic__checkout-payment-methods-border-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  border-radius: var(--hds-space-core-radius-md) var(--hds-space-core-radius-md)
    0 0;
  border: 1px solid var(--hds-color-util-border-quiet);
  border-bottom: none;
}
.payments-graphic__checkout-payment-methods-border-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--hds-color-util-border-quiet);
  border-top: none;
}
.payments-graphic__checkout-payment-methods-border-horizontal {
  position: absolute;
  inset: 6px 0;
  border: 1px solid var(--hds-color-util-border-quiet);
  border-top: none;
  border-bottom: none;
}
.payments-graphic__checkout-payment-methods-item {
  padding: 11px 8px;
  display: grid;
  grid: auto/auto auto 1fr;
  align-items: center;
  position: relative;
}
.payments-graphic__checkout-payment-methods-item:nth-child(n + 3) {
  border-top: 1px solid var(--hds-color-util-border-quiet);
}
.payments-graphic__checkout-payment-methods-item-checkbox {
  padding-right: 8px;
}
.payments-graphic__checkout-payment-methods-active-checkbox {
  position: absolute;
  transform: translateY(-100%);
}
.payments-graphic__checkout-payment-methods-item-icon {
  padding-right: 5px;
}
.payments-graphic__checkout-payment-methods-item-icon--card {
  width: 19px;
  clip-path: inset(0 5px 0 0);
}
.payments-graphic__checkout-payment-methods-card-icons {
  width: 14px;
  display: flex;
  flex-wrap: nowrap;
}
.payments-graphic__checkout-payment-methods-card-icons > div {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payments-graphic__checkout-payment-methods-item-card-details {
  position: absolute;
  top: calc(100% - 11px);
  right: 0;
  left: 0;
  grid-column: 1/4;
  display: grid;
  grid: auto/1fr 1fr;
  grid-gap: 5px;
  padding: 8px 0 4px;
}
.payments-graphic__checkout-payment-methods-card-input {
  height: 30px;
  border-radius: var(--hds-space-core-radius-md);
  background: var(--hds-color-util-neutral-25);
  padding: 9px 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--hds-color-util-neutral-500);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: -0.081px;
}
.payments-graphic__checkout-payment-methods-card-number {
  grid-column: 1/3;
}
.payments-graphic__checkout-payment-methods-item-details {
  grid-column: 2/4;
  padding: 8px 10px 0 0;
  color: var(--hds-color-util-neutral-700);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 9px;
  line-height: 1.3;
}
.payments-graphic__checkout-payment-methods-item-details--de {
  padding-inline-end: var(--hds-space-core-500);
}
.payments-graphic__checkout-payment-methods-item-label {
  color: var(--hds-color-util-neutral-700);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 0.8;
  transform: translateY(-6%);
}
.payments-graphic__checkout-payment-methods-item-label--active {
  color: var(--hds-color-util-neutral-900);
}
.payments-graphic__checkout-payment-methods-item-label--card {
  height: 8px;
  width: 32px;
  overflow: hidden;
}
.payments-graphic__checkout-payment-methods-item-label-values {
  width: 100%;
  height: 100%;
  display: flex;
}
.payments-graphic__checkout-payment-methods-item-label-values > div {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.payments-graphic__checkout-payment-button {
  margin: 14px 0;
  width: 100%;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffe0d1;
  border-radius: 4px;
  color: var(--hds-color-core-orange-350);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.1px;
}
.payments-graphic__checkout-payment-button-text {
  height: 12px;
  overflow: hidden;
}
.payments-graphic__checkout-payment-button-text-values,
.payments-graphic__checkout-payment-button-text-values > div {
  height: 100%;
}
.payments-graphic__checkout-payment-button--hidden {
  opacity: 0;
}
.payments-graphic__checkout-order-summary {
  padding: 52px 10px 10px 34px;
}
.payments-graphic__checkout-order-summary-title {
  height: 18px;
  margin-bottom: 14px;
  color: var(--hds-color-util-neutral-900);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
  overflow: hidden;
}
.payments-graphic__checkout-order-summary-title-values,
.payments-graphic__checkout-order-summary-title-values > div {
  height: 100%;
}
.payments-graphic__checkout-item-card {
  width: 180px;
  height: 96px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--hds-color-util-border-quiet);
  overflow: hidden;
}
.payments-graphic__checkout-item-card-contents {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.payments-graphic__checkout-item-card-brand-content {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 4px;
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  gap: 10px;
}
.payments-graphic__checkout-item-card-image-wrapper {
  clip-path: inset(0 round 2px);
}
.payments-graphic__checkout-item-card-image img {
  width: 80px;
  height: 86px;
  object-fit: cover;
  object-position: center;
}
.payments-graphic__checkout-item-card-details-label {
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 9px;
  line-height: 1.2;
}
.payments-graphic__checkout-item-card-details-metadata {
  color: var(--hds-color-util-neutral-500);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 9px;
  line-height: 1.4;
}
.payments-graphic__checkout-item-card-details-value {
  margin-top: 10px;
  color: var(--hds-color-util-neutral-600);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.2;
}
.payments-graphic__checkout-payment-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  width: 186px;
}
.payments-graphic__checkout-payment-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payments-graphic__checkout-payment-table-row--total {
  padding-top: 10px;
  border-top: 1px solid var(--hds-color-util-border-quiet);
  background: var(--hds-color-util-neutral-0);
}
.payments-graphic__checkout-payment-table-row-label-block {
  height: 16px;
  overflow: hidden;
}
.payments-graphic__checkout-payment-table-row-label-block-contents {
  height: 100%;
}
.payments-graphic__checkout-payment-table-row-label {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--hds-color-util-neutral-600);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 14px;
}
.payments-graphic__checkout-payment-table-row-value-block {
  height: 16px;
  overflow: hidden;
}
.payments-graphic__checkout-payment-table-row-value-block-contents {
  height: 100%;
}
.payments-graphic__checkout-payment-table-row-value {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 10px;
  line-height: 14px;
}
.payments-graphic__checkout-browser-url-block {
  height: 100%;
  clip-path: inset(0 -60px);
}
.payments-graphic__checkout-browser-url-values {
  height: 100%;
}
.payments-graphic__checkout-browser-url {
  height: 100%;
  display: flex;
  align-items: center;
}
.payments-graphic__checkout-browser-url--cartsy {
  transform: translateX(5px);
}
.payments-graphic__checkout-browser-url--showflix {
  transform: translate(-8px);
}
.agentic-commerce-graphic__wrapper {
  position: absolute;
  inset: 12vw 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
@media (min-width: 640px) {
  .agentic-commerce-graphic__wrapper {
    top: 6vw;
  }
}
@media (min-width: 940px) {
  .agentic-commerce-graphic__wrapper {
    top: min(6vw, 60px);
  }
}
.agentic-commerce-graphic__wrapper--showing {
  opacity: 1;
}
.agentic-commerce-graphic {
  --agentic-box-shadow: 0 20.187px 40.374px -20.187px rgba(0, 0, 0, 0.1);
  width: 82%;
}
.agentic-commerce-graphic__layout {
  display: flex;
  flex-direction: column;
  padding: 0 var(--hds-space-core-300);
  gap: 16px;
}
.agentic-commerce-graphic__products {
  background: var(--hds-color-core-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  box-shadow: var(--agentic-box-shadow);
  outline: 1px solid var(--hds-canary-ui-stroke);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
}
.agentic-commerce-graphic__products-grid {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  position: relative;
  padding: 1px;
}
.agentic-commerce-graphic__chat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agentic-commerce-graphic__chat-bubble {
  background: var(--hds-color-util-neutral-0);
  border-radius: var(--hds-space-core-radius-md);
  outline: 1px solid var(--hds-canary-ui-stroke);
  box-shadow: var(--agentic-box-shadow);
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1.4;
  padding: 7px 15px;
}
.agentic-commerce-graphic__chat-bubble--user {
  align-self: flex-end;
  background: var(--hds-color-util-neutral-25);
  max-width: 230px;
}
.agentic-commerce-graphic__chat-bubble--agent {
  max-width: 250px;
}
.agentic-commerce-graphic__product-image {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  pointer-events: none;
  border-top-left-radius: var(--hds-space-core-radius-md);
  border-top-right-radius: var(--hds-space-core-radius-md);
  background-color: #ecf0f4;
}
.agentic-commerce-graphic__product-image img {
  display: block;
  aspect-ratio: 1;
  width: 92px;
}
.agentic-commerce-graphic__product-brand,
.agentic-commerce-graphic__product-description,
.agentic-commerce-graphic__product-price,
.agentic-commerce-graphic__product-variant {
  position: relative;
  pointer-events: none;
  font-family: var(--hds-font-family);
  font-size: 9px;
  font-weight: var(--hds-font-weight-normal);
  line-height: 1;
  padding: 0 8px;
}
.agentic-commerce-graphic__product-price {
  font-weight: var(--hds-font-weight-bold);
}
.agentic-commerce-graphic__product-brand {
  color: var(--hds-color-util-neutral-600);
  padding-bottom: var(--hds-space-core-radius-md);
}
.agentic-commerce-graphic__product-description {
  margin-block-start: 10px;
  margin-block-end: 3px;
}
.agentic-commerce-graphic__product-variant {
  color: var(--hds-color-util-neutral-600);
}
.agentic-commerce-graphic__product-price,
.agentic-commerce-graphic__product-variant {
  margin-bottom: 8px;
}
.agentic-commerce-graphic__cta-button {
  color: #2863b1;
  font-family: var(--hds-font-family);
  font-size: 11px;
  font-weight: var(--hds-font-weight-bold);
  line-height: 1.4;
  padding: 10px 0 12px;
  text-align: center;
}
.agentic-commerce-graphic__cta {
  background: rgba(40, 99, 177, 0.1);
  border-radius: var(--hds-space-core-radius-md);
}
.agentic-commerce-graphic__cta:hover {
  background: rgba(40, 99, 177, 0.125);
}
.agentic-commerce-graphic__product-cards__layout {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 8px;
}
.agentic-commerce-graphic__product-card {
  position: relative;
  border-radius: var(--hds-space-core-radius-md);
  background: var(--hds-color-util-border-quiet);
  overflow: hidden;
}
.agentic-commerce-graphic__product-card:after {
  display: block;
  position: absolute;
  inset: 1px;
  content: "";
  background: var(--hds-color-util-neutral-0);
  border-radius: calc(var(--hds-space-core-radius-md) - 1px);
}
.agentic-commerce-graphic__product-card:hover:before {
  opacity: 1;
}
@keyframes agentic-commerce-graphic-border-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}
.connect-platform-dom-graphic-wrapper {
  display: flex;
  width: 100%;
  padding-right: 40px;
}
@media (min-width: 940px) {
  .connect-platform-dom-graphic-wrapper {
    justify-content: flex-end;
  }
}
.connect-platform-dom-graphic {
  margin: unset;
}
.connect-graphic__background {
  position: absolute;
  inset: 0;
}
.connect-graphic__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.connect-graphic__background-image {
  display: none;
}
@media (min-width: 940px) {
  .connect-graphic__background-image {
    display: block;
  }
}
.connect-graphic__background-image-mobile {
  display: block;
}
@media (min-width: 940px) {
  .connect-graphic__background-image-mobile {
    display: none;
  }
}
.connect-platform-graphic {
  position: relative;
  width: 1000px;
  height: 457px;
}
.connect-platform-graphic__payment-card {
  position: absolute;
  top: 110px;
  left: 70px;
  width: 296px;
  height: 326px;
  display: flex;
  background: #fff;
  outline: 1px solid var(--hds-canary-ui-stroke);
  border-radius: 10px;
  box-shadow: 0 15.931px 31.863px rgba(50, 50, 93, 0.12);
  z-index: 2;
  overflow: hidden;
}
.connect-platform-graphic__payment-card-content {
  width: 100%;
  flex-shrink: 0;
  padding: 13px 18px 20px;
  transform: translateX(-200%);
}
.connect-platform-graphic__payment-card-header {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.connect-platform-graphic__payment-card-merchant-name {
  color: #1a202c;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 15px;
  line-height: 1.4;
}
.connect-platform-graphic__payment-screen {
  position: absolute;
  left: 18px;
  right: 18px;
}
.connect-platform-graphic__payment-screen--order-details {
  opacity: 1;
}
.connect-platform-graphic__payment-screen--success {
  opacity: 0;
}
.connect-platform-graphic__payment-screen-summary {
  margin: 16px 0 12px;
}
.connect-platform-graphic__payment-screen-summary-label {
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: -0.174px;
}
.connect-platform-graphic__payment-screen-summary-details {
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 1.4;
}
html[lang^="fr"]
  .connect-platform-graphic__payment-card-content--daybreak-yoga
  .connect-platform-graphic__payment-screen-summary-details {
  font-size: 10.5px;
}
.connect-platform-graphic__payment-card-order-data {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
}
.connect-platform-graphic__payment-card-order-data--pricing-type {
  padding-top: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #e5edf5;
  margin-top: 4px;
}
.connect-platform-graphic__payment-card-order-data--pricing-type:first-child {
  margin-top: 16px;
}
.connect-platform-graphic__payment-card-order-data--pricing-type.connect-platform-graphic__payment-card-dropdown-order-data {
  padding-top: 8px;
  padding-bottom: 8px;
}
.connect-platform-graphic__payment-card-order-pricing-type {
  display: flex;
  column-gap: 7px;
  align-items: center;
}
.connect-platform-graphic__payment-card-order-label {
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 1.45;
}
.connect-platform-graphic__payment-card-order-label--strong {
  font-weight: var(--hds-font-weight-bold);
}
.connect-platform-graphic__payment-card-order-pricing-type-saving {
  border-radius: 4.51px;
  background: #ecedfe;
  padding: 4px 6px;
  color: #0066cc;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 11px;
  line-height: 1;
}
.connect-platform-graphic__payment-card-order-pricing-type-saving--jackson-hot-yoga {
  background: var(--hds-color-util-accent-orange-50);
  color: var(--hds-color-util-accent-orange-350);
}
.connect-platform-graphic__payment-card-order-amount {
  color: var(--hds-color-util-neutral-500);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 1.45;
}
.connect-platform-graphic__payment-method-list {
  margin: 16px 0;
  display: grid;
  row-gap: 7px;
}
.connect-platform-graphic__payment-method {
  height: 34px;
  padding: 2px 15px;
  border-radius: var(--hds-space-core-radius-md);
  border: 1px solid #e7ecf1;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.connect-platform-graphic__payment-method--active {
  color: var(--hds-color-util-neutral-990);
  border-color: #0066cc;
  background: #f8f8ff;
}
.connect-platform-graphic__payment-method--active-jackson-hot-yoga {
  color: var(--hds-color-util-neutral-990);
  border-color: var(--hds-color-util-accent-orange-350);
  background: rgba(255, 229, 218, 0.1);
}
.connect-platform-graphic__payment-method-input {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #667691;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 1.45;
}
.connect-platform-graphic__payment-method-title {
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 11px;
  padding: 12px 0 8px;
}
.connect-platform-graphic__payment-method-card {
  margin-bottom: 10px;
  border: 0.5px solid #d4d4d4;
  border-radius: var(--hds-space-core-radius-md);
  padding: 10px;
}
.connect-platform-graphic__payment-method-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.connect-platform-graphic__payment-method-payment-card {
  background: #f5f5f5;
  padding: 4px 10px;
  display: grid;
  grid: auto/auto 1fr auto;
  column-gap: 10px;
  align-items: center;
}
.connect-platform-graphic__payment-method-payment-card-details {
  color: #171717;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  letter-spacing: -0.126px;
  line-height: 1.26;
}
.connect-platform-graphic__payment-method-payment-card-details-number {
  color: #707070;
}
.connect-platform-graphic__payment-card-pay-button {
  height: 36px;
  border-radius: var(--hds-space-core-radius-md);
  background: #ecedfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066cc;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 13px;
  letter-spacing: -0.205px;
}
.connect-platform-graphic__payment-card-pay-button--link {
  color: var(--hds-color-util-neutral-990);
  background: #00d66f;
}
.connect-platform-graphic__payment-card-pay-button--jackson-hot-yoga {
  color: var(--hds-color-util-accent-orange-350);
  background: var(--hds-color-util-accent-orange-50);
}
.connect-platform-graphic__payment-summary-table {
  margin-top: 20px;
}
.connect-platform-graphic__payment-summary-table-row {
  height: 42px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--hds-color-util-neutral-990);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 11px;
  line-height: 1.45;
  border-top: 1px solid var(--hds-color-util-border-quiet);
}
.connect-platform-graphic__payment-summary-table-row--total {
  font-weight: var(--hds-font-weight-bold);
}
.connect-platform-graphic__payment-summary-table-row--total
  .connect-platform-graphic__payment-summary-table-row-value {
  color: var(--hds-color-util-neutral-990);
}
.connect-platform-graphic__payment-summary-table-row-value {
  color: var(--hds-color-util-neutral-500);
}
.connect-platform-graphic__dashboard-browser {
  position: absolute;
  top: 26px;
  left: 216px;
  width: 728px;
  height: 464px;
}
.connect-platform-graphic__dashboard {
  background: #fff;
  border: 1px solid #f8fafc;
  border-radius: var(--hds-space-core-radius-md);
  box-shadow:
    0 4px 48.8px -30px rgba(50, 50, 93, 0.12),
    0 18px 36px -18px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 180px 1fr;
}
.connect-platform-graphic__dashboard-sidebar {
  padding: 14px 24px;
}
.connect-platform-graphic__dashboard-sidebar-title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  color: #1a202c;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 12px;
}
.connect-platform-graphic__dashboard-main {
  border-left: 1px solid #e5edf5;
}
.connect-platform-graphic__dashboard-header {
  padding: 24px 24px 18px;
  color: #1a202c;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 14px;
  line-height: 1.67;
}
.connect-platform-graphic__dashboard-table-header {
  display: grid;
  grid-template-columns: 2fr 1.82fr 2.4fr 1.4fr;
  padding: 0 24px 8px;
  color: #1a202c;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 9px;
  line-height: 1.6;
}
.connect-platform-graphic__dashboard-table-row {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1.82fr 2.4fr 1.4fr;
  padding: 6px 24px 8px;
  color: var(--hds-color-core-neutral-600);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.45;
  border-top: 1px solid #e5edf5;
}
.connect-platform-graphic__dashboard-table-row-bg {
  position: absolute;
  inset: 0;
  background-color: var(--hds-color-util-neutral-25);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
}
.connect-platform-graphic__dashboard-table-row-bg ~ div {
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}
.connect-platform-graphic__dashboard-table-account-column {
  color: #1a202c;
  font-weight: var(--hds-font-weight-bold);
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.connect-platform-graphic__connection {
  position: absolute;
  top: 88px;
  left: 102px;
}
.connect-platform-graphic__connection-ring {
  position: absolute;
  top: -3px;
  right: -7px;
  transform: scale(0);
}
.connect-platform-graphic__connection-amount-pill-container {
  --translate-x: 0;
  --translate-y: 0;
  position: absolute;
  top: -10px;
  right: -22px;
  transform: translate(var(--translate-x), var(--translate-y));
}
.connect-platform-graphic__connection-amount-pill {
  opacity: 0;
  background: #fff;
  height: 22px;
  padding-inline: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hds-space-core-radius-sm);
  border: 1px solid #f8fafc;
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 15.931px 31.863px -8px rgba(50, 50, 93, 0.12);
  will-change: transform, opacity;
}
@layer base {
  .modular-solutions-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--hds-color-surface-bg-subdued, #f8fafc);
    opacity: var(--bg-fade-opacity, 0);
    transition: opacity 0.15s cubic-bezier(0.33, 1, 0.68, 1);
    display: none;
  }
  @media (min-width: 640px) {
    .modular-solutions-bg:after {
      display: block;
    }
  }
  @media (max-width: 639px) {
    .modular-solutions-section {
      padding-block-start: var(--hds-space-core-700);
    }
  }
}
@layer app {
  @media (min-width: 640px) {
    .modular-solutions-section__description {
      display: inline;
    }
    .modular-solutions-section__description--short-for-mobile {
      display: none;
    }
  }
  @media (max-width: 639px) {
    .modular-solutions-section__description {
      display: none;
    }
    .modular-solutions-section__description--short-for-mobile {
      display: inline;
    }
  }
}
.sessions-section {
  --section-container-pbs-dt: var(--hds-space-core-1000);
  --section-container-pbs-tb: var(--hds-space-core-700);
  --section-container-pbs: var(--hds-space-core-600);
  --section-container-pbe-dt: var(--hds-space-core-1000);
  --section-container-pbe-tb: var(--hds-space-core-700);
  --section-container-pbe: var(--hds-space-core-600);
}
.sessions-section__card {
  position: relative;
  max-height: 400px;
}
.sessions-section__card,
.sessions-section__card-background {
  width: 100%;
  border-radius: var(--hds-space-core-radius-md);
  overflow: hidden;
}
.sessions-section__card-background {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.sessions-section__card-content-wrapper {
  position: relative;
  width: 100%;
}
.sessions-section__card-content-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0, transparent);
  border-radius: var(--hds-space-core-radius-md);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 640px) {
  .sessions-section__card-content-wrapper:before {
    display: none;
  }
}
.sessions-section__card-picture {
  display: none;
}
@media (min-width: 640px) {
  .sessions-section__card-picture {
    display: block;
  }
}
.sessions-section__card-picture-mobile {
  display: block;
}
@media (min-width: 640px) {
  .sessions-section__card-picture-mobile {
    display: none;
  }
}
.sessions-section__card-content {
  padding-inline: var(--hds-space-core-400);
  padding-block: var(--hds-space-core-400);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  max-height: 400px;
  position: relative;
  z-index: 1;
}
.sessions-section__card-logo {
  width: min(50%, 200px);
  grid-row: 3;
  align-self: end;
  grid-column: 1 / span 2;
}
.sessions-section__card-date {
  grid-column: 1;
  align-self: end;
}
.sessions-section__card-location {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  justify-self: end;
}
.sessions-section__card-content--headline {
  display: flex;
  flex-direction: column;
  row-gap: var(--hds-space-core-400);
  grid-column: 1 / span 2;
}
@media (min-width: 768px) {
  .sessions-section__card {
    aspect-ratio: 1232/400;
  }
  .sessions-section__card-content {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .sessions-section__card-content--headline {
    grid-column: 1 / span 3;
  }
  .sessions-section__card-logo {
    grid-row: 2;
  }
  .sessions-section__card-date {
    grid-row: 2;
    grid-column: 2;
    align-self: end;
    justify-self: center;
  }
  .sessions-section__card-location {
    grid-column: 3;
    align-self: end;
    justify-self: end;
  }
}
.sessions-section__card-button {
  background-color: var(--hds-color-core-neutral-0);
  color: var(--hds-color-action-text-solid);
  transition:
    background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.sessions-section__card-button:hover {
  color: var(--hds-color-util-brand-975);
}
.sessions-section__card-headline {
  max-width: 22ch;
}
.sessions-section__card-headline,
.sessions-section__card-text {
  color: var(--hds-color-core-neutral-0);
}
@layer app {
  .stats-section {
    --stats-section-transition-duration: 1.2s;
    --stats-section-transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  }
  @media (max-width: 939px) {
    .stats-section {
      --stats-section-transition-duration: 0s;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .stats-section {
      --stats-section-transition-duration: 0s;
    }
  }
  .stats-section__border {
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--hds-space-layout-page-margin);
    right: var(--hds-space-layout-page-margin);
    z-index: 2;
    max-width: var(--hds-canary-layout-content-maxWidth-borders);
    margin-inline: auto;
    padding-inline: var(
      --section-container-padding-inline,
      var(--hds-space-layout-content-margin)
    );
    border-inline: none;
    mix-blend-mode: multiply;
    pointer-events: none;
    display: none;
  }
  .hds-mode--dark .stats-section__border {
    mix-blend-mode: exclusion;
  }
  @media (min-width: 640px) {
    .stats-section__border {
      display: block;
      border-inline: 1px solid var(--hds-color-surface-border-quiet);
    }
  }
  .stats-section__border .stats-section__border-inline-graphic {
    position: absolute;
    aspect-ratio: 400/440;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: var(
      --section-container-padding-inline,
      var(--hds-space-layout-content-margin)
    );
  }
  @media (min-width: 640px) {
    .stats-section__border .stats-section__border-inline-graphic {
      aspect-ratio: 730/420;
      left: -1px;
      right: -1px;
    }
  }
  @media (min-width: 940px) {
    .stats-section__border .stats-section__border-inline-graphic {
      aspect-ratio: 1264/532;
    }
  }
  :is(.stats-section__border .stats-section__border-inline-graphic):before {
    content: "";
    display: none;
    height: 1px;
    background-color: var(--hds-color-surface-border-quiet);
    position: absolute;
    top: calc(-1 * var(--stats-menu-height, 0px));
    left: calc(
      -1 *
        var(
          --section-container-padding-inline,
          var(--hds-space-layout-content-margin)
        )
    );
    right: calc(
      -1 *
        var(
          --section-container-padding-inline,
          var(--hds-space-layout-content-margin)
        )
    );
  }
  @media (min-width: 940px) {
    :is(.stats-section__border .stats-section__border-inline-graphic):before {
      display: block;
    }
  }
  :is(.stats-section__border .stats-section__border-inline-graphic):after {
    content: "";
    display: none;
    height: 1px;
    background-color: var(--hds-color-surface-border-quiet);
    position: absolute;
    top: -1px;
    left: calc(
      -1 *
        var(
          --section-container-padding-inline,
          var(--hds-space-layout-content-margin)
        )
    );
    right: calc(
      -1 *
        var(
          --section-container-padding-inline,
          var(--hds-space-layout-content-margin)
        )
    );
  }
  @media (min-width: 940px) {
    :is(.stats-section__border .stats-section__border-inline-graphic):after {
      display: block;
    }
  }
  .stats-section__active-indicator-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--hds-space-layout-page-margin);
    right: var(--hds-space-layout-page-margin);
    z-index: 3;
    max-width: var(--hds-canary-layout-content-maxWidth-borders);
    margin-inline: auto;
    padding-inline: var(
      --section-container-padding-inline,
      var(--hds-space-layout-content-margin)
    );
    pointer-events: none;
    display: none;
    border-inline: 1px solid transparent;
  }
  @media (min-width: 940px) {
    .stats-section__active-indicator-container {
      display: block;
    }
  }
  .stats-section__active-indicator-container
    .stats-section__active-indicator-graphic {
    position: absolute;
    aspect-ratio: 400/440;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: var(
      --section-container-padding-inline,
      var(--hds-space-layout-content-margin)
    );
  }
  @media (min-width: 640px) {
    .stats-section__active-indicator-container
      .stats-section__active-indicator-graphic {
      aspect-ratio: 730/650;
      left: -1px;
      right: -1px;
    }
  }
  @media (min-width: 940px) {
    .stats-section__active-indicator-container
      .stats-section__active-indicator-graphic {
      aspect-ratio: 1264/532;
    }
  }
  .stats-section__active-indicator {
    --stats-indicator-column-count: 4;
    --stats-indicator-gap: var(--hds-space-layout-gap);
    --stats-indicator-width: calc(
      (
          100% - (var(--stats-indicator-column-count) - 1) *
            var(--stats-indicator-gap)
        ) /
        var(--stats-indicator-column-count)
    );
    --stats-indicator-offset: calc(
      var(--hover-indicator-index, 0) *
        (var(--stats-indicator-width) + var(--stats-indicator-gap))
    );
    display: none;
    position: absolute;
    left: var(--stats-indicator-offset);
    width: var(--stats-indicator-width);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0,
      var(--stats-indicator-color, #004a99) 50%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 2;
  }
  @media (prefers-reduced-motion: no-preference) {
    .stats-section__active-indicator {
      transition:
        left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
  }
  @media (min-width: 940px) {
    .stats-section__active-indicator {
      display: block;
    }
  }
  .stats-section__active-indicator.stats-section__active-indicator--top {
    top: calc(-1 * var(--stats-menu-height, 0px));
  }
  .stats-section__active-indicator.stats-section__active-indicator--bottom {
    top: -1px;
  }
  .stats-section--time-pre-dawn {
    --stats-color: #8a35df;
    --stats-border-color: rgba(129, 41, 223, 0.2);
    --stats-option-selected-background: rgba(129, 41, 223, 0.1);
    --stats-option-active-background: rgba(129, 41, 223, 0.05);
  }
  .stats-section--time-sunrise {
    --stats-color: #c42fa5;
    --stats-border-color: rgba(233, 49, 183, 0.2);
    --stats-option-selected-background: rgba(233, 49, 183, 0.05);
    --stats-option-active-background: rgba(233, 49, 183, 0.03);
  }
  .stats-section--time-daytime {
    --stats-color: #0810bf;
    --stats-border-color: #c2c8f1;
    --stats-option-selected-background: rgba(27, 30, 195, 0.1);
    --stats-option-active-background: rgba(27, 30, 195, 0.05);
  }
  .stats-section--time-dusk {
    --stats-color: #2874ad;
    --stats-border-color: rgba(43, 145, 223, 0.2);
    --stats-option-selected-background: rgba(43, 145, 223, 0.1);
    --stats-option-active-background: rgba(43, 145, 223, 0.05);
  }
  .stats-section--time-sunset {
    --stats-color: #4304ea;
    --stats-border-color: #c2c8f1;
    --stats-option-selected-background: rgba(66, 1, 233, 0.1);
    --stats-option-active-background: rgba(66, 1, 233, 0.05);
  }
  .stats-section--time-night {
    --stats-color: #fcfdfe;
    --stats-border-color: #8586c2;
    --stats-option-selected-background: #4b45bc;
    --stats-option-active-background: rgba(252, 253, 254, 0.1);
    --stats-option-menu-background: transparent;
  }
  .stats-section__active-indicator {
    --stats-indicator-color: var(--stats-color, #004a99);
  }
  .stats-section__container {
    --section-container-pbs: var(--hds-space-core-700);
    --section-container-pbe: 0;
    --section-container-pbs-dt: var(--hds-space-core-1000);
    --section-container-pbs-tb: var(--hds-space-core-700);
    --section-container-border-inline: none;
  }
  .stats-section__title {
    text-align: center;
    max-width: 16ch;
    text-wrap: pretty;
    align-self: center;
    transition: color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  :scope:lang(en) .stats-section__title {
    max-width: 14ch;
  }
  .stats-section__stats-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(
      var(--hds-space-layout-columns),
      minmax(0, 1fr)
    );
    margin-inline: var(--section-container-margin-inline-bleed);
    padding-inline: var(--hds-space-core-200);
    row-gap: var(--hds-space-core-800);
    column-gap: var(--hds-space-core-200);
  }
  @media (min-width: 940px) {
    .stats-section__stats-list {
      display: none;
    }
  }
  .stats-section__stats-list:after {
    content: "";
    display: block;
    width: 74%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(
      90deg,
      rgba(175, 255, 234, 0),
      #fcfdfe 50%,
      rgba(175, 255, 234, 0)
    );
  }
  @media (min-width: 940px) {
    .stats-section__stats-list:after {
      display: none;
    }
  }
  .stats-list__stat {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: var(--hds-space-core-100);
    align-items: center;
    color: var(--hds-color-heading-solid);
  }
  @media (min-width: 640px) {
    .stats-list__stat {
      grid-column: span 4;
    }
  }
  .stats-list__stat-description,
  .stats-list__stat-value {
    text-align: center;
    color: inherit;
  }
  .stats-list__stat-description {
    max-width: 180px;
  }
  @media (min-width: 940px) {
    :is(:scope:lang(es), :scope:lang(fr), :scope:lang(pt), :scope:lang(th))
      .stats-menu__stat-value {
      font-size: 2.125rem;
    }
  }
  .stats-section__globe {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-inline: var(--section-container-margin-inline-bleed);
    margin-block-start: var(--hds-space-core-500);
  }
  @media (min-width: 940px) {
    .stats-section__globe {
      display: none;
    }
  }
  .stats-section__globe-picture {
    width: 768px;
    height: auto;
    flex-shrink: 0;
  }
  .stats-section__stats-menu {
    display: none;
    gap: var(--hds-space-layout-gap);
    grid-template-columns: repeat(
      var(--hds-space-layout-columns),
      minmax(0, 1fr)
    );
    margin-inline: var(--section-container-margin-inline-bleed);
    padding-block-start: var(--hds-space-core-500);
    padding-block-end: var(--hds-space-core-500);
    border-block-start: 1px solid transparent;
    border-block-end: 1px solid transparent;
    transition: border-color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  @media (min-width: 940px) {
    .stats-section__stats-menu {
      display: grid;
      align-items: start;
      margin-inline: calc(var(--section-container-margin-inline-bleed) + 1px);
    }
  }
  .stats-menu__stat-wrapper {
    grid-column: var(--hds-canary-grid-span-quarter);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: var(--hds-space-core-100);
    padding: 0 var(--hds-space-core-200);
    border-radius: var(--hds-space-core-100);
  }
  .stats-menu__stat-wrapper:has(.stats-menu__stat:focus-visible) {
    outline: 2px solid var(--hds-color-action-border-solid);
    outline-offset: -1px;
  }
  .stats-menu__stat {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  .stats-menu__stat:focus-visible {
    outline: none;
  }
  .stats-section--transitioning .stats-menu__stat {
    transition: color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  :is(.stats-section--transitioning .stats-menu__stat) .hds-link {
    transition: color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  @media (prefers-reduced-motion: no-preference) {
    .stats-menu__stat-description,
    .stats-menu__stat-value {
      transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
  }
  .stats-section--transitioning
    :is(.stats-menu__stat-value, .stats-menu__stat-description) {
    transition: color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  .stats-menu__stat-value {
    text-align: center;
  }
  .stats-menu__stat-description {
    text-align: center;
    max-width: 220px;
    text-wrap: balance;
    font-weight: var(--hds-font-weight-normal);
  }
  .stats-menu__stat-description .stats-menu__stat-description__link {
    position: relative;
    text-wrap: nowrap;
    -webkit-text-decoration: none;
    text-decoration: none;
    pointer-events: none;
  }
  .stats-menu__stat-description .stats-menu__stat-description__link:before {
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    content: "";
    position: absolute;
    height: 1.5px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hds-color-text-quiet);
    transform: scaleX(0);
    transform-origin: 0 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    .stats-menu__stat-description .stats-menu__stat-description__link:before {
      transition:
        transform 0.5s var(--ease),
        background-color 0.5s var(--ease);
    }
  }
  .stats-menu__stat-wrapper:has(.stats-menu__stat--active)
    .stats-menu__stat-description,
  .stats-menu__stat-wrapper:has(.stats-menu__stat--active)
    .stats-menu__stat-value {
    color: var(--hds-color-heading-solid);
  }
  .stats-menu__stat-wrapper:has(.stats-menu__stat--active)
    .stats-menu__stat-description__link {
    pointer-events: auto;
  }
  .stats-menu__stat-wrapper:has(.stats-menu__stat--active)
    .stats-menu__stat-description__link:before {
    background-color: var(--hds-color-heading-solid);
    transform: scaleX(1);
  }
  .stats-menu__stat-wrapper:not(:has(.stats-menu__stat--active))
    .stats-menu__stat-description,
  .stats-menu__stat-wrapper:not(:has(.stats-menu__stat--active))
    .stats-menu__stat-value {
    color: var(--hds-color-text-quiet);
  }
  .stats-menu__stat-wrapper:not(:has(.stats-menu__stat--active)):hover
    .stats-menu__stat-description,
  .stats-menu__stat-wrapper:not(:has(.stats-menu__stat--active)):hover
    .stats-menu__stat-value {
    color: var(--hds-color-text-soft);
  }
  .stats-section__stats-spacer {
    width: 100%;
    aspect-ratio: 400/440;
    position: relative;
    display: none;
  }
  @media (min-width: 940px) {
    .stats-section__stats-spacer {
      display: block;
      aspect-ratio: 1264/532;
    }
  }
  .stats-section__controls {
    position: absolute;
    z-index: 1;
    right: var(--hds-space-core-100);
    top: var(--hds-space-core-300);
    display: none;
    column-gap: var(--hds-space-core-50);
  }
  @media (min-width: 940px) {
    .stats-section__controls {
      display: inline-flex;
    }
  }
}
.data-viz {
  position: absolute;
  inset: 0;
  height: 100%;
  display: none;
  align-items: end;
}
@media (min-width: 640px) {
  .data-viz {
    display: flex;
  }
}
.data-viz__canvas {
  width: 100%;
  height: 100%;
}
.data-viz__static {
  overflow: hidden;
}
.data-viz__static img {
  max-width: 150%;
  margin-left: -25%;
}
@media (min-width: 940px) {
  .data-viz__static img {
    max-width: 100%;
    margin-left: 0;
  }
}
.stats-section--time-night .data-viz__static img {
  filter: grayscale(1) brightness(100);
}
.time-of-day-select__trigger {
  --time-of-day-select-icon-transition-duration: 1s;
  --time-of-day-select-icon-transition-timing-function: cubic-bezier(
    0.65,
    0,
    0.35,
    1
  );
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stats-border-color, rgba(7, 16, 191, 0.2));
  border-radius: var(--hds-space-core-radius-sm);
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
  transition: border-color var(--stats-section-transition-duration)
    var(--stats-section-transition-timing-function);
  color: var(--stats-color, #004a99);
}
@media (prefers-reduced-motion: reduce) {
  .time-of-day-select__trigger {
    --time-of-day-select-icon-transition-duration: 0s;
  }
}
.time-of-day-select__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.time-of-day-select__trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.time-of-day-select__menu {
  border: 1px solid var(--stats-border-color);
  min-width: 100px;
  z-index: 2;
  overflow: hidden;
  background: var(--stats-option-menu-background, rgba(248, 250, 253, 0.55));
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  border-radius: var(--hds-space-core-radius-md);
  display: flex;
  flex-direction: column;
  padding: var(--hds-space-core-100);
  gap: var(--hds-space-core-75);
  outline: none;
}
.time-of-day-select__option {
  display: flex;
  align-items: center;
  gap: var(--hds-space-core-100);
  border-radius: var(--hds-space-core-radius-sm);
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  padding: 4px;
}
@media (prefers-reduced-motion: no-preference) {
  .time-of-day-select__option {
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
.time-of-day-select__option--active {
  background: var(--stats-option-active-background);
}
.time-of-day-select__option--selected,
.time-of-day-select__option--selected.time-of-day-select__option--active {
  background: var(--stats-option-selected-background);
}
.time-of-day-select__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--stats-color, #004a99);
}
.time-of-day-select__option-label {
  font-family: var(--hds-font-family);
  font-size: var(--hds-font-text-sm-size);
  line-height: var(--hds-font-text-sm-lineHeight);
  font-weight: var(--hds-font-weight-normal);
  letter-spacing: var(--hds-font-text-sm-letterSpacing);
  color: var(--stats-color, #004a99);
  flex: 1;
}
.time-of-day-select__option--selected .time-of-day-select__option-label {
  font-weight: var(--hds-font-weight-bold);
}
:where(:lang(ja))
  :is(.time-of-day-select__option--selected .time-of-day-select__option-label) {
  font-weight: 600;
  font-variation-settings: "wght" 400;
}
.time-of-day-select-icon {
  transition: color var(--stats-section-transition-duration)
    var(--stats-section-transition-timing-function);
}
.time-of-day-select-icon .time-of-day-select-icon__moon {
  transform: translate3d(-13px, 13px, 0) scale(0.5);
  transform-box: view-box;
  transform-origin: 10px 10px;
  transition: none;
  will-change: transform;
}
.time-of-day-select__trigger .time-of-day-select-icon__moon {
  transition: transform var(--time-of-day-select-icon-transition-duration)
    var(--time-of-day-select-icon-transition-timing-function);
}
.time-of-day-select-icon .time-of-day-select-icon__sun-group {
  transform: translateZ(0) scale(1);
  transform-box: view-box;
  transform-origin: 10px 10px;
  transition: none;
  will-change: transform;
}
.time-of-day-select__trigger .time-of-day-select-icon__sun-group {
  transition: transform var(--time-of-day-select-icon-transition-duration)
    var(--time-of-day-select-icon-transition-timing-function);
}
.time-of-day-select-icon .time-of-day-select-icon__sun-path {
  stroke-dasharray: 1;
  transition: none;
}
.time-of-day-select__trigger .time-of-day-select-icon__sun-path {
  transition: stroke-dashoffset
    var(--time-of-day-select-icon-transition-duration)
    var(--time-of-day-select-icon-transition-timing-function);
}
.time-of-day-select-icon .time-of-day-select-icon__sun-center {
  transition: stroke var(--stats-section-transition-duration)
    var(--stats-section-transition-timing-function);
}
.time-of-day-select-icon .time-of-day-select-icon__sun-bottom-left,
.time-of-day-select-icon .time-of-day-select-icon__sun-bottom-right,
.time-of-day-select-icon .time-of-day-select-icon__sun-top-left,
.time-of-day-select-icon .time-of-day-select-icon__sun-top-right {
  stroke-dashoffset: 1;
}
.time-of-day-select-icon .time-of-day-select-icon__ray {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.time-of-day-select__trigger .time-of-day-select-icon__ray {
  transition: stroke-dashoffset
    var(--time-of-day-select-icon-transition-duration)
    var(--time-of-day-select-icon-transition-timing-function);
}
.time-of-day-select__trigger[data-value="pre-dawn"]
  .time-of-day-select-icon__sun-top-left,
.time-of-day-select__trigger[data-value="pre-dawn"]
  .time-of-day-select-icon__sun-top-right {
  stroke-dashoffset: 0;
}
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__sun-top-left,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__sun-top-right {
  stroke-dashoffset: 0.42;
}
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-eight,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-five,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-four,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-one,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-seven,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-six,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-three,
.time-of-day-select__trigger[data-value="daytime"]
  .time-of-day-select-icon__ray-two,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__ray-five,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__ray-four,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__ray-one,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__ray-three,
.time-of-day-select__trigger[data-value="sunrise"]
  .time-of-day-select-icon__ray-two {
  stroke-dashoffset: 0;
}
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__sun-bottom-left,
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__sun-bottom-right {
  stroke-dashoffset: 0.42;
}
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__ray-eight,
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__ray-five,
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__ray-one,
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__ray-seven,
.time-of-day-select__trigger[data-value="dusk"]
  .time-of-day-select-icon__ray-six,
.time-of-day-select__trigger[data-value="sunset"]
  .time-of-day-select-icon__ray-eight,
.time-of-day-select__trigger[data-value="sunset"]
  .time-of-day-select-icon__ray-seven,
.time-of-day-select__trigger[data-value="sunset"]
  .time-of-day-select-icon__ray-six,
.time-of-day-select__trigger[data-value="sunset"]
  .time-of-day-select-icon__sun-bottom-left,
.time-of-day-select__trigger[data-value="sunset"]
  .time-of-day-select-icon__sun-bottom-right {
  stroke-dashoffset: 0;
}
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__moon {
  transform: translateZ(0) scale(1);
}
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__sun-group {
  transform: translate3d(20px, 14px, 0) scale(0.5);
}
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-eight,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-five,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-four,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-one,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-seven,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-six,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-three,
.time-of-day-select__trigger[data-value="night"]
  .time-of-day-select-icon__ray-two {
  stroke-dashoffset: 0;
}
@layer app {
  .stats-animation-gradient {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .stats-animation-gradient__gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
  }
  .stats-animation-gradient__gradient--active {
    opacity: 1;
  }
  .stats-animation-gradient--no-transition .stats-animation-gradient__gradient {
    transition: none;
  }
  @media (max-width: 939px) {
    .stats-animation-gradient__gradient:not(
      .stats-animation-gradient__gradient--night
    ) {
      display: none;
    }
  }
  .stats-animation-gradient__gradient--pre-dawn {
    background: radial-gradient(
      1653px 1092px at 50% calc(100% + 28px),
      #486ffd 0,
      #7f81f3 9.84%,
      #c489ff 20.83%,
      #dac0ff 34.13%,
      #eadcff 44.86%,
      #f9f6ff 58.59%,
      #f8fafc 100%
    );
  }
  .stats-animation-gradient__gradient--sunrise {
    background: radial-gradient(
      1653px 1055px at 50% 104.6%,
      #cb83ff 0,
      #ff90b9 15.77%,
      #ffc977 30.62%,
      #ffd79b 38.04%,
      #fff1dc 50.11%,
      #fff 63.1%,
      #fcfdfe 77.95%,
      #f8fafc 98.81%
    );
  }
  .stats-animation-gradient__gradient--daytime {
    background: radial-gradient(
      1656px 1117px at 50% calc(100% + 53px),
      #0071c1 1.33%,
      #60a8e2 15.71%,
      #b4d8ff 33.15%,
      #d9ebff 45%,
      #f8fafc 60%
    );
  }
  .stats-animation-gradient__gradient--dusk {
    background: radial-gradient(
      1656px 1098px at 50% calc(100% + 48px),
      #ffb451 0,
      #efc680 16.73%,
      #b4d8ff 33.03%,
      #d2e8ff 43.38%,
      #fafdff 59.16%,
      #fdfeff 76.24%,
      #f8fafc 100%
    );
  }
  .stats-animation-gradient__gradient--sunset {
    background: radial-gradient(
      1660px 1064px at 50% 100%,
      #ffa577 0,
      #ff90a1 15.52%,
      #ddadff 30.09%,
      #ecd8ff 45.72%,
      #f5eaff 54.96%,
      #f8fafc 88.16%
    );
  }
  .stats-animation-gradient__gradient--night {
    background: radial-gradient(
      1655px 1133px at 50% calc(100% + 69px),
      #fcfdfe 1.11%,
      #004a99 28.73%,
      #453bb3 45.76%,
      #004a99 63.37%,
      #1e2064 78.67%,
      #141e4b 100%
    );
  }
  @media (max-width: 939px) {
    .stats-animation-gradient__gradient--night {
      opacity: 1;
      inset: auto;
      width: 1218px;
      height: 936px;
      left: calc(50% - 1218px / 2);
      bottom: 0;
      background: radial-gradient(
        155.66% 78.1% at 50% 104.07%,
        #afffea 1.11%,
        #004a99 22.58%,
        #332496 42.92%,
        #004a99 61.78%,
        #1e2064 80.71%,
        #141e4b 100%
      );
    }
  }
  @media (min-width: 940px) and (max-width: 1609px) {
    .stats-animation-gradient__gradient--pre-dawn {
      background: radial-gradient(
        103.24% 102.63% at 50% 102.63%,
        #486ffd 0,
        #7f81f3 9.84%,
        #c489ff 20.83%,
        #dac0ff 34.13%,
        #eadcff 44.86%,
        #f9f6ff 58.59%,
        #f8fafc 100%
      );
    }
    .stats-animation-gradient__gradient--sunrise {
      background: radial-gradient(
        102.68% 99.11% at 50% 104.6%,
        #cb83ff 0,
        #ff90b9 15.77%,
        #ffc977 30.62%,
        #ffd79b 38.04%,
        #fff1dc 50.11%,
        #fff 63.1%,
        #fcfdfe 77.95%,
        #f8fafc 98.81%
      );
    }
    .stats-animation-gradient__gradient--daytime {
      background: radial-gradient(
        102.84% 104.98% at 50% 104.98%,
        #0071c1 1.33%,
        #60a8e2 15.71%,
        #b4d8ff 33.15%,
        #d9ebff 45%,
        #f8fafc 60%
      );
    }
    .stats-animation-gradient__gradient--dusk {
      background: radial-gradient(
        102.83% 103.24% at 49.98% 104.51%,
        #ffb451 0,
        #efc680 16.73%,
        #b4d8ff 33.03%,
        #d2e8ff 43.38%,
        #fafdff 59.16%,
        #fdfeff 76.24%,
        #f8fafc 100%
      );
    }
    .stats-animation-gradient__gradient--sunset {
      background: radial-gradient(
        103.12% 100% at 50% 100%,
        #ffa577 0,
        #ff90a1 15.52%,
        #ddadff 30.09%,
        #ecd8ff 45.72%,
        #f5eaff 54.96%,
        #f8fafc 88.16%
      );
    }
    .stats-animation-gradient__gradient--night {
      background: radial-gradient(
        102.82% 106.44% at 50% 106.44%,
        #fcfdfe 1.11%,
        #004a99 28.73%,
        #453bb3 45.76%,
        #004a99 63.37%,
        #1e2064 78.67%,
        #141e4b 100%
      );
    }
  }
}
.ambient-motion-button {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stats-border-color, rgba(7, 16, 191, 0.2));
  border-radius: var(--hds-space-core-radius-sm);
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
  color: var(--stats-color, #004a99);
  transition:
    border-color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function),
    color var(--stats-section-transition-duration)
      var(--stats-section-transition-timing-function);
}
@media (prefers-reduced-motion: reduce) {
  .ambient-motion-button {
    display: none;
  }
}
.ambient-motion-button svg {
  position: absolute;
}
.ambient-motion-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
@layer base {
  .columns {
    display: grid;
    column-gap: var(--hds-space-layout-gap);
    row-gap: var(--hds-space-core-200);
    align-items: stretch;
  }
  .columns:not(.columns--auto) {
    grid-template-columns: repeat(var(--columns-count-mb, 1), minmax(0, 1fr));
  }
  .columns--auto {
    grid-template-columns: repeat(
      auto-fit,
      minmax(var(--columns-min-item-width, 276px), 1fr)
    );
  }
  .columns-row-gap {
    --columns-row-gap-mb: var(--hds-space-core-200);
    --columns-row-gap-tb: initial;
    --columns-row-gap-dt: initial;
    row-gap: var(--columns-row-gap-mb);
  }
  .columns-column-gap {
    --columns-column-gap-mb: var(--hds-space-layout-gap);
    --columns-column-gap-tb: initial;
    --columns-column-gap-dt: initial;
    column-gap: var(--columns-column-gap-mb);
  }
  .columns-align {
    --columns-align-mb: stretch;
    --columns-align-tb: initial;
    --columns-align-dt: initial;
    align-items: var(--columns-align-mb);
  }
  @media (min-width: 640px) {
    .columns:not(.columns--auto) {
      grid-template-columns: repeat(var(--columns-count-tb, 2), minmax(0, 1fr));
    }
    .columns-row-gap {
      row-gap: var(--columns-row-gap-tb, var(--columns-row-gap-mb));
    }
    .columns-column-gap {
      column-gap: var(--columns-column-gap-tb, var(--columns-column-gap-mb));
    }
    .columns-align {
      align-items: var(--columns-align-tb, var(--columns-align-mb));
    }
  }
  @media (min-width: 940px) {
    .columns:not(.columns--auto) {
      grid-template-columns: repeat(
        var(--columns-count-dt, var(--columns-count-tb, 2)),
        minmax(0, 1fr)
      );
    }
    .columns-row-gap {
      row-gap: var(
        --columns-row-gap-dt,
        var(--columns-row-gap-tb, var(--columns-row-gap-mb))
      );
    }
    .columns-column-gap {
      column-gap: var(
        --columns-column-gap-dt,
        var(--columns-column-gap-tb, var(--columns-column-gap-mb))
      );
    }
    .columns-align {
      align-items: var(
        --columns-align-dt,
        var(--columns-align-tb, var(--columns-align-mb))
      );
    }
  }
}
.customer-story-button {
  padding: 0;
  width: 40px;
  height: 40px;
}
@media (prefers-reduced-motion: no-preference) {
  .customer-story-button {
    transition-property: background, color, border, width;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
  }
}
.customer-story-button:not(.customer-story-button--open) {
  background: var(--hds-color-core-brand-75);
  color: var(--hds-color-core-brand-600);
  border: 1px solid var(--hds-color-core-brand-75);
}
.customer-stories__customer-summary:hover
  .customer-story-button:not(.customer-story-button--open) {
  color: #fff;
  background: var(--hds-color-action-bg-solid);
  border: 1px solid var(--hds-color-core-brand-600);
}
.customer-story-button__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
@supports (overflow: clip) {
  .customer-story-button__container {
    overflow: clip;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .customer-story-button__container {
    transition-property: width;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
  }
}
.customer-story-button__text {
  display: flex;
  align-items: center;
  column-gap: var(--hds-space-core-100);
  position: absolute;
  top: 12px;
  left: 23px;
}
@media (prefers-reduced-motion: no-preference) {
  .customer-story-button__text {
    transition: opacity 0.4s cubic-bezier(0.3, 0, 0.2, 1);
  }
}
@media (min-resolution: 2x) {
  .customer-story-button__text {
    top: 11.5px;
  }
  .customer-story-button__icon--arrow {
    transform: translate3d(0, 1px, 0);
  }
}
.customer-story-button__icon {
  position: absolute;
  top: 14px;
  left: 13px;
}
@media (prefers-reduced-motion: no-preference) {
  .customer-story-button__icon {
    transition: opacity 0.4s cubic-bezier(0.3, 0, 0.2, 1);
  }
}
@media (max-width: 639.9999px) {
  .customer-story-button {
    display: none;
  }
}
.customer-stories__customer-summary {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  margin-block: var(--hds-space-core-200);
  cursor: pointer;
}
.customer-stories__customer-summary-logo {
  display: flex;
  align-self: start;
}
.customer-stories__customer-summary-action {
  line-height: 0;
  align-self: start;
}
.customer-stories__customer-summary:has(
  .customer-stories__customer-button:focus-visible
) {
  border-radius: var(--hds-space-core-radius-sm);
  outline: 2px solid var(--hds-color-action-border-solid);
  outline-offset: 3px;
}
.customer-stories__customer-button {
  flex: 1 1 auto;
  padding-inline: var(--hds-space-core-200);
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.customer-stories__customer-button:focus-visible {
  outline: none;
}
.customer-stories__customer-summary--open {
  cursor: default;
}
.customer-stories__customer-image {
  border-radius: var(--hds-space-core-radius-md);
  overflow: hidden;
}
@supports (overflow: clip) {
  .customer-stories__customer-image {
    overflow: clip;
  }
}
.customer-stories__customer-data {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hds-space-core-200);
  padding-top: var(--hds-space-core-200);
  padding-bottom: var(--hds-space-core-300);
  padding-right: var(--hds-space-core-200);
}
@media (min-width: 640px) {
  .customer-stories__customer-data {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .customer-stories__customer-data > :nth-child(3) {
    grid-column: 1/-1;
  }
}
@media (min-width: 940px) {
  .customer-stories__customer-data {
    padding-top: var(--hds-space-core-300);
    padding-bottom: var(--hds-space-core-600);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  }
  .customer-stories__customer-data > :first-child {
    grid-column: 1/2;
  }
  .customer-stories__customer-data > :nth-child(2) {
    grid-column: 2/3;
  }
  .customer-stories__customer-data > :nth-child(3) {
    grid-column: 3/-1;
  }
}
.customer-stories__customer-data-stat {
  text-wrap: pretty;
}
@media (max-width: 939.9999px) {
  .customer-stories__customer-data {
    flex-direction: column;
    gap: var(--hds-space-core-200);
  }
}
.customer-stories__customer-content--read {
  margin: 1px;
  margin-block-end: var(--hds-space-core-400);
  display: none;
}
@media (max-width: 639.9999px) {
  .customer-stories__customer-content--read {
    display: inline-flex;
  }
}
.customer-stories__customer:not(:first-child) {
  border-top: 1px dashed var(--hds-color-surface-border-quiet);
}
.customer-stories__customer-content {
  overflow: hidden;
}
@supports (overflow: clip) {
  .customer-stories__customer-content {
    overflow: clip;
  }
}
.customer-stories__customer-content {
  max-height: var(--max-height, 0);
  visibility: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .customer-stories__customer-content {
    transition:
      max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1),
      visibility 0s step-end 0.5s;
  }
}
.customer-stories__customer-summary:not(
    .customer-stories__customer-summary--open
  ):hover
  .customer-stories__customer-summary-description {
  color: var(--hds-color-core-brand-600);
}
.customer-stories__customer-summary--open
  ~ .customer-stories__customer-content {
  visibility: visible;
  transition-delay: 0s, 0s;
}
@media (max-width: 640px) {
  .customer-stories__customer {
    background-color: #fff;
    position: sticky;
    top: calc(var(--idx, 0) * 32px);
  }
  .customer-stories__customer + .customer-stories__customer:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--hds-color-surface-border-quiet, #e0e0e0);
  }
}
@layer app {
  .enterprise {
    padding-inline: var(--hds-space-core-200);
  }
  .enterprise-values-title {
    max-width: 38ch;
    text-wrap: pretty;
    margin-block-start: var(--hds-space-core-200);
  }
}
.testimonial-carousel-container {
  overflow: hidden;
}
@supports (overflow: clip) {
  .testimonial-carousel-container {
    overflow: clip;
  }
}
.testimonial-carousel-container {
  margin-inline: var(--section-container-margin-inline-bleed);
}
.testimonial-carousel__cards {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--hds-space-core-900);
}
.testimonial-carousel__cards > div {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.testimonial-carousel__cards::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel__navigation {
  position: relative;
}
.testimonial-carousel__navigation-divider {
  position: absolute;
  width: 100%;
  height: 1px;
  border-top: 1px dashed var(--hds-color-surface-border-quiet);
}
.testimonial-carousel__navigation-selection {
  position: absolute;
  width: 100%;
  height: 1px;
  padding-inline: var(--hds-space-core-200);
}
.testimonial-carousel__navigation-selection-bar {
  height: 1px;
  border-top: 1px solid var(--hds-color-action-border-solid);
  width: 25%;
  transform: translateX(0);
}
@media (max-width: 706px) {
  .testimonial-carousel__navigation-customers {
    transform: translateX(25%);
  }
}
.testimonial-carousel__navigation-customers-inner {
  display: flex;
  justify-content: space-around;
  margin-inline: var(--hds-space-core-200);
  padding-block: var(--hds-space-core-400);
}
.testimonial-carousel__navigation-button {
  background: none;
  padding: 0;
  flex: 1 1 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  --customerLogoColor: var(--hds-color-action-icon-disabled);
}
@media (max-width: 706px) {
  .testimonial-carousel__navigation-button {
    flex: 0 0 50%;
    align-items: center;
  }
}
.testimonial-carousel__navigation-button path {
  transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-carousel__navigation-button:not(
    .testimonial-carousel__navigation-button--active
  ):hover {
  --customerLogoColor: unset;
}
.testimonial-carousel__navigation-button--active {
  --customerLogoColor: unset;
  cursor: auto;
}
@layer app {
  .platform-value__graphic-container {
    display: flex;
    flex-direction: column;
    row-gap: var(--hds-space-core-400);
  }
  @media (min-width: 940px) {
    .platform-value__graphic-container {
      row-gap: var(--hds-space-core-500);
    }
  }
  .platform-graphic-wrapper {
    min-height: 532px;
    width: 100%;
  }
}
.platform-graphic {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--hds-space-core-radius-md);
  min-height: 532px;
  width: 100%;
  overflow: hidden;
}
@supports (overflow: clip) {
  .platform-graphic {
    overflow: clip;
  }
}
@media (max-width: 639px) {
  .platform-graphic {
    height: 532px;
  }
}
.platform-graphic__background {
  position: absolute;
  inset: 0;
}
.platform-graphic__background-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  display: block;
}
.platform-graphic__dom {
  width: calc(100% - (var(--hds-space-core-200) * 2));
}
@media (max-width: 639px) {
  .platform-graphic__dom {
    margin-inline: auto;
  }
}
@media (min-width: 640px) {
  .platform-graphic__dom {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-block-start: var(--hds-space-core-1700);
  }
}
.platform-graphic__dom__browser,
.platform-graphic__features {
  display: none;
}
.platform-graphic__dom__phone,
.platform-graphic__features--stacked {
  display: block;
}
.platform-graphic__features--stacked .platform-graphic-features {
  position: relative;
  margin-block-start: var(--hds-space-core-200);
  margin-block-end: var(--hds-space-core-300);
  padding-inline: var(--hds-space-core-200);
}
@media (min-width: 640px) {
  .platform-graphic__dom {
    left: var(--hds-space-core-250);
    transform: translateX(0);
    width: 800px;
  }
  .platform-graphic__dom__browser {
    display: block;
  }
  .platform-graphic__dom__phone {
    display: none;
  }
}
@media (min-width: 940px) {
  .platform-graphic__dom {
    margin-block-start: var(--hds-space-core-700);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - (var(--hds-space-core-200) * 2));
  }
  .platform-graphic__features {
    display: block;
  }
  .platform-graphic__features--stacked {
    display: none;
  }
}
.platform-graphic__replay-button {
  position: absolute;
  bottom: var(--hds-space-core-100);
  right: var(--hds-space-core-100);
  display: flex;
  width: 40px;
  height: 40px;
  padding: var(--hds-space-core-150);
  justify-content: center;
  align-items: center;
  background-color: var(--hds-color-surface-bg-quiet);
  border-radius: var(--hds-space-core-radius-sm);
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.platform-graphic__replay-button:hover {
  background-color: var(--hds-color-surface-bg-subdued);
}
.platform-graphic__replay-button--visible {
  opacity: 1;
  pointer-events: all;
}
.startups__copy-layout {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-400);
  width: 100%;
}
.startups__program-card-grid {
  display: grid;
  gap: var(--hds-space-layout-gap);
  grid-template-columns: repeat(
    auto-fit,
    minmax(
      min(
        100%,
        calc(
          (var(--hds-canary-layout-content-maxWidth-borders) / 4) -
            (var(--hds-space-layout-content-margin) * 2)
        )
      ),
      1fr
    )
  );
}
@media (min-width: 640px) {
  .startups__program-card-grid {
    margin-block-start: var(--hds-space-core-300);
  }
}
@media (min-width: 940px) {
  .startups__program-card-grid {
    margin-block-start: var(--hds-space-core-200);
  }
}
.startups__startups-graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.startups__startups-graphic-background {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-38%);
  width: auto;
  height: 100%;
}
.startups__atlas-graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.startups__atlas-graphic-background {
  top: 50%;
  transform: translateX(-12%) translateY(-62%);
  width: 360px;
  height: 360px;
  position: absolute;
  left: 0;
}
@container startups-program-card (max-width: 520px) {
  .startups__startups-graphic-logo {
    display: none;
  }
}
@container startups-program-card (min-width: 360px) {
  .startups__startups-graphic-background {
    transform: translateX(-42%);
  }
  .startups__atlas-graphic-background {
    transform: translateX(-14%) translateY(-62%);
  }
}
@container startups-program-card (min-width: 568px) {
  .startups__atlas-graphic-background {
    right: 0;
    left: auto;
    transform: translateX(28%) translateY(-62%);
  }
}
@container startups-program-card (min-width: 680px) {
  .startups__startups-graphic-background {
    right: 0;
    left: auto;
    transform: translateX(0);
  }
}
.startups__program-card--startups {
  --startups-card-border-gradient-bg: radial-gradient(
    circle,
    #f72df3,
    #0066cc 33%,
    var(--hds-color-core-neutral-50) 66%
  );
}
.startups__program-card--atlas {
  --startups-card-border-gradient-bg: radial-gradient(
    circle,
    #ffad00,
    #ff7600 33%,
    var(--hds-color-core-neutral-50) 66%
  );
}
.startups-program-card {
  -webkit-text-decoration: none;
  text-decoration: none;
  container-type: inline-size;
  container-name: startups-program-card;
  display: grid;
  position: relative;
  --card-radius: var(--hds-space-core-radius-md);
}
@media (prefers-reduced-motion: no-preference) {
  .startups-program-card:focus-visible,
  .startups-program-card:hover {
    --hds-hover-active: 1;
  }
}
:is(.startups-program-card:hover, .startups-program-card:focus-visible)
  .startups-program-card-action {
  color: var(--hds-color-action-text-solidHover);
}
.startups-program-card:focus-visible {
  outline: 2px solid var(--hds-color-action-border-solid);
  outline-offset: 3px;
  border-radius: calc(var(--hds-space-core-radius-md) - 1px);
}
.startups-program-card__border {
  position: absolute;
  inset: -1px;
  z-index: 0;
  clip-path: inset(0 round calc(var(--card-radius) + 1px));
  background: var(--hds-color-core-neutral-50);
  overflow: hidden;
  pointer-events: none;
  --card-mouse-x: 0;
  --card-mouse-y: 0;
}
.startups-program-card__border-color {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 200%;
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .startups-program-card__border-color {
    transition: opacity 0.25s linear;
  }
}
.startups-program-card__border-color-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: var(--startups-card-border-gradient-bg);
  transform: translate3d(var(--card-mouse-x), var(--card-mouse-y), 0)
    scale(var(--border-scale, 1));
  --border-hole-radius: 0px;
}
@media (prefers-reduced-motion: no-preference) {
  .startups-program-card__border-color-gradient {
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }
}
@media (min-width: 940px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .startups-program-card:hover .startups-program-card__border-color {
    opacity: 1;
  }
}
.startups-program-card__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: var(--card-radius);
  overflow: hidden;
  background-color: var(--hds-color-surface-bg-subdued);
  z-index: 1;
}
.startups-program-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  z-index: 1;
  padding-inline: var(--hds-space-core-300);
  padding-block: var(--hds-space-core-400);
  flex: 0 1 100%;
  max-width: 390px;
  min-height: 160px;
  height: 100%;
  min-width: 0;
}
.startups-program-card__graphic {
  position: relative;
  height: 100%;
  width: 100%;
  flex: 1 1 0;
}
.startups-program-card__graphic img {
  max-width: max-content;
}
.startups-program-card__text {
  text-wrap: pretty;
}
@container startups-program-card (max-width: 410px) {
  .startups-program-card__content {
    min-height: 120px;
    padding-inline: var(--hds-space-core-200);
    padding-block: var(--hds-space-core-200);
  }
  .startups-program-card__graphic {
    display: none;
  }
}
.startups-carousel {
  --startups-carousel-icon-size: var(--hds-space-core-500);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-400);
  margin-block-start: var(--hds-space-core-100);
}
@media (min-width: 640px) {
  .startups-carousel {
    margin-block-start: calc(var(--hds-space-core-400) * -1);
  }
}
@media (min-width: 940px) {
  .startups-carousel {
    margin-block-start: calc(var(--startups-carousel-icon-size) * -1);
  }
}
@layer base {
  .divider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .divider-container {
    --divider-color: var(--hds-color-surface-border-quiet);
    --divider-height: 120px;
    margin-inline: var(--section-container-margin-inline-bleed);
    margin-block: calc(var(--divider-height) * -0.5);
    height: var(--divider-height);
    overflow: hidden;
  }
  .divider-canvas-wrapper,
  .divider-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  .divider-canvas-wrapper {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 100%;
    justify-content: center;
  }
  @media (max-width: 939px) {
    .divider-canvas-wrapper {
      display: none;
    }
    .divider-line {
      flex: 1;
      height: 1px;
      background-color: var(--divider-color);
    }
  }
  @media (min-width: 940px) {
    .divider-container--is-canvas-active .divider-line {
      display: none;
    }
    .divider-container:not(.divider-container--is-canvas-active) .divider-line {
      flex: 1;
      height: 1px;
      background-color: var(--divider-color);
    }
    .divider-canvas {
      display: block;
      width: 100%;
      height: 20px;
      pointer-events: none;
    }
  }
}
@layer base {
  .business-sizes-section {
    position: unset;
    overflow: visible;
    --section-container-pbe-dt: var(--hds-space-core-600);
    --section-container-pbe-tb: var(--hds-space-core-300);
    --section-container-pbe: var(--hds-space-core-200);
  }
}
@layer app {
  .developers-scale-subsection {
    position: relative;
    width: 100%;
  }
  .developers-scale-subsection__content {
    position: relative;
    z-index: 3;
  }
  .developers-scale-subsection__stats-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: var(--hds-space-core-500);
    column-gap: var(--hds-space-layout-gap);
    z-index: 2;
    position: relative;
    margin-top: var(--hds-space-core-600);
  }
  @media (min-width: 640px) {
    .developers-scale-subsection__stats-grid {
      margin-top: 340px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .developers-scale-subsection__stats-grid-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--hds-space-core-150);
    font-size: 2.125rem;
    line-height: 1.03;
    letter-spacing: -0.02em;
  }
  @media (min-width: 940px) {
    .developers-scale-subsection__stats-grid-item {
      font-size: 3rem;
      line-height: 1;
      letter-spacing: -0.02em;
    }
  }
  .developers-scale-subsection__stats-grid-item-heading--orange {
    background:
      linear-gradient(
        68deg,
        rgba(83, 58, 253, 0.08) 0.78%,
        rgba(255, 140, 108, 0.8) 30.61%,
        rgba(218, 75, 254, 0.8) 79.02%
      ),
      #e3ecf7;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .developers-scale-subsection__stats-grid-item-heading--pink {
    background:
      linear-gradient(
        73.3deg,
        rgba(218, 75, 254, 0.8) 9.85%,
        rgba(113, 92, 255, 0.48) 61.94%
      ),
      #e3ecf7;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .developers-scale-subsection__stats-grid-item-heading--purple {
    background:
      linear-gradient(
        74.71deg,
        rgba(83, 58, 253, 0.08) -215.1%,
        rgba(255, 140, 108, 0.8) -169.26%,
        rgba(218, 75, 254, 0.8) -12.8%,
        rgba(113, 92, 255, 0.8) 18.59%,
        rgba(83, 58, 253, 0.8) 39.04%
      ),
      #e3ecf7;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .developers-systems-animation-wrapper {
    width: 100%;
    min-height: 530px;
  }
  @media (min-width: 640px) {
    .developers-systems-animation-wrapper {
      min-height: 386px;
    }
  }
}
.integrated-code-graphic__card {
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-util-neutral-50);
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font: 500 12px/24px var(--hds-font-family-code);
  color: var(--hds-color-text-solid);
}
.integrated-code-graphic__editor {
  padding: 16px;
  flex: 1;
}
.integrated-code-graphic__editor code {
  font: 500 12px/24px var(--hds-font-family-code);
}
.code-line {
  display: flex;
  align-items: center;
  white-space: pre;
  gap: 16px;
}
.code-keyword {
  color: var(--hds-color-util-brand-700);
  font-weight: 700;
}
.code-string {
  color: #ffa956;
}
.code-autocomplete {
  background: var(--hds-color-util-neutral-100);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 132px;
  top: 84px;
  z-index: 2;
  margin-left: 8px;
  padding: 4px 0;
}
.code-autocomplete span {
  padding: 0 12px;
}
.code-autocomplete--active {
  background: var(--hds-color-util-neutral-200);
}
.integrated-code-graphic__statusbar {
  --statusBarHeight: 24px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--hds-color-util-neutral-25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 3px;
  padding-right: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.statusbar-left {
  gap: 6px;
}
.statusbar-left,
.statusbar-right {
  display: flex;
  align-items: center;
}
.statusbar-mode {
  --editingModeArrowWidth: 9px;
  background-color: var(--hds-color-util-brand-700);
  color: var(--hds-color-util-neutral-25);
  text-transform: uppercase;
  padding: 0 5px 0 var(--editingModeArrowWidth);
  margin: 0 var(--editingModeArrowWidth) 0 0;
  position: relative;
}
.statusbar-mode:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--statusBarHeight) / 2) 0
    calc(var(--statusBarHeight) / 2) var(--editingModeArrowWidth);
  border-color: transparent transparent transparent
    var(--hds-color-util-brand-700);
}
.statusbar-filename {
  color: var(--hds-color-util-brand-700);
}
.integrated-code-graphic__terminal {
  position: relative;
  background: var(--hds-color-util-brand-25);
  margin: 2px;
  padding: 32px 24px 16px;
  border-radius: 5px;
}
.terminal-line {
  display: block;
}
.no-code-graphic__card {
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-util-neutral-50);
  width: 100%;
  height: 100%;
}
.no-code-graphic__messages-wrapper {
  position: absolute;
  display: grid;
  gap: 8px;
  justify-items: end;
  width: 230px;
  height: 207px;
  top: 34px;
  left: 15px;
}
.no-code-graphic__messages {
  padding: 16px 12px;
  background-color: #2b408a;
  border-radius: var(--hds-space-core-radius-md);
  display: grid;
  justify-items: end;
}
.no-code-graphic__message {
  padding: 6px 11px 8px;
  background-color: #15286a;
  border-radius: var(--hds-space-core-radius-md);
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-normal);
  font-size: 10px;
  line-height: 1.2;
  color: var(--hds-color-util-neutral-990);
}
.no-code-graphic__message--received {
  background-color: #fff;
  color: #15286a;
  justify-self: start;
  width: 156px;
}
.no-code-graphic__message--sent {
  width: 168px;
  margin: 18px 0 10px;
}
@layer app {
  .no-code-graphic__message--sent-link .hds-link {
    color: #fff;
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
  @media (prefers-reduced-motion: no-preference) {
    .no-code-graphic__message--sent-link .hds-link {
      transition: opacity 0.1s linear;
    }
  }
  .no-code-graphic__message--sent-link .hds-link:hover {
    opacity: 0.6;
  }
}
.no-code-graphic__qr-code-container {
  position: absolute;
  top: 76px;
  right: -4px;
  width: 142px;
  height: 218px;
  padding: 22px;
  background-color: #2b408a;
  border-radius: var(--hds-space-core-radius-md) 0 0 0;
  display: grid;
}
.no-code-graphic__qr-code-label {
  font-weight: var(--hds-font-weight-bold);
  font-size: 11px;
  line-height: 115%;
}
.no-code-graphic__qr-code-label,
.no-code-graphic__qr-code-price {
  font-family: var(--hds-font-family);
  color: var(--hds-color-util-neutral-990);
  text-align: center;
}
.no-code-graphic__qr-code-price {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0.139px;
}
.no-code-graphic__qr-code-wrapper {
  padding: 4px;
  background-color: #15286a;
  border-radius: var(--hds-space-core-radius-md);
  display: grid;
  justify-items: center;
}
.no-code-graphic__qr-code-image-container {
  width: 90px;
  height: 84px;
  background-color: #fff;
  border-radius: var(--hds-space-core-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-code-graphic__qr-code-image {
  width: 70px;
  height: 66px;
}
.no-code-graphic__qr-code-prompt-label {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 9px;
  line-height: 115%;
  color: var(--hds-color-util-neutral-990);
  text-align: center;
  margin-top: 6px;
}
.integrated-platforms-graphic__card {
  border-radius: var(--hds-space-core-radius-md);
  background-color: var(--hds-color-util-neutral-50);
  width: 100%;
  height: 100%;
  padding: 30px 0;
}
.integrated-platforms-graphic__company-icons-grid {
  display: grid;
  gap: 26px;
  overflow: hidden;
  justify-content: center;
}
.integrated-platforms-graphic__company-icons-grid:after {
  content: "";
  width: 100%;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.82;
  background: linear-gradient(0deg, #122054, rgba(18, 32, 84, 0));
}
.integrated-platforms-graphic__company-icons-row {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.integrated-platforms-graphic__company-icons-row .user-icon {
  width: 61px;
  height: 61px;
}
.developer-systems-animation {
  position: relative;
  container-type: inline-size;
  container-name: developer-systems;
  overflow: hidden;
}
.developer-systems-animation__dot-grid {
  position: absolute;
  top: -60px;
  left: -8px;
  right: -8px;
  bottom: -80px;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='10' xmlns='http://www.w3.org/2000/svg'><rect x='0' y='0' width='2' height='2' fill='%2330437F'/></svg>");
  background-size: 10px 10px;
  background-position: 0 0;
  opacity: 0.46;
  -webkit-mask-image: linear-gradient(
    180deg,
    hsla(0, 0%, 85%, 0),
    #737373 50%,
    hsla(0, 0%, 85%, 0)
  );
  mask-image: linear-gradient(
    180deg,
    hsla(0, 0%, 85%, 0),
    #737373 50%,
    hsla(0, 0%, 85%, 0)
  );
}
.developer-systems-animation__figure {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
  max-width: 1000px;
  height: 530px;
}
.developer-systems-animation__figure--chart-left {
  position: absolute;
  top: 52%;
  left: 0;
}
.developer-systems-animation__figure--chart-center {
  position: relative;
  display: grid;
  grid-template-rows: 88px 75px 266px 100px;
}
.developer-systems-animation__figure--chart-right {
  position: absolute;
  top: 68%;
  right: 6%;
}
.developer-systems-animation__stripe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.developer-systems-animation__stripe-center {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--hds-space-core-radius-md);
  background: linear-gradient(288.31deg, #0d1738 -6.87%, #4032c8 105.95%);
}
.developer-systems-animation__stripe-center svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.developer-systems-animation__animated-border-container {
  position: absolute;
  inset: -1px;
  overflow: hidden;
  border-radius: var(--hds-space-core-radius-sm);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.developer-systems-animation__animated-border {
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(0deg, #7500fb, #ff39db);
  animation: animatedgradient 1.5s ease-out infinite;
}
.developer-systems-animation__animated-border--rectangle {
  width: 110%;
  padding-bottom: 110%;
}
.developer-systems-animation__animated-border-mask {
  position: absolute;
  inset: 1px;
  background: #101d51;
  border-radius: var(--hds-space-core-radius-sm);
  z-index: 1;
}
.developer-systems-animation__apps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--hds-space-core-50);
  padding: var(--hds-space-core-50);
  width: 112px;
  height: 76px;
  background: var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-sm);
}
.developer-systems-animation__app {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border: 1px dashed var(--hds-color-util-brand-300);
  border-radius: var(--hds-space-core-radius-sm);
  transition: border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  perspective: 250px;
}
.developer-systems-animation__app-logo {
  position: absolute;
  width: 32px;
  height: 32px;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
  transition-property: transform;
  transform-style: preserve-3d;
  z-index: 2;
}
.developer-systems-animation__app-logo__back,
.developer-systems-animation__app-logo__front {
  position: absolute;
  top: 0;
  backface-visibility: hidden;
}
.developer-systems-animation__app-logo__back {
  transform: rotateX(180deg);
}
.developer-systems-animation__systems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-100);
  padding: var(--hds-space-core-100);
  margin: 0 auto;
  width: 100%;
  height: fit-content;
}
.developer-systems-animation__systems-row-1 {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: var(--hds-space-core-100);
}
.developer-systems-animation__systems-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hds-space-core-100);
}
.developer-systems-animation__system-container {
  max-height: 32px;
  border: 1px dashed var(--hds-color-util-brand-300);
  transition: border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.developer-systems-animation__system,
.developer-systems-animation__system-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  border-radius: var(--hds-space-core-radius-sm);
}
.developer-systems-animation__system {
  width: 100%;
  padding: 0 var(--hds-space-core-200);
  background: var(--hds-color-util-brand-200);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  color: var(--hds-color-util-neutral-975);
  opacity: 0;
  scale: 0.75;
  transition-property: opacity, scale;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-shadow:
    0 14.088px 21.132px -14.088px rgba(3, 3, 39, 0.25),
    0 8.453px 16.906px -8.453px rgba(0, 0, 0, 0.1);
}
.developer-systems-animation__system-container--animate {
  border-color: transparent;
}
.developer-systems-animation__system-container--animate
  .developer-systems-animation__system {
  opacity: 1;
  scale: 1;
}
.developer-systems-animation__system-container--initial
  .developer-systems-animation__system {
  opacity: 1;
  scale: 1;
  transition-duration: 0ms;
}
.developer-systems-animation__grid-row-layout--top {
  position: relative;
  display: flex;
  justify-content: center;
}
.developer-systems-animation__grid-row-layout--middle {
  position: absolute;
  top: 52%;
  right: 0;
}
.developer-systems-animation__grid-row-layout--bottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.developer-systems-animation__grid-row-block--anchor {
  position: absolute;
  bottom: 0;
  display: inline-grid;
  grid-template-columns: repeat(2, 185px);
  z-index: 1;
}
.developer-systems-animation__grid-row-block {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: var(--hds-space-core-75) var(--hds-space-core-200);
  margin: auto auto 0;
  background: var(--hds-color-action-bg-solid);
  border-radius: var(--hds-space-core-radius-sm);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  color: var(--hds-color-util-neutral-975);
}
.developer-systems-animation__grid-row-block--middle {
  margin: 0;
}
.developer-systems-animation__psp-container {
  position: relative;
  display: flex;
  gap: var(--hds-space-core-100);
  align-self: flex-end;
  margin: auto auto 0;
}
.developer-systems-animation__psp-container--single,
:lang(ja-JP) .developer-systems-animation__psp-container--multiple,
:lang(pt-BR) .developer-systems-animation__psp-container--multiple,
:lang(th-TH) .developer-systems-animation__psp-container--multiple {
  display: none;
}
.developer-systems-animation__psp-container--single
  .developer-systems-animation__psp-app {
  flex-direction: column;
  width: auto;
  min-width: 192px;
}
:lang(ja-JP) .developer-systems-animation__psp-container--single,
:lang(pt-BR) .developer-systems-animation__psp-container--single,
:lang(th-TH) .developer-systems-animation__psp-container--single {
  display: flex;
}
:not(:lang(ja-JP)) .developer-systems-animation__psp-jp,
:not(:lang(pt-BR)) .developer-systems-animation__psp-br,
:not(:lang(th-TH)) .developer-systems-animation__psp-th {
  display: none;
}
.developer-systems-animation__psp-app {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: var(--hds-space-core-75) var(--hds-space-core-200);
  background: var(--hds-color-util-brand-200);
  border-radius: var(--hds-space-core-radius-sm);
  font-size: 12px;
  font-weight: var(--hds-font-weight-bold);
  color: var(--hds-color-util-neutral-975);
  z-index: 2;
  opacity: 0;
  transform: scale(0.75);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.developer-systems-animation__psp-app-container--initial {
  opacity: 1;
  transform: scale(1);
  transition-duration: 0ms;
}
.developer-systems-animation__psp-app-container {
  border: 1px dashed #152460;
  border-radius: var(--hds-space-core-radius-sm);
  transition-property: border-color;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}
.developer-systems-animation__psp-app-container--animate {
  border-color: transparent;
}
.developer-systems-animation__psp-app-container--animate:first-child,
.developer-systems-animation__psp-app-container--animate:nth-child(2),
.developer-systems-animation__psp-app-container--animate:nth-child(3),
.developer-systems-animation__psp-app-container--animate:nth-child(4) {
  transition-delay: 2.5s;
}
.developer-systems-animation__psp-app-container--animate:nth-child(3) {
  transition-delay: 3s;
}
.developer-systems-animation__psp-app-container--animate
  .developer-systems-animation__psp-app {
  opacity: 1;
  transform: scale(1);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-delay: 0ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.developer-systems-animation__psp-app-container--animate:first-child
  .developer-systems-animation__psp-app,
.developer-systems-animation__psp-app-container--animate:nth-child(2)
  .developer-systems-animation__psp-app,
.developer-systems-animation__psp-app-container--animate:nth-child(3)
  .developer-systems-animation__psp-app,
.developer-systems-animation__psp-app-container--animate:nth-child(4)
  .developer-systems-animation__psp-app {
  transition-delay: 2.5s;
}
.developer-systems-animation__psp-app-container--animate:nth-child(3)
  .developer-systems-animation__psp-app {
  transition-delay: 3s;
}
.developer-systems-animation__pipeline-app-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--hds-color-util-neutral-50);
  border-radius: var(--hds-space-core-radius-sm);
  z-index: 10;
}
.developer-systems-animation__psp-app-container--initial
  .developer-systems-animation__psp-app {
  opacity: 1;
  transform: scale(1);
  transition-duration: 0ms;
  transition-delay: 0ms;
}
.developer-systems-animation__pipeline-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.developer-systems-animation__button {
  display: none;
  padding: var(--hds-space-core-75) var(--hds-space-core-200);
}
.developer-systems-animation__dynamic-rect-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.developer-systems-animation__dynamic-rect-bg svg {
  width: 100%;
  height: 100%;
}
.developer-systems-animation__system-connections-svg {
  display: none;
}
.developer-systems-animation__system-connections-mobile-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.developer-systems-animation__center-path-svg {
  display: none;
}
.developer-systems-animation__center-path-mobile-svg {
  display: block;
  position: absolute;
  top: 54%;
  width: 100%;
}
.developer-systems-animation__psp-connection-base-animated-stroke-svg,
.developer-systems-animation__psp-connection-base-stroke-svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.developer-systems-animation__psp-connection-path {
  stroke-dasharray: 120 120;
  stroke-dashoffset: 120;
  transition-property: stroke-dashoffset;
  transition-duration: 1s;
  transition-delay: 0ms;
  transition-timing-function: cubic-bezier(0.66, 0, 0.34, 1);
}
.developer-systems-animation__psp-connection-path--active {
  stroke-dashoffset: 0;
  transition-duration: 2s;
}
.developer-systems-animation__psp-connection-path--active:first-child,
.developer-systems-animation__psp-connection-path--active:nth-child(4) {
  transition-delay: 1.25s;
  transition-timing-function: cubic-bezier(0.78, 0, 0.22, 1);
}
.developer-systems-animation__psp-connection-path--active:nth-child(2),
.developer-systems-animation__psp-connection-path--active:nth-child(3) {
  transition-duration: 3.25s;
  transition-delay: 1.75s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.developer-systems-animation__psp-connection-path--active:nth-child(3) {
  transition-delay: 2.25s;
}
@container developer-systems (min-width: 600px) {
  .developer-systems-animation__button.hds-button,
  .developer-systems-animation__grid-row-block,
  .developer-systems-animation__psp-app,
  .developer-systems-animation__system {
    font-size: 14px;
  }
  .developer-systems-animation__figure {
    width: fit-content;
    height: 386px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  .developer-systems-animation__figure--chart-left {
    top: 44%;
  }
  .developer-systems-animation__figure--chart-center {
    max-width: 696px;
    grid-template-rows: 48px 75px 160px auto;
  }
  .developer-systems-animation__figure--chart-right {
    top: 68%;
  }
  .developer-systems-animation__stripe {
    transform: translate(-50%, -75%);
  }
  .developer-systems-animation__apps {
    width: 152px;
    height: 105px;
    gap: var(--hds-space-core-100);
    padding: var(--hds-space-core-100);
    border-radius: var(--hds-space-core-radius-md);
  }
  .developer-systems-animation__app,
  .developer-systems-animation__app-logo,
  .developer-systems-animation__pipeline-app,
  .developer-systems-animation__pipeline-app-logo {
    width: 40px;
    height: 40px;
  }
  .developer-systems-animation__systems {
    flex-direction: row;
    height: 48px;
  }
  .developer-systems-animation__systems
    .developer-systems-animation__dynamic-rect-bg {
    z-index: 0;
  }
  .developer-systems-animation__grid-row-block--anchor {
    grid-template-columns: repeat(2, 308px);
  }
  .developer-systems-animation__grid-row-layout--middle {
    top: 47%;
  }
  .developer-systems-animation__system-connections-svg {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .developer-systems-animation__system-connections-mobile-svg {
    display: none;
  }
  .developer-systems-animation__center-path-mobile-svg {
    top: 50%;
  }
  .developer-systems-animation__psp-connection-base-animated-stroke-svg,
  .developer-systems-animation__psp-connection-base-stroke-svg {
    bottom: 0;
  }
}
@container developer-systems (min-width: 882px) {
  .developer-systems-animation__figure {
    grid-template-columns: 152px auto 152px;
  }
  .developer-systems-animation__figure--chart-left {
    position: relative;
    display: flex;
    align-items: center;
    inset: unset;
  }
  .developer-systems-animation__figure--chart-center {
    grid-template-rows: 48px 75px 136px 32px auto;
  }
  .developer-systems-animation__figure--chart-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    inset: unset;
  }
  .developer-systems-animation__grid-row-layout--middle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--hds-space-core-450);
    inset: unset;
  }
  .developer-systems-animation__button {
    display: inline-flex;
  }
  .developer-systems-animation__button.hds-button {
    height: var(--hds-space-core-400);
  }
  .developer-systems-animation__center-path-svg {
    display: block;
    position: absolute;
    width: 100%;
  }
  .developer-systems-animation__center-path-mobile-svg {
    display: none;
  }
}
.developers-wave-animation {
  position: absolute;
  pointer-events: none;
  inset: 0;
  display: flex;
  align-items: flex-end;
  height: 420px;
}
@media (min-width: 640px) {
  .developers-wave-animation {
    height: 460px;
  }
}
@media (max-width: 639px) {
  .developers-wave-animation:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      var(--hds-color-surface-bg-quiet),
      transparent 60%
    );
    z-index: 2;
  }
}
.developers-wave-animation {
  -webkit-mask-image: radial-gradient(#000 0, #000 30%, transparent 75%);
  mask-image: radial-gradient(#000 0, #000 30%, transparent 75%);
}
.developers-wave-animation__canvas {
  width: 100%;
  height: 100%;
}
@media (max-width: 639px) {
  .squeezy-carousel {
    display: none;
  }
}
.squeezy-carousel__body {
  display: grid;
  gap: var(--hds-space-core-450);
}
.squeezy-carousel__canvas {
  width: 870px;
  aspect-ratio: 1232/460;
}
@media (min-width: 940px) {
  .squeezy-carousel__canvas {
    width: 100%;
  }
}
.squeezy-carousel__items-details-container {
  min-width: 0;
  display: flex;
}
.squeezy-carousel__item-details {
  width: 100%;
  flex-shrink: 0;
  display: grid;
  align-content: start;
  justify-content: space-between;
  gap: var(--hds-space-core-400);
}
@media (min-width: 940px) {
  .squeezy-carousel__item-details {
    grid: auto/1fr auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .squeezy-carousel__item-details {
    transition: opacity 0.12s ease;
  }
}
.squeezy-carousel__item-copy {
  padding-right: var(--hds-space-core-1400);
}
@media (min-width: 940px) {
  .squeezy-carousel__item-copy {
    max-width: calc(460px * (16 / 9));
    padding-right: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .squeezy-carousel__item-copy {
    transition: opacity 0.12s ease;
  }
}
.mobile-carousel {
  --carousel-gap: var(--hds-space-core-200);
  --carousel-gutter: var(--hds-space-layout-content-margin);
  width: 100%;
}
@media (min-width: 640px) {
  .mobile-carousel {
    display: none;
  }
}
.mobile-carousel_container {
  overflow: hidden;
  margin-inline: var(--section-container-margin-inline-bleed, 0);
}
.mobile-carousel__scroller {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  position: relative;
  scroll-padding-inline-start: 16px;
}
.mobile-carousel__items-container {
  margin: 0 auto;
  display: grid;
  gap: var(--carousel-gap);
  grid-auto-flow: column;
  width: fit-content;
  padding-inline: 16px;
}
.mobile-carousel__scroller::-webkit-scrollbar {
  display: none;
}
.mobile-carousel__item {
  --carousel-item-progress: clamp(
    -1,
    var(--carousel-item-index, 0) - var(--carousel-scroll-progress, 0),
    1
  );
  width: calc(100vw - 32px);
  scroll-snap-align: start;
  position: relative;
}
.mobile-carousel__inner {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
@media (min-width: 640px) {
  .events-mobile-carousel {
    display: none;
  }
}
.events-mobile-carousel-card {
  --scale-amount: 0.05;
  --carousel-card-scale: calc(
    1 -
      max(
        (var(--carousel-item-progress, 0)),
        -1 * (var(--carousel-item-progress, 0))
      ) *
      var(--scale-amount)
  );
  --gap-inward: 7px;
  --scale-shrinkage: calc((1 - var(--carousel-card-scale)) * 50%);
  --gap-offset: calc(
    (var(--scale-shrinkage) + var(--gap-inward) / var(--carousel-card-scale)) *
      var(--carousel-item-progress, 0) * -1
  );
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-300);
}
.events-mobile-carousel-card__media {
  pointer-events: none;
  position: relative;
  overflow: hidden;
  background-color: var(--hds-color-core-neutral-50);
  border-radius: var(--hds-space-core-radius-md);
  aspect-ratio: 336/350;
}
@media (max-width: 639px) {
  .events-mobile-carousel-card__media {
    transform: translate3d(var(--gap-offset), 0, 0)
      scale(var(--carousel-card-scale));
    transform-origin: center center;
  }
}
.events-mobile-carousel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 50%;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center;
  transform: translate3d(-50%, 0, 0);
}
@media (prefers-reduced-motion: no-preference) {
  .events-mobile-carousel-card__image {
    --parallax-offset: calc(-30px * var(--carousel-item-progress, 0));
    transform: translate3d(calc(-50% + var(--parallax-offset)), 0, 0);
  }
}
@media (max-width: 639px) and (prefers-reduced-motion: no-preference) {
  .events-mobile-carousel-card__title {
    opacity: calc(
      1 -
        max(
          (var(--carousel-item-progress, 0)),
          -1 * (var(--carousel-item-progress, 0))
        )
    );
  }
}
.events-mobile-carousel-card__link {
  margin-top: auto;
}
@media (max-width: 639px) and (prefers-reduced-motion: no-preference) {
  .events-mobile-carousel-card__link {
    opacity: calc(
      1 -
        max(
          (var(--carousel-item-progress, 0)),
          -1 * (var(--carousel-item-progress, 0))
        )
    );
  }
}
.book-button {
  display: inline-flex;
  align-items: center;
  padding: var(--hds-space-core-25);
  border: 1px solid var(--hds-color-surface-border-quiet);
  border-radius: var(--hds-space-core-radius-sm);
  background-color: transparent;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
  gap: var(--hds-space-core-150);
  flex-direction: row;
}
.book-button:focus-visible {
  outline: 2px solid var(--hds-color-action-border-solid);
  outline-offset: 3px;
}
.book-button:hover {
  border-color: var(--hds-color-util-neutral-200);
}
.book-button:hover .book-button__text {
  color: var(--hds-color-action-text-solid);
}
.book-button__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--hds-space-core-radius-xs);
  flex-shrink: 0;
}
.book-button__text {
  font-family: var(--hds-font-family);
  font-weight: var(--hds-font-weight-bold);
  font-size: 0.875rem;
  line-height: 1;
  color: var(--hds-color-text-soft);
  white-space: nowrap;
  padding-right: var(--hds-space-core-200);
  transition: color 0.2s ease;
}
.book-of-the-week {
  --book-of-the-week-background-color: #0b3b45;
  position: relative;
  display: grid;
  column-gap: var(--hds-space-layout-gap);
  grid-template-columns: repeat(
    var(--hds-space-layout-columns),
    minmax(0, 1fr)
  );
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  background-color: var(--hds-color-surface-bg-subdued);
  border-radius: var(--hds-space-core-radius-md);
}
@media (min-width: 940px) {
  .book-of-the-week {
    grid-template-rows: auto;
  }
}
.book-of-the-week__image-container {
  grid-column: span 4;
  justify-items: end;
  background-color: var(--book-of-the-week-background-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--hds-space-core-400);
  padding-inline: var(--hds-space-core-200);
  border-top-left-radius: var(--hds-space-core-radius-md);
  border-top-right-radius: var(--hds-space-core-radius-md);
  overflow: hidden;
  max-height: 450px;
}
@media (min-width: 640px) {
  .book-of-the-week__image-container {
    grid-column: span 8;
  }
}
@media (min-width: 940px) {
  .book-of-the-week__image-container {
    padding-block: var(--hds-space-core-600);
    grid-column: 1 / span 5;
    max-height: 100%;
    border-top-left-radius: var(--hds-space-core-radius-md);
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--hds-space-core-radius-md);
  }
}
.book-of-the-week__picture {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 940px) {
  .book-of-the-week__picture {
    width: 62.731%;
  }
}
.book-of-the-week__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(320px, 100%);
  max-height: 310px;
  box-shadow: 0 10px 50px -7.79776px rgba(55, 39, 37, 0.15);
  filter: drop-shadow(0 2px 25px rgba(0, 0, 0, 0.25));
  border-radius: var(--hds-space-core-radius-md);
  overflow: hidden;
}
@media (min-width: 640px) {
  .book-of-the-week__image {
    max-width: min(360px, 100%);
    max-height: 365px;
  }
}
@media (min-width: 940px) {
  .book-of-the-week__image {
    max-width: 100%;
    max-height: 100%;
  }
}
.book-of-the-week__content {
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-block-start: var(--hds-space-core-500);
  padding-block-end: var(--hds-space-core-500);
  padding-inline-start: var(--hds-space-core-300);
  padding-inline-end: var(--hds-space-core-400);
}
@media (min-width: 640px) {
  .book-of-the-week__content {
    grid-column: span 8;
    padding-block-start: var(--hds-space-core-600);
    padding-block-end: var(--hds-space-core-600);
  }
}
@media (min-width: 940px) {
  .book-of-the-week__content {
    padding-block-end: var(--hds-space-core-300);
    padding-inline: var(--hds-space-core-0);
    padding-block: var(--hds-space-core-1000);
    grid-column: 7 / span 6;
  }
}
.book-of-the-week__icon {
  position: absolute;
  width: 86px;
  height: 136px;
  top: -64px;
  right: 40px;
  color: var(--hds-color-icon-subdued);
  display: none;
}
@media (min-width: 940px) {
  .book-of-the-week__icon {
    display: block;
  }
}
.book-of-the-week__text {
  display: grid;
  grid-template-rows: auto auto minmax(var(--hds-space-core-0), 1fr) auto;
  height: 100%;
  gap: var(--hds-space-core-300);
}
@media (min-width: 640px) {
  .book-of-the-week__text {
    padding-right: var(--hds-space-core-200);
    grid-template-rows: auto auto minmax(var(--hds-space-core-100), 1fr) auto;
  }
}
@media (min-width: 940px) {
  .book-of-the-week__text {
    padding-right: var(--hds-space-core-400);
    grid-template-rows: auto auto minmax(var(--hds-space-core-200), 1fr) auto;
  }
}
.book-of-the-week__author,
.book-of-the-week__book-title.hds-heading--md {
  text-wrap: pretty;
  max-width: 28ch;
}
.book-of-the-week__author {
  display: inline-block;
}
.book-of-the-week__description {
  max-width: 60ch;
  text-wrap: pretty;
}
@media (min-width: 940px) {
  .book-of-the-week__description {
    max-width: 46ch;
  }
}
.book-of-the-week__see-also {
  max-width: 44ch;
  text-wrap: pretty;
}
.book-of-the-week__button-container {
  display: flex;
  flex-direction: column;
  gap: var(--hds-space-core-200);
  grid-row: 4;
}
.events-section-container {
  overflow: hidden;
}
.events-section__header {
  display: flex;
  gap: var(--hds-space-core-800);
  justify-content: space-between;
  align-items: flex-end;
}
.events-section__header-content {
  display: flex;
  flex-direction: column;
  margin-block-end: var(--hds-space-core-500);
}
@media (min-width: 640px) {
  .events-section__header-content {
    margin-block-end: var(--hds-space-core-100);
  }
}
@media (min-width: 940px) {
  .events-section__header-content {
    margin-block-end: var(--hds-space-core-400);
  }
}
.events-section__header-subtitle,
.events-section__header-title {
  max-width: 43ch;
  text-wrap: pretty;
}
.events-section__controls {
  display: flex;
  gap: var(--hds-space-core-100);
}
@media (max-width: 639px) {
  .events-section__controls {
    display: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.tabular-nums,
.tabular-nums--tight {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.tabular-nums--tight {
  letter-spacing: -0.03em;
}
