/* Visa Promo Cashback — v2 lifestyle redesign */
.vp-landing {
  --vp-cyan: #1fd4c6;
  --vp-cyan-bright: #2ef0e0;
  --vp-teal: #0d8f8a;
  --vp-teal-deep: #084d4f;
  --vp-ink: #071e22;
  --vp-muted: #4a6368;
  --vp-magenta: #c44b8a;
  --vp-magenta-hot: #e85aa8;
  --vp-white: #ffffff;
  --vp-soft: #f2fbfa;
  --vp-radius: 22px;
  --vp-radius-sm: 14px;
  --vp-shadow: 0 22px 50px rgba(8, 55, 60, 0.16);
  --vp-max: 1140px;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--vp-ink);
  line-height: 1.6;
  overflow-x: clip;
  background: var(--vp-white);
}

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

.vp-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

html:has(.vp-landing) {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:has(.vp-landing) {
    scroll-behavior: auto;
  }
}

.vp-container {
  width: min(100% - 32px, var(--vp-max));
  margin-inline: auto;
}

.vp-landing section[id] {
  scroll-margin-top: 100px;
}

[data-vp-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--vp-i, 0) * 80ms);
}

[data-vp-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-vp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Banner */
.vp-banner {
  display: block;
  line-height: 0;
  text-decoration: none !important;
  background: #041a1e;
}

.vp-banner .header-banner-desktop {
  width: 100%;
  height: auto;
}

.vp-banner .header-banner-mobile {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: none;
}

@media only screen and (max-width: 576px) {
  .vp-banner .header-banner-desktop {
    display: none;
  }

  .vp-banner .header-banner-mobile {
    display: block;
  }
}

/* Type */
.vp-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--vp-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vp-eyebrow--light {
  color: var(--vp-cyan-bright);
}

.vp-section__title {
  margin: 0 0 0.85rem;
  color: var(--vp-ink);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.vp-section__lead,
.vp-section__text {
  margin: 0;
  color: var(--vp-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 40rem;
}

.vp-section__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 42rem;
}

.vp-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.vp-section__head--center .vp-section__lead {
  margin-inline: auto;
}

.vp-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

/* Buttons */
.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  overflow: visible;
  white-space: normal;
  background-clip: padding-box;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.vp-btn:hover {
  transform: translateY(-3px);
}

.vp-btn--primary {
  background: linear-gradient(135deg, #0d8f8a 0%, #0a6f75 55%, #085a5e 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 12px 30px rgba(13, 143, 138, 0.35);
}

.vp-btn--primary:hover,
.vp-btn--primary:focus,
.vp-btn--primary:active,
.vp-btn--primary:visited {
  color: #fff !important;
  border: none;
  box-shadow: 0 16px 36px rgba(13, 143, 138, 0.45);
}

.vp-btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--vp-teal-deep) !important;
  box-shadow: inset 0 0 0 2px rgba(13, 143, 138, 0.35);
  backdrop-filter: blur(8px);
}

.vp-btn--ghost:hover {
  background: rgba(31, 212, 198, 0.12);
  box-shadow: inset 0 0 0 2px var(--vp-teal);
}

.vp-btn--light {
  background: var(--vp-white);
  color: var(--vp-teal-deep) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.vp-btn--outline-light {
  background: transparent;
  color: var(--vp-white) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.vp-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 2px var(--vp-white);
}

/* Hero */
.vp-hero {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 0% 0%, rgba(31, 212, 198, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 50% at 100% 10%, rgba(196, 75, 138, 0.14), transparent 50%),
    linear-gradient(180deg, #edf9f8 0%, #fff 70%);
}

.vp-hero__glow {
  position: absolute;
  inset: auto 10% -20% auto;
  width: min(480px, 55vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 168, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
  animation: vp-pulse 7s ease-in-out infinite;
}

@keyframes vp-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-hero__glow {
    animation: none;
  }
}

.vp-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.vp-hero__title {
  margin: 0 0 0.9rem;
  color: var(--vp-ink);
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.vp-hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--vp-teal) 0%, var(--vp-cyan) 45%, var(--vp-magenta-hot) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vp-hero__tagline {
  margin: 0 0 1rem;
  color: var(--vp-teal-deep);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.vp-hero__lead {
  margin: 0 0 1.6rem;
  color: var(--vp-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 36rem;
}

.vp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vp-hero__card {
  position: relative;
  padding: 1.55rem 1.45rem 1.4rem;
  border-radius: calc(var(--vp-radius) + 6px);
  background: linear-gradient(155deg, #06333a 0%, #0a4c52 42%, #1a3d5c 78%, #5a2a5e 130%);
  color: var(--vp-white);
  box-shadow: var(--vp-shadow);
  overflow: hidden;
  transform: rotate(-0.6deg);
}

.vp-hero__card:hover {
  transform: rotate(0deg) translateY(-4px);
  transition: transform 0.35s ease;
}

.vp-hero__card-shine {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 60%);
  transform: rotate(18deg);
  pointer-events: none;
}

.vp-hero__card-kicker {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.vp-hero__dates {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--vp-cyan-bright);
  font-size: 1.15rem;
}

.vp-hero__dates svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.vp-hero__highlights {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.vp-hero__highlights li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--vp-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.vp-hero__highlights li:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.vp-hero__hl-value {
  color: var(--vp-cyan-bright);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.vp-hero__hl-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

/* Full-bleed lifestyle shot */
.vp-shot {
  position: relative;
  min-height: clamp(420px, 68vw, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #06161a;
}

.vp-shot__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vp-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  will-change: transform;
}

.vp-shot__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 26, 30, 0.85) 0%, rgba(4, 26, 30, 0.45) 48%, rgba(4, 26, 30, 0.15) 100%),
    linear-gradient(0deg, rgba(4, 26, 30, 0.7) 0%, transparent 45%);
}

.vp-shot__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.vp-shot__panel {
  max-width: 34rem;
  color: var(--vp-white);
}

.vp-shot__title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.vp-shot__text {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Steps */
.vp-how {
  background:
    radial-gradient(circle at 8% 20%, rgba(31, 212, 198, 0.1), transparent 35%),
    var(--vp-soft);
}

.vp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: none;
}

.vp-step {
  position: relative;
  padding: 1.7rem 1.4rem 1.55rem;
  border-radius: var(--vp-radius);
  background: var(--vp-white);
  border: 1px solid rgba(13, 143, 138, 0.14);
  box-shadow: 0 10px 28px rgba(8, 55, 60, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vp-step:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 212, 198, 0.5);
  box-shadow: var(--vp-shadow);
}

.vp-step__num {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  z-index: 0;
  margin: 0;
  color: rgba(13, 143, 138, 0.18);
  font-size: clamp(3.4rem, 6.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vp-step:hover .vp-step__num {
  color: rgba(13, 143, 138, 0.28);
}

.vp-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--vp-teal-deep);
  background: linear-gradient(145deg, #dff8f5, #f3e8f4);
}

.vp-step__icon svg {
  width: 22px;
  height: 22px;
}

.vp-step__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  padding-right: 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--vp-ink);
}

.vp-step__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tiers */
.vp-tiers {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(196, 75, 138, 0.08), transparent 50%),
    #fff;
}

.vp-tiers__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.4rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.vp-tiers__media {
  border-radius: var(--vp-radius);
  overflow: hidden;
  aspect-ratio: 1200 / 628;
  background: #041a1e;
  box-shadow: var(--vp-shadow);
}

.vp-tiers__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.vp-tiers__media:hover img {
  transform: scale(1.04);
}

.vp-tiers__intro-copy .vp-section__lead {
  max-width: none;
}

.vp-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.vp-tier {
  position: relative;
  padding: 1.7rem 1.4rem 1.5rem;
  border-radius: var(--vp-radius);
  background: var(--vp-white);
  border: 1px solid rgba(13, 143, 138, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vp-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--vp-shadow);
}

.vp-tier--best {
  background: linear-gradient(160deg, #06333a 0%, #0c555c 40%, #4a2860 120%);
  border-color: transparent;
  color: var(--vp-white);
  box-shadow: var(--vp-shadow);
  overflow: hidden;
}

.vp-tier--best::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -25%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 168, 0.32), transparent 68%);
  pointer-events: none;
}

