:root {
  --_5hundred-tokens---container-max: 1240px;
  --_5hundred-tokens---gutter: 24px;
  --_5hundred-tokens---section-pad: clamp(56px, 8vw, 96px);
  --_5hundred-tokens---tint: #f8faff;
  --_5hundred-tokens---border: #eef2f7;
  --_5hundred-tokens---white: #fff;
  --_5hundred-tokens---blue: #2f5bff;
  --_5hundred-tokens---font-body: Poppins, sans-serif;
  --_5hundred-tokens---ink: #030b2c;
  --_5hundred-tokens---radius-button: 8px;
  --_5hundred-tokens---font-button: Inter, sans-serif;
  --_5hundred-tokens---blue-hover: #1e46e6;
  --_5hundred-tokens---light-blue: #eef2ff;
  --_5hundred-tokens---blue-deep: #1f37b4;
  --_5hundred-tokens---gray: #6b7280;
  --_5hundred-tokens---radius: 16px;
  --_5hundred-tokens---status-green-bg: #d1f4de;
  --_5hundred-tokens---status-green-text: #059644;
  --_5hundred-tokens---status-amber-bg: #ffecd1;
  --_5hundred-tokens---status-amber-text: #b56e00;
  --_5hundred-tokens---status-neutral-bg: #e9ebef;
  --_5hundred-tokens---status-neutral-text: #4b5563;
  --_5hundred-tokens---gray-footer: #9ca3af;
  --_5hundred-tokens---sec-text: #00315c;
  --_5hundred-tokens---surface-cream: #f5f3ee;
}

.container {
  width: 100%;
  max-width: var(--_5hundred-tokens---container-max);
  padding-right: var(--_5hundred-tokens---gutter);
  padding-left: var(--_5hundred-tokens---gutter);
  margin-left: auto;
  margin-right: auto;
}

.container.header__inner {
  grid-column-gap: 40px;
  align-items: center;
  min-height: 72px;
  display: flex;
  position: relative;
}

.section {
  padding-top: var(--_5hundred-tokens---section-pad);
  padding-bottom: var(--_5hundred-tokens---section-pad);
}

.section.section--tint {
  background-color: var(--_5hundred-tokens---tint);
}

.section.section--tint.trusted {
  display: block;
}

.site-header {
  z-index: 50;
  border-bottom: 1px solid var(--_5hundred-tokens---border);
  background-color: var(--_5hundred-tokens---white);
  position: sticky;
  top: 0;
}

.logo {
  grid-column-gap: 10px;
  flex-shrink: 0;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.logo:focus-visible, .logo[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---blue);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.logo__mark {
  width: 28px;
  height: 32px;
}

.logo__word {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---blue);
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 600;
}

.logo__word.logo__word--on-dark {
  color: var(--_5hundred-tokens---white);
}

.nav {
  grid-column-gap: 40px;
  flex: 1;
  align-items: center;
  display: flex;
}

.nav.nav--open {
  display: flex;
}

