:root {
  --ascend-muted: 154 168 188;
  --ascend-border: 255 255 255 / 0.1;
}

[x-cloak] {
  display: none !important;
}

html.ascend-dark {
  color-scheme: dark;
  --cl-background: 15 22 34;
  --cl-card: 26 35 50;
  --cl-t-primary: 255 255 255;
  --cl-t-accent: 255 255 255;
  --ascend-muted: 154 168 188;
  --ascend-border: 255 255 255 / 0.1;
}

html.ascend-light {
  color-scheme: light;
  --cl-background: 252 253 255;
  --cl-card: 255 255 255;
  --cl-t-primary: 43 52 64;
  --cl-t-accent: 43 52 64;
  --ascend-muted: 100 116 139;
  --ascend-border: 15 23 42 / 0.12;
}

html.ascend-light .ascend-btn--outline:hover,
html.ascend-light .ascend-mobile-nav__link:hover {
  background: rgb(0 0 0 / 0.05);
}

html.ascend-light .ascend-connect-card__code,
html.ascend-light .ascend-offer-card__icon {
  background: rgb(0 0 0 / 0.05);
}

html.ascend-light .ascend-offer-card {
  background: rgb(var(--cl-card));
}

html.ascend-light .ascend-btn--glass {
  background: rgb(var(--cl-card) / 0.72);
}

.ascend-body,
body {
  background-color: rgb(var(--cl-background)) !important;
  color: rgb(var(--cl-t-primary));
}

.ascend-app {
  background-color: rgb(var(--cl-background));
}

.ascend-main {
  padding-top: 4rem;
}

.ascend-main--home {
  padding-top: 0;
}

.components {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ascend-container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .ascend-container { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  .ascend-container { padding-inline: 2rem; }
}

.ascend-container--narrow {
  max-width: 56rem;
}

.ascend-kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--cl-accent));
}

.ascend-heading {
  margin-top: 0.75rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--cl-t-primary));
}

.ascend-copy {
  margin-top: 1rem;
  line-height: 1.7;
  color: rgb(var(--ascend-muted));
}

.ascend-section {
  padding-block: 5rem;
  border-top: 1px solid rgb(var(--ascend-border));
}

@media (min-width: 640px) {
  .ascend-section { padding-block: 7rem; }
}

.ascend-section--card {
  background-color: rgb(var(--cl-card));
}

.ascend-page {
  padding-block: 5rem;
}

.ascend-section-intro {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.ascend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.ascend-btn--sm { padding: 0.5rem 1rem; }
.ascend-btn--lg { padding: 0.75rem 1.25rem; font-size: 1rem; }
.ascend-btn--primary { background: rgb(var(--cl-accent)); color: white; }
.ascend-btn--primary:hover { background: rgb(var(--cl-accent) / 0.9); }
.ascend-btn--outline {
  border-color: rgb(var(--ascend-border));
  background: transparent;
  color: rgb(var(--cl-t-primary));
}
.ascend-btn--outline:hover { background: rgb(255 255 255 / 0.05); }
.ascend-btn--ghost { background: transparent; color: rgb(var(--cl-t-primary)); }
.ascend-btn--icon-only {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  flex-shrink: 0;
}
.ascend-btn--glass {
  background: rgb(var(--cl-card) / 0.4);
  backdrop-filter: blur(8px);
}

.ascend-actions,
.ascend-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ascend-theme-toggle {
  color: rgb(var(--ascend-muted));
}

.ascend-theme-toggle:hover {
  color: rgb(var(--cl-t-primary));
}

.ascend-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.ascend-header--solid {
  border-bottom-color: rgb(var(--ascend-border));
  background: rgb(var(--cl-background) / 0.8);
  backdrop-filter: blur(12px);
}

.ascend-header__inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ascend-logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgb(var(--cl-t-primary));
  text-decoration: none;
}

.ascend-logo:hover { opacity: 0.85; }

.ascend-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .ascend-nav { display: flex; }
}

.ascend-nav__link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--ascend-muted));
  text-decoration: none;
}

.ascend-nav__link:hover,
.ascend-nav__link--active {
  color: rgb(var(--cl-t-primary));
}

.ascend-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ascend-header__discord { display: none; }

@media (min-width: 640px) {
  .ascend-header__discord { display: inline-flex; }
}

.ascend-header__cart {
  position: relative;
  color: rgb(var(--ascend-muted));
}

.ascend-header__cart:hover,
.ascend-header__cart--active {
  color: rgb(var(--cl-t-primary));
}

