/* Keep the decision path clear: choose a plan, then see the product in action. */
.home-hero .plans-v2 {
  width: min(1080px, 100%);
  padding: 86px 0 0;
  text-align: left;
}

.home-hero .plans-heading {
  align-items: center;
  margin-bottom: 28px;
}

.home-hero .plans-heading h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.2vw, 54px);
}

.home-hero .plan-table-wrap {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.landing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.landing-plan-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(167, 193, 222, .18);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(21, 32, 45, .94), rgba(10, 18, 27, .96));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 24px 64px rgba(0, 0, 0, .22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.landing-plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(158, 199, 249, .4);
}

.landing-plan-pro {
  overflow: hidden;
  border-color: rgba(129, 166, 255, .82);
  background: linear-gradient(142deg, rgba(47, 66, 133, .58), rgba(16, 29, 50, .96) 55%, rgba(11, 25, 36, .98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32), 0 0 42px rgba(88, 132, 255, .18), inset 0 1px rgba(203, 222, 255, .15);
}

.landing-plan-pro::after {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #a7c5ff, transparent);
  box-shadow: 0 0 22px #729eff;
}

.recommended-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  color: #d9e7ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(164, 197, 255, .38);
  border-radius: 999px;
  background: rgba(100, 143, 255, .17);
}

.landing-plan-topline {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 0;
  color: #b9cef1;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.landing-plan-pro .landing-plan-topline { padding-right: 155px; }
.landing-plan-topline em { color: #73839b; font-style: normal; white-space: nowrap; }
.landing-plan-pro .landing-plan-topline em { display: none; }

.landing-price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 24px 0 14px;
}

.landing-price strong {
  color: #eef5ff;
  font-size: clamp(47px, 5vw, 66px);
  letter-spacing: -.075em;
  line-height: .9;
}

.landing-plan-pro .landing-price strong { color: #c7d9ff; text-shadow: 0 0 30px rgba(105, 158, 255, .2); }
.landing-price span { color: #8f9db1; font-size: 11px; font-weight: 700; line-height: 1.35; }
.landing-plan-card > p { min-height: 48px; margin: 0; color: #9eabba; font-size: 14px; line-height: 1.55; }

.landing-plan-card ul {
  display: grid;
  gap: 16px;
  margin: 25px 0 28px;
  padding: 23px 0 0;
  border-top: 1px solid rgba(167, 193, 222, .16);
  list-style: none;
}

.landing-plan-card li { display: grid; grid-template-columns: 21px 1fr; gap: 10px; }
.landing-plan-card li > i { display: grid; width: 19px; height: 19px; place-items: center; color: #bff9ea; font-size: 11px; font-style: normal; font-weight: 900; border: 1px solid rgba(81, 232, 195, .34); border-radius: 50%; background: rgba(30, 110, 91, .2); }
.landing-plan-pro li > i { color: #dce8ff; border-color: rgba(132, 168, 255, .45); background: rgba(93, 129, 235, .22); }
.landing-plan-card li span { display: grid; gap: 3px; }
.landing-plan-card li b { color: #e3ebf7; font-size: 13px; }
.landing-plan-card li small { color: #8290a4; font-size: 11px; line-height: 1.45; }

.landing-plan-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 18px;
  color: #071325;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid rgba(197, 220, 255, .48);
  border-radius: 12px;
  background: linear-gradient(135deg, #b7d0ff, #75a9ff);
  box-shadow: 0 10px 27px rgba(67, 128, 255, .3), inset 0 1px rgba(255, 255, 255, .55);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.landing-plan-button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(67, 128, 255, .42); }
.landing-plan-button.secondary { color: #dce7f7; border-color: rgba(166, 193, 226, .27); background: rgba(26, 42, 57, .58); box-shadow: none; }
.landing-plan-button.secondary:hover { border-color: rgba(178, 209, 245, .52); background: rgba(40, 59, 78, .78); }

.landing-plan-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  color: #a8b8ca;
  font-size: 12px;
  border: 1px solid rgba(81, 232, 195, .2);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(23, 89, 76, .2), rgba(16, 38, 47, .22));
}

.landing-plan-note i { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; color: #dbfff6; font-size: 11px; font-style: normal; font-weight: 900; border-radius: 50%; background: #1d8871; }
.landing-plan-note strong { color: #e5faf5; }

.product-preview-heading {
  max-width: 680px;
  margin: 96px auto -22px;
  text-align: center;
}

.product-preview-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.1vw, 52px);
  letter-spacing: -.06em;
}

@media (max-width: 700px) {
  .home-hero .plans-v2 { padding-top: 58px; }
  .home-hero .plans-heading { align-items: flex-start; }
  .product-preview-heading { margin-top: 72px; }
  .landing-plan-grid { grid-template-columns: 1fr; }
  .landing-plan-card { min-height: 0; padding: 24px 20px; }
  .landing-plan-pro { order: -1; }
  .recommended-pill { position: static; width: max-content; margin: -5px 0 18px; }
  .landing-plan-pro .landing-plan-topline { padding-right: 0; }
  .landing-plan-note { align-items: flex-start; }
}