.vp-tier__badge {
  position: relative;
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 212, 198, 0.22);
  color: var(--vp-cyan-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-tier__amount {
  position: relative;
  margin: 0;
  color: var(--vp-teal);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.vp-tier--best .vp-tier__amount {
  color: var(--vp-cyan-bright);
}

.vp-tier__amount small {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
}

.vp-tier__period {
  position: relative;
  margin: 0.4rem 0 1.05rem;
  color: var(--vp-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.vp-tier--best .vp-tier__period {
  color: rgba(255, 255, 255, 0.75);
}

.vp-tier__title {
  position: relative;
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vp-ink);
}

.vp-tier--best .vp-tier__title {
  color: var(--vp-white);
}

.vp-tier__rule {
  position: relative;
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.vp-tier--best .vp-tier__rule {
  color: rgba(255, 255, 255, 0.82);
}

.vp-tier__rule strong {
  color: inherit;
  font-weight: 800;
}

/* Split phone lifestyle */
.vp-split {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, #fff 0%, var(--vp-soft) 100%);
}

.vp-split__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.vp-split__media {
  position: relative;
  border-radius: calc(var(--vp-radius) + 8px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--vp-shadow);
  background: #123;
}

.vp-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.vp-split__media:hover img {
  transform: scale(1.05);
}

.vp-split__float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(7, 30, 34, 0.82);
  color: var(--vp-white);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: vp-float 4.5s ease-in-out infinite;
}

.vp-split__float strong {
  color: var(--vp-cyan-bright);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.vp-split__float span {
  font-size: 0.8rem;
  opacity: 0.85;
}

@keyframes vp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-split__float {
    animation: none;
  }
}

.vp-split__content .vp-section__title {
  margin-bottom: 1rem;
}

.vp-split__content .vp-section__text {
  margin-bottom: 1.2rem;
}

.vp-checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.vp-checklist li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--vp-ink);
  font-weight: 600;
  font-size: 0.98rem;
}

.vp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 28%, transparent 30%),
    linear-gradient(135deg, var(--vp-cyan), var(--vp-magenta));
}