.nav__links {
  grid-column-gap: 36px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.nav__link {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition-property: color;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.nav__link:hover {
  color: var(--_5hundred-tokens---blue);
}

.nav__link:focus-visible, .nav__link[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---blue);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.nav__link.nav__link--active {
  color: var(--_5hundred-tokens---blue);
}

.nav__signin {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  white-space: nowrap;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.nav__signin:hover {
  color: var(--_5hundred-tokens---blue);
}

.nav__signin:focus-visible, .nav__signin[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---blue);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.header__actions {
  grid-column-gap: 16px;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.hamburger {
  grid-row-gap: 5px;
  border-color: var(--_5hundred-tokens---border);
  cursor: pointer;
  background-color: #0000;
  border-style: solid;
  border-width: 1px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  display: none;
}

.hamburger:focus-visible, .hamburger[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---blue);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.btn {
  border-radius: var(--_5hundred-tokens---radius-button);
  font-family: var(--_5hundred-tokens---font-button);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #0000;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition-property: background-color, color, border-color;
  transition-duration: .15s;
  transition-timing-function: ease;
  display: inline-block;
}

.btn:focus-visible, .btn[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---ink);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.btn.btn--primary {
  border-color: var(--_5hundred-tokens---blue);
  background-color: var(--_5hundred-tokens---blue);
  color: var(--_5hundred-tokens---white);
}

.btn.btn--primary:hover {
  border-color: var(--_5hundred-tokens---blue-hover);
  background-color: var(--_5hundred-tokens---blue-hover);
}

.btn.btn--secondary {
  background-color: var(--_5hundred-tokens---light-blue);
  color: var(--_5hundred-tokens---blue);
}

.btn.btn--secondary:hover {
  background-color: #e2e9ff;
}

.btn.btn--white {
  background-color: var(--_5hundred-tokens---white);
  color: var(--_5hundred-tokens---blue);
}

.btn.btn--white:hover {
  background-color: #f0f3ff;
}

.btn.btn--ghost {
  color: var(--_5hundred-tokens---white);
  background-color: #0000;
  border-color: #ffffff73;
}

.btn.btn--ghost:hover {
  background-color: #ffffff1f;
}

.btn.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn.btn--block {
  width: auto;
}

.hero {
  background-color: var(--_5hundred-tokens---tint);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.hero__inner {
  grid-column-gap: 64px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
}

.hero__text {
  max-width: 580px;
}

.badge {
  grid-column-gap: 8px;
  background-color: var(--_5hundred-tokens---light-blue);
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---blue-deep);
  border-radius: 999px;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.badge__dot {
  background-color: var(--_5hundred-tokens---blue);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.hero__title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  letter-spacing: -.02em;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: clamp(2rem, 1.1rem + 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.07;
}

.hero__sub {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.625;
}

.hero__cta {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  display: flex;
}

.trust-line {
  grid-column-gap: 24px;
  grid-row-gap: 12px;
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  flex-wrap: wrap;
  margin-top: 24px;
  padding-left: 0;
  font-size: 13px;
  list-style-type: none;
  display: flex;
}

.trust-line__item {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.ico-check {
  fill: none;
  stroke: #2f5bff;
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hero__illustration {
  justify-content: flex-end;
  display: flex;
}

.mock-card {
  border-color: var(--_5hundred-tokens---border);
  border-radius: var(--_5hundred-tokens---radius);
  background-color: var(--_5hundred-tokens---white);
  border-style: solid;
  border-width: 1px;
  width: 100%;
  max-width: 420px;
  padding: 22px;
  box-shadow: 0 10px 24px -4px #030b2c1a, 0 30px 50px -12px #030b2c14;
}

.mock-card__bar {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.dot.dot--red {
  background-color: #ff5f57;
}

.dot.dot--yellow {
  background-color: #febc2e;
}

.dot.dot--green {
  background-color: #28c840;
}

.mock-card__title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  margin-left: 8px;
  font-size: 13px;
}

.mock-card__divider {
  border-top: 1px solid var(--_5hundred-tokens---border);
  margin-top: 14px;
  margin-bottom: 14px;
}

.mock-card__heading {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
}

.claim-row {
  grid-column-gap: 12px;
  background-color: var(--_5hundred-tokens---tint);
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  font-size: 14px;
  display: flex;
}

.pill {
  font-family: var(--_5hundred-tokens---font-body);
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.pill.pill--green {
  background-color: var(--_5hundred-tokens---status-green-bg);
  color: var(--_5hundred-tokens---status-green-text);
}

.pill.pill--amber {
  background-color: var(--_5hundred-tokens---status-amber-bg);
  color: var(--_5hundred-tokens---status-amber-text);
}

.pill.pill--gray {
  background-color: var(--_5hundred-tokens---status-neutral-bg);
  color: var(--_5hundred-tokens---status-neutral-text);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 56px);
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.section-title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-title.section-title--left {
  text-align: left;
}

.section-lead {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.section-lead.section-lead--left {
  text-align: left;
  margin-bottom: 24px;
}

.grid-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.card {
  border-color: var(--_5hundred-tokens---border);
  border-radius: var(--_5hundred-tokens---radius);
  background-color: var(--_5hundred-tokens---white);
  border-style: solid;
  border-width: 1px;
  flex-direction: column;
  padding: 32px;
  display: flex;
}

.card__title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.card__body {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  flex-grow: 1;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.57;
}

.card__cta {
  align-self: flex-start;
  margin-top: 20px;
}

.icon-tile {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: inline-flex;
}

.icon-tile.icon-tile--blue {
  background-color: var(--_5hundred-tokens---light-blue);
}

.icon-tile.icon-tile--amber {
  background-color: var(--_5hundred-tokens---status-amber-bg);
}

.icon-tile.icon-tile--green {
  background-color: var(--_5hundred-tokens---status-green-bg);
}

.tile-ico {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 26px;
  height: 26px;
}

.tile-ico.tile-ico--blue {
  stroke: #2f5bff;
}

.tile-ico.tile-ico--amber {
  stroke: #b56e00;
}

.tile-ico.tile-ico--green {
  stroke: #059644;
}

.step {
  flex-direction: column;
  display: flex;
}

.step__num {
  border-color: var(--_5hundred-tokens---blue);
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---blue);
  letter-spacing: .04em;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 999px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.trusted {
  text-align: center;
}

.trusted__label {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  letter-spacing: .1em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.trusted__logos {
  grid-column-gap: 56px;
  grid-row-gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.trusted__logo {
  opacity: .55;
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition-property: color, opacity;
  transition-duration: .25s;
  transition-timing-function: ease;
}

.trusted__logo:hover {
  opacity: 1;
  color: var(--_5hundred-tokens---blue);
}

.showcase__inner {
  grid-column-gap: 64px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
}

.showcase__text {
  max-width: 560px;
}

.showcase__text.showcase__text--rev {
  order: 0;
}

.eyebrow-chip {
  background-color: var(--_5hundred-tokens---light-blue);
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.eyebrow-chip.eyebrow-chip--center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.checklist {
  grid-row-gap: 14px;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.checklist__item {
  grid-column-gap: 12px;
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  align-items: flex-start;
  font-size: 15px;
  display: flex;
}

.showcase__img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  font-family: Changa One, Impact, sans-serif;
  display: block;
}

.phones {
  grid-column-gap: 24px;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.phone {
  text-align: center;
  flex: none;
  width: 210px;
  margin: 0;
}

.phone__img {
  width: 100%;
  height: auto;
  display: block;
}

.phone__cap {
  margin-top: 16px;
}

.phone__cap-title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---ink);
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.phone__cap-sub {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray);
  margin-top: 2px;
  font-size: 13px;
  display: block;
}

.play-badge {
  grid-column-gap: 14px;
  background-color: var(--_5hundred-tokens---ink);
  color: var(--_5hundred-tokens---white);
  border-radius: 12px;
  align-items: center;
  width: fit-content;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 22px;
  text-decoration: none;
  display: flex;
}

.play-badge__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.play-badge__text {
  text-align: left;
}

.play-badge__small {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---white);
  letter-spacing: .06em;
  font-size: 10px;
  line-height: 1;
  display: block;
}

.play-badge__strong {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.cta-card {
  color: var(--_5hundred-tokens---white);
  text-align: center;
  background-image: linear-gradient(120deg, #2f5bff 0%, #1b3bbf 100%);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px);
}

.cta-card__title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---white);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.cta-card__sub {
  font-family: var(--_5hundred-tokens---font-body);
  color: #ffffffd9;
  margin-top: 16px;
  font-size: 16px;
}

.cta-card__actions {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  display: flex;
}

.footer {
  background-color: var(--_5hundred-tokens---ink);
  color: var(--_5hundred-tokens---gray-footer);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 32px;
}

.footer__inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: 1px solid #ffffff14;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 48px;
  display: grid;
}

.footer__brand {
  max-width: 320px;
}

.footer__tagline {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray-footer);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---white);
  letter-spacing: .03em;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.footer__col-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer__link {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray-footer);
  font-size: 14px;
  line-height: 2.1;
  text-decoration: none;
  transition-property: color;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.footer__link:hover {
  color: var(--_5hundred-tokens---white);
}

.footer__link:focus-visible, .footer__link[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---white);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.footer__bottom {
  grid-column-gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.footer__copy {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray-footer);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
}

.footer__social {
  grid-column-gap: 24px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.footer__social-link {
  font-family: var(--_5hundred-tokens---font-body);
  color: var(--_5hundred-tokens---gray-footer);
  font-size: 13px;
  text-decoration: none;
}

.footer__social-link:hover {
  color: var(--_5hundred-tokens---white);
}

.footer__social-link:focus-visible, .footer__social-link[data-wf-focus-visible] {
  outline-color: var(--_5hundred-tokens---white);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.appdl-wrap {
  color: #030b2c;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 24px 18px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.appdl-page {
  width: 100%;
  max-width: 920px;
}

.appdl-card {
  padding: 0;
}

.appdl-top {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  align-items: center;
  display: flex;
}

.appdl-copy {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.appdl-logo {
  background-image: linear-gradient(155deg, #4a74ff 0%, #1f44d6 100%);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  box-shadow: 0 16px 32px -10px #2f5bff8c;
}

.appdl-logo-svg {
  color: #fff;
  width: 34px;
  height: 40px;
}

.appdl-brand {
  color: #030b2c;
  letter-spacing: -.5px;
  margin: 24px 0 20px;
  font-size: 20px;
  font-weight: 700;
}

.appdl-h {
  color: #030b2c;
  letter-spacing: -1.5px;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}

.appdl-desc {
  color: #6b7280;
  max-width: 430px;
  margin: 10px 0 20px;
  font-size: 16px;
  line-height: 26px;
}

.appdl-descb {
  color: #030b2c;
  font-weight: 700;
}

.appdl-bullets {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-direction: column;
  display: flex;
}

.appdl-bullet {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  display: flex;
}

.appdl-ck {
  background-color: #2f5bff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: flex;
}

.appdl-ck-svg {
  color: #fff;
  width: 14px;
  height: 14px;
}

.appdl-bul-l {
  color: #030b2c;
  font-size: 16px;
}

.appdl-phonewrap {
  flex-shrink: 0;
  justify-content: center;
  width: 372px;
  max-width: 100%;
  display: flex;
  position: relative;
}

.appdl-glow {
  z-index: 0;
  filter: blur(8px);
  background-image: radial-gradient(closest-side, #2f5bff47, #2f5bff00 70%);
  border-radius: 50%;
  width: 300px;
  height: 380px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.appdl-phone {
  z-index: 1;
  zoom: .62;
  background-color: #18181b;
  border-radius: 56px;
  width: 356px;
  height: 740px;
  padding: 13px;
  position: relative;
  box-shadow: 0 50px 90px -28px #030b2c80, inset 0 0 0 2px #ffffff12;
}

.appdl-screen {
  background-color: #fff;
  border-radius: 44px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.appdl-status {
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 32px;
  display: flex;
  position: relative;
}

.appdl-time {
  color: #030b2c;
  letter-spacing: .3px;
  font-size: 16px;
  font-weight: 600;
}

.appdl-island {
  background-color: #000;
  border-radius: 20px;
  width: 112px;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.appdl-sysicons {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #030b2c;
  align-items: center;
  display: flex;
}

.appdl-sys-svg {
  display: block;
}

.appdl-apphead {
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 22px 0;
  display: flex;
}

.appdl-greet {
  color: #6b7280;
  font-size: 14px;
}

.appdl-uname {
  color: #030b2c;
  margin-top: 2px;
  font-size: 19px;
  font-weight: 700;
}

.appdl-bell {
  color: #030b2c;
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

.appdl-policy {
  color: #fff;
  background-image: linear-gradient(140deg, #2f5bff 0%, #1f44d6 100%);
  border-radius: 18px;
  min-height: 152px;
  margin: 18px 22px 0;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.appdl-yr {
  font-size: 17px;
  font-weight: 700;
}

.appdl-active {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: #fff3;
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px 4px 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.appdl-gdot {
  background-color: #34d378;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.appdl-mo {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 700;
}

.appdl-pol {
  opacity: .82;
  margin-top: 5px;
  font-size: 12px;
}

.appdl-sec-label {
  color: #030b2c;
  margin: 22px 22px 0;
  font-size: 16px;
  font-weight: 700;
}

.appdl-qa {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 18px 0;
  display: grid;
}

.appdl-qa-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.appdl-qa-ic {
  color: #2f5bff;
  background-color: #e8eeff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.appdl-qa-ic-svg {
  width: 20px;
  height: 20px;
}

.appdl-qal {
  color: #6b7280;
  text-align: center;
  font-size: 10px;
}

.appdl-ra-head {
  justify-content: space-between;
  align-items: center;
  margin: 24px 22px 0;
  display: flex;
}

.appdl-ral {
  color: #030b2c;
  font-size: 16px;
  font-weight: 700;
}

.appdl-ra-head-a {
  color: #2f5bff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.appdl-ra {
  border: 1px solid #eef2f7;
  border-radius: 14px;
  margin: 10px 22px 0;
  overflow: hidden;
}

.appdl-ra-row {
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  display: flex;
}

.appdl-ra-row2 {
  border-top: 1px solid #eef2f7;
}

.appdl-rt {
  color: #030b2c;
  font-size: 13px;
  font-weight: 700;
}

.appdl-rd {
  color: #6b7280;
  margin-top: 3px;
  font-size: 11px;
}

.appdl-amt {
  color: #059644;
  font-size: 13px;
  font-weight: 700;
}

.appdl-chev {
  color: #a0a7b4;
  width: 16px;
  height: 16px;
}

.appdl-nav {
  border-top: 1px solid #eef2f7;
  justify-content: space-around;
  align-items: center;
  height: 76px;
  margin-top: auto;
  padding: 0 46px;
  display: flex;
}

.appdl-ni {
  color: #a8afbc;
  width: 24px;
  height: 24px;
}

.appdl-home {
  color: #fff;
  background-color: #2f5bff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-top: -14px;
  display: flex;
  box-shadow: 0 12px 22px -6px #2f5bff8c;
}

.appdl-home-svg {
  width: 24px;
  height: 24px;
}

.appdl-dl {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.appdl-dl-h {
  color: #030b2c;
  letter-spacing: -.5px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.appdl-dl-p {
  color: #6b7280;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 13px;
  display: flex;
}

.appdl-rating {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 16px;
  display: inline-flex;
}

.appdl-stars {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  color: #ffb300;
  display: inline-flex;
}

.appdl-stars-svg {
  width: 18px;
  height: 18px;
}

.appdl-rtext {
  color: #6b7280;
  font-size: 14px;
}

.appdl-rtextb {
  color: #030b2c;
  font-weight: 700;
}

.appdl-stores {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.appdl-qr {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  border-left: 1px solid #e5e7eb;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding-left: 36px;
  display: flex;
}

.appdl-qbox {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  width: 78px;
  height: 78px;
  padding: 7px;
  box-shadow: 0 8px 20px -8px #030b2c2e;
}

.appdl-qbox-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.appdl-qcap {
  color: #6b7280;
  text-align: left;
  max-width: 140px;
  font-size: 13px;
  line-height: 19px;
}

.appdl-qcapb {
  color: #030b2c;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.appdl-or {
  color: #6b7280;
  padding: 0 4px;
  font-size: 16px;
}

.appdl-store-btn {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  color: #fff;
  background-color: #0c0e14;
  border-radius: 14px;
  align-items: center;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-flex;
}

.appdl-apple {
  width: 32px;
  height: 32px;
}

.appdl-gp {
  width: 30px;
  height: 30px;
}

.appdl-s1 {
  letter-spacing: .2px;
  font-size: 12px;
  font-weight: 500;
}

.appdl-s2 {
  margin-top: 1px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.appdl-trust {
  background-color: #f3f7fd;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding: 12px 0;
  display: grid;
}

.appdl-ti {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  padding: 2px 30px;
  display: flex;
}

.appdl-ti-div {
  border-left: 1px solid #e5e7eb;
}

.appdl-tic {
  color: #2f5bff;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.appdl-tt {
  color: #2f5bff;
  font-size: 15px;
  font-weight: 700;
}

.appdl-td {
  color: #6b7280;
  margin-top: 5px;
  font-size: 12px;
  line-height: 17px;
}

.appdl-store-txt {
  text-align: left;
}

.appdl-bottom {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .container.header__inner {
    grid-column-gap: 14px;
  }

  .container.hero__inner {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .container.showcase__inner {
    grid-column-gap: 0px;
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
  }

  .nav {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-bottom: 1px solid var(--_5hundred-tokens---border);
    background-color: var(--_5hundred-tokens---white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 16px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 14px 28px #030b2c1a;
  }

  .nav__links {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    border-bottom: 1px solid var(--_5hundred-tokens---border);
    padding-top: 13px;
    padding-bottom: 13px;
    display: block;
  }

  .nav__signin {
    margin-left: 0;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .hamburger {
    display: flex;
  }

  .hero__text {
    max-width: 640px;
  }

  .hero__illustration {
    justify-content: center;
  }

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

  .showcase__text {
    max-width: 640px;
  }

  .showcase__text.showcase__text--rev {
    order: -1;
  }

  .appdl-top {
    flex-direction: column;
    gap: 48px;
  }

  .appdl-copy {
    text-align: center;
    align-items: center;
  }

  .appdl-h {
    font-size: 34px;
    line-height: 40px;
  }

  .appdl-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .phones {
    grid-column-gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .footer__inner {
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / 3;
  }

  .footer__bottom {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .appdl-h {
    font-size: 30px;
    line-height: 36px;
  }

  .appdl-desc {
    max-width: 100%;
  }

  .appdl-dl {
    text-align: center;
  }

  .appdl-stores {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .appdl-qr {
    text-align: center;
    border-left: none;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
  }

  .appdl-qcap {
    text-align: center;
    max-width: none;
  }

  .appdl-trust {
    grid-template-columns: 1fr;
  }

  .appdl-ti {
    padding: 16px 28px;
  }

  .appdl-ti-div {
    border-top: 1px solid #e5e7eb;
    border-left: none;
  }

  .appdl-bottom {
    grid-row-gap: 20px;
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .btn.btn--white, .btn.btn--ghost, .btn.btn--block {
    width: 100%;
  }

  .phone {
    width: 80vw;
    max-width: 300px;
  }

  .play-badge {
    justify-content: center;
    width: 100%;
  }

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

  .footer__brand {
    grid-column-end: 2;
  }

  .appdl-phone {
    border-radius: 46px;
    width: 300px;
    height: 618px;
  }

  .appdl-screen {
    border-radius: 36px;
  }
}