.ascend-header__cart-badge {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  display: inline-flex;
  min-width: 1.125rem;
  height: 1.125rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: rgb(var(--cl-accent));
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.ascend-mobile-nav__cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ascend-mobile-nav__cart-badge {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  border-radius: 9999px;
  background: rgb(var(--cl-accent));
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
}

.ascend-header__menu { display: inline-flex; }

@media (min-width: 768px) {
  .ascend-header__menu { display: none; }
}

.ascend-mobile-nav {
  border-top: 1px solid rgb(var(--ascend-border));
  background: rgb(var(--cl-background));
  padding-block: 1rem;
}

@media (min-width: 768px) {
  .ascend-mobile-nav { display: none !important; }
}

.ascend-mobile-nav__link {
  display: block;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(var(--cl-t-primary));
  text-decoration: none;
}

.ascend-mobile-nav__link:hover {
  background: rgb(255 255 255 / 0.05);
}

.ascend-mobile-nav__discord {
  width: 100%;
  margin-top: 0.5rem;
}

.ascend-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: max(100dvh, 640px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
}

.ascend-hero.component {
  padding: 0 !important;
}

.ascend-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ascend-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(var(--cl-background) / 0.72) 0%,
    rgb(var(--cl-background) / 0.42) 45%,
    rgb(var(--cl-background) / 0.92) 85%,
    rgb(var(--cl-background)) 100%
  );
}

.ascend-hero__overlay--soft {
  z-index: 2;
  background: rgb(var(--cl-background) / 0.32);
}

.ascend-hero__overlay--shade {
  z-index: 3;
  background: transparent;
  box-shadow:
    inset 0 0 160px 48px rgb(var(--cl-background) / 0.45),
    inset 0 -96px 96px -24px rgb(var(--cl-background) / 0.9);
}

.ascend-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  height: 14rem;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgb(var(--cl-background)) 0%,
    rgb(var(--cl-background) / 0.88) 40%,
    transparent 100%
  );
}

.ascend-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .ascend-hero__content {
    padding-inline: 1.5rem;
  }
}

.ascend-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgb(var(--ascend-muted));
}

.ascend-badge__dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
}

.ascend-badge__dot::before,
.ascend-badge__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgb(var(--cl-accent));
}

.ascend-badge__dot::before {
  animation: ascend-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.5;
}

.ascend-hero__title {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.ascend-hero__text {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgb(var(--ascend-muted));
  text-wrap: pretty;
}

.ascend-hero__actions {
  margin-top: 2.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .ascend-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.ascend-play-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ascend-play-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.ascend-connect-card {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 0.75rem;
  background: rgb(var(--cl-card));
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.2);
}

.ascend-connect-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--ascend-muted));
}

.ascend-connect-card__label svg {
  color: rgb(var(--cl-accent));
}

.ascend-connect-card__row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ascend-connect-card__code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.05);
  padding: 0.625rem 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  color: rgb(var(--cl-t-primary));
}

.ascend-play-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 640px) {
  .ascend-play-actions {
    flex-direction: row;
    align-items: center;
  }
}

.ascend-play-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 1rem;
  background: rgb(var(--cl-card));
}

.ascend-play-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ascend-offers-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ascend-offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .ascend-offers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.ascend-offer-card {
  padding: 1.5rem;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 1rem;
  background: rgb(var(--cl-background));
  transition: border-color 0.2s;
}

.ascend-offer-card:hover {
  border-color: rgb(var(--cl-accent) / 0.4);
}

.ascend-offer-card__icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.05);
  color: rgb(var(--cl-accent));
  transition: background-color 0.2s, color 0.2s;
}

.ascend-offer-card:hover .ascend-offer-card__icon {
  background: rgb(var(--cl-accent));
  color: white;
}

.ascend-offer-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.ascend-offer-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgb(var(--ascend-muted));
}

.ascend-store {
  padding-block: 5rem;
}

.ascend-store-nav {
  margin-top: 2rem;
}

.ascend-store-nav__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.ascend-store-nav__scroll::-webkit-scrollbar {
  display: none;
}

.ascend-store-nav__link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 9999px;
  background: rgb(var(--cl-card));
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--ascend-muted));
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
}

.ascend-store-nav__link svg {
  width: 1rem;
  height: 1rem;
  color: rgb(var(--cl-accent));
}

.ascend-store-nav__link:hover {
  border-color: rgb(var(--cl-accent) / 0.35);
  color: rgb(var(--cl-t-primary));
}