/* Join */
.vp-join {
  background:
    radial-gradient(circle at 90% 10%, rgba(196, 75, 138, 0.08), transparent 35%),
    var(--vp-soft);
}

.vp-join__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.vp-join__card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--vp-radius);
  background: var(--vp-white);
  border: 1px solid rgba(13, 143, 138, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vp-join__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vp-shadow);
}

.vp-join__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.95rem;
  border-radius: 14px;
  color: var(--vp-teal-deep);
  background: linear-gradient(145deg, #dff8f5, #e9f3f8);
}

.vp-join__icon svg {
  width: 22px;
  height: 22px;
}

.vp-join__title {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vp-join__text {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Close */
.vp-close {
  position: relative;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
  background: linear-gradient(135deg, #041a1e 0%, #0a3d44 40%, #3a1f4a 100%);
  color: var(--vp-white);
  text-align: center;
  overflow: hidden;
}

.vp-close__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.vp-close__orb--1 {
  width: 280px;
  height: 280px;
  left: -60px;
  top: -40px;
  background: rgba(31, 212, 198, 0.28);
}

.vp-close__orb--2 {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -80px;
  background: rgba(232, 90, 168, 0.28);
}

.vp-close__inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}

.vp-close__brand {
  margin: 0 0 0.65rem;
  color: var(--vp-cyan);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vp-close__title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.vp-close__text {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 32rem;
}

.vp-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.vp-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.5;
}

.vp-legal a {
  color: var(--vp-cyan-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 980px) {
  .vp-hero__grid,
  .vp-split__grid,
  .vp-tiers__intro {
    grid-template-columns: 1fr;
  }

  .vp-hero__card {
    transform: none;
    max-width: 420px;
  }

  .vp-steps,
  .vp-tiers__grid,
  .vp-join__grid {
    grid-template-columns: 1fr;
  }

  .vp-tiers__grid {
    max-width: 420px;
    margin-inline: auto;
  }

  .vp-shot {
    min-height: 460px;
  }

  .vp-shot__veil {
    background:
      linear-gradient(180deg, rgba(4, 26, 30, 0.25) 0%, rgba(4, 26, 30, 0.82) 70%),
      linear-gradient(90deg, rgba(4, 26, 30, 0.55), transparent 70%);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .vp-steps,
  .vp-join__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vp-steps .vp-step:last-child,
  .vp-join__grid .vp-join__card:last-child {
    grid-column: 1 / -1;
  }

  .vp-tiers__grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .vp-tiers__grid .vp-tier:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .vp-hero__actions,
  .vp-close__actions {
    width: 100%;
  }

  .vp-hero__actions .vp-btn,
  .vp-close__actions .vp-btn {
    flex: 1 1 auto;
  }
}