.ascend-store-nav__link--active {
  border-color: rgb(var(--cl-accent) / 0.45);
  background: rgb(var(--cl-accent) / 0.12);
  color: rgb(var(--cl-t-primary));
  box-shadow: 0 0 0 1px rgb(var(--cl-accent) / 0.15);
}

.ascend-store__intro {
  max-width: 42rem;
}

.ascend-store__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

@media (min-width: 1280px) {
  .ascend-store__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.ascend-store__item { height: 100%; }

.ascend-store__empty {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgb(var(--ascend-muted));
}

.ascend-store__help {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgb(var(--ascend-muted));
}

.ascend-store__help a {
  font-weight: 500;
  color: rgb(var(--cl-accent));
  text-decoration: none;
}

.ascend-store__help a:hover { text-decoration: underline; }

.ascend-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ascend-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.75);
}

.ascend-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 76rem;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 0.75rem;
  background: rgb(var(--cl-background));
  padding: 1.5rem;
}

.ascend-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ascend-modal__header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.ascend-rules-list {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  list-style: decimal;
}

.ascend-rules-list li {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgb(var(--ascend-muted));
}

.ascend-footer {
  border-top: 1px solid rgb(var(--ascend-border));
  background: rgb(var(--cl-card));
  padding-block: 3.5rem;
}

.ascend-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ascend-footer__grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ascend-footer__brand { max-width: 24rem; }
.ascend-footer__brand .ascend-copy { margin-top: 1rem; font-size: 0.875rem; }
.ascend-footer__brand .ascend-btn { margin-top: 1.25rem; }

.ascend-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.ascend-footer__links h3 { font-size: 0.875rem; font-weight: 600; }
.ascend-footer__links ul { margin-top: 1rem; display: grid; gap: 0.75rem; }
.ascend-footer__links a {
  font-size: 0.875rem;
  color: rgb(var(--ascend-muted));
  text-decoration: none;
}
.ascend-footer__links a:hover { color: rgb(var(--cl-t-primary)); }

.ascend-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(var(--ascend-border));
  font-size: 0.875rem;
  color: rgb(var(--ascend-muted));
}

@media (min-width: 640px) {
  .ascend-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ascend-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(var(--ascend-border));
  border-radius: 0.875rem;
  background: rgb(var(--cl-card));
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.12), 0 8px 24px rgb(0 0 0 / 0.08);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ascend-product-card:hover {
  border-color: rgb(var(--cl-accent) / 0.35);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.18), 0 0 0 1px rgb(var(--cl-accent) / 0.1);
  transform: translateY(-2px);
}

.ascend-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, rgb(var(--cl-accent) / 0.08), rgb(255 255 255 / 0.03));
}

.ascend-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ascend-product-card:hover .ascend-product-card__image img {
  transform: scale(1.03);
}

.ascend-product-card__placeholder {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--cl-background));
  background-size: cover;
  background-position: center;
}

.ascend-product-card__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(var(--cl-background) / 0.15) 0%,
    rgb(var(--cl-card) / 0.75) 100%
  );
}

.ascend-product-card__placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.ascend-product-card__placeholder-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(var(--ascend-border));
  background: rgb(var(--cl-card) / 0.85);
  color: rgb(var(--cl-accent));
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.2);
}

.ascend-product-card__placeholder-icon svg {
  width: 2rem;
  height: 2rem;
}

.ascend-product-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgb(var(--ascend-border));
  background: rgb(var(--cl-card) / 0.88);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgb(var(--cl-t-primary));
}

.ascend-product-card__category svg {
  width: 0.875rem;
  height: 0.875rem;
  color: rgb(var(--cl-accent));
}

.ascend-product-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  border-radius: 0.375rem;
  background: rgb(var(--cl-accent));
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
}

.ascend-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.125rem 1.25rem 1.25rem;
}

.ascend-product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.ascend-product-card__price-current {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ascend-product-card__price-old {
  font-size: 0.875rem;
  color: rgb(var(--ascend-muted));
  text-decoration: line-through;
}

.ascend-product-card__title {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.ascend-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.ascend-product-card__title a:hover {
  color: rgb(var(--cl-accent));
}

.ascend-product-card__description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(var(--ascend-muted));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ascend-product-card__buy {
  width: 100%;
  margin-top: auto;
  padding-top: 1.125rem;
}

.ascend-product-card__buy svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 639px) {
  .ascend-hero__actions,
  .ascend-actions {
    flex-direction: column;
    width: 100%;
  }

  .ascend-hero__actions .ascend-btn,
  .ascend-actions .ascend-btn {
    width: 100%;
  }
}

@keyframes ascend-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}