
.lw-pp {
  --pp-bg: rgba(12, 12, 14, 0.72);
  --pp-surface: rgba(18, 18, 22, 0.9);
  --pp-elevated: rgba(28, 28, 34, 0.92);
  --pp-border: rgba(255, 255, 255, 0.08);
  --pp-border-strong: rgba(255, 255, 255, 0.16);
  --pp-text: #fafafa;
  --pp-muted: #a1a1aa;
  --pp-subtle: #71717a;
  --pp-accent: #4a9eff;
  --pp-accent-rgb: 74, 158, 255;
  --pp-radius: 16px;
  --pp-radius-sm: 12px;
  --card-glow-rgb: 74, 158, 255;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 24px 0 80px;
  color: var(--pp-text);
  box-sizing: border-box;
}

.lw-page--product .landing-wrap {
  width: min(1400px, calc(100% - 80px));
}

.lw-pp__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pp-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lw-pp__back:hover {
  color: var(--pp-text);
}

.lw-pp .lw-product-stats {
  margin: 0 0 8px;
  color: var(--pp-muted);
}

.lw-pp .lw-product-stats__star,
.lw-pp .lw-product-stats__score {
  color: var(--pp-text);
}

.lw-pp__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 0 80px;
}

.lw-pp__intro {
  min-width: 0;
}

.lw-pp__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em 0.42em;
  margin: 0 0 12px;
  font-family: var(--lw-font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--pp-text);
}

.lw-pp__title-brand {
  color: #fff;
}

.lw-pp__title-accent {
  color: rgb(var(--pp-accent-rgb, 74, 158, 255));
}

.lw-pp__lead {
  margin: 12px 0 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--pp-muted);
}

.lw-pp__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.lw-pp__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pp-text);
}

.lw-pp__highlight-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--pp-accent-rgb, 74, 158, 255), 0.2);
  color: rgb(var(--pp-accent-rgb, 74, 158, 255));
}

.lw-pp__highlight-icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

.lw-pp__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: radial-gradient(ellipse 150% 135% at 50% 0%,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 55%,
    rgba(255, 255, 255, 0.015) 100%);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1.2;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.lw-pp__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: radial-gradient(circle at 50% 50%,
    transparent 0%,
    transparent 32%,
    rgba(255, 255, 255, 0.35) 46%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.35) 54%,
    transparent 68%,
    transparent 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  animation: lw-pp-border-shine 9s linear infinite;
}

.lw-pp__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes lw-pp-border-shine {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.lw-pp__visual {
  position: relative;
  min-width: 0;
}

.lw-pp__visual .lw-video-slider {
  gap: 0;
  margin: 0;
  width: 100%;
  height: auto;
}

.lw-pp .lw-product-media-card {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius-sm);
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(var(--card-glow-rgb), 0.22) 0%, transparent 70%),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.lw-pp .lw-product-media-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-pp .lw-video-slider-viewport {
  position: absolute;
  inset: 0;
  border-radius: 0;
  height: auto;
}

.lw-pp .lw-video-slider-track,
.lw-pp .lw-video-slide {
  height: 100%;
}

.lw-pp .lw-video-frame,
.lw-pp .lw-yt-facade {
  position: relative;
  border: none;
  border-radius: 0;
  background: transparent;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}

.lw-pp .lw-yt-facade-thumb {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.lw-pp .lw-yt-facade-thumb--blur {
  inset: -18%;
  width: 136%;
  height: 136%;
  object-fit: cover;
  opacity: 0.55;
}

.lw-pp .lw-yt-facade-shade,
.lw-pp .lw-product-media-card::after {
  display: none;
}

.lw-pp .lw-video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.lw-pp .lw-video-frame--image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, 0.35);
}

.lw-pp .lw-video-frame--zoom {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.lw-pp .lw-video-frame--zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.lw-pp-lightbox {
  width: auto;
  max-width: min(96vw, 1400px);
  height: auto;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
  box-shadow: none;
}

.lw-pp-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lw-pp-lightbox__stage {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  margin: 0 auto;
}

.lw-pp-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: none;
  border-radius: 0;
  vertical-align: middle;
}

.lw-pp-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lw-pp-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.78);
}

.lw-pp-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
}

.lw-pp-lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.78);
}

.lw-pp-lightbox__nav--prev {
  left: 10px;
}

.lw-pp-lightbox__nav--next {
  right: 10px;
}

.lw-pp-lightbox__nav[hidden] {
  display: none !important;
}

.lw-pp .lw-yt-facade-play {
  z-index: 6;
}

.lw-pp__slide-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lw-pp__slide-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(74, 158, 255, 0.55);
}

.lw-pp__slide-btn--prev {
  left: 16px;
}

.lw-pp__slide-btn--next {
  right: 16px;
}

.lw-pp__slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 8;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.lw-pp__slide-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.lw-pp__slide-dot.is-active {
  width: 24px;
  border-radius: 5px;
  background: var(--pp-accent);
}

.lw-pp__slide-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.lw-pp__section-head {
  text-align: center;
  margin: 0 0 80px;
}

.lw-pp__section-title {
  margin: 0;
  font-family: var(--lw-font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pp-text);
}

.lw-pp__section-sub {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pp-muted);
}

.lw-pp__features,
.lw-pp__pricing {
  margin: 0;
  padding: 100px 0;
  scroll-margin-top: 96px;
}

.lw-pp-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

.lw-pp-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius-sm);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.lw-pp-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.lw-pp-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.1);
  color: var(--pp-accent);
}

.lw-pp-feature-card__icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.lw-pp-feature-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-text);
}

.lw-pp-feature-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.lw-pp-feature-card__list li {
  position: relative;
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pp-muted);
}

.lw-pp-feature-card__list li:last-child {
  margin-bottom: 0;
}

.lw-pp__pricing .lw-product-buy-panel {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lw-pp__pricing .lw-product-purchase,
.lw-pp__pricing .lw-product-purchase--guest {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.lw-pp__pricing .lw-product-promo-discount-badge,
.lw-pp__pricing .lw-product-purchase-hint {
  text-align: center;
  margin: 0 auto 22px;
}

.lw-product-sale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto 22px;
  width: fit-content;
  max-width: 100%;
}

.lw-pp__pricing .lw-product-sale .lw-product-promo-discount-badge {
  margin: 0;
}

.lw-product-sale-timer {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 8px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--lw-muted, rgba(255, 255, 255, 0.55));
}

.lw-product-sale-timer__label {
  font-weight: 600;
}

.lw-product-sale-timer__value,
.lw-product-sale-timer .lw-tier-restock-timer__value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lw-brand, #f472b6);
}

.lw-pp-plan-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.lw-pp-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 8px;
}

.lw-pp-plan {
  --pa: rgb(var(--pp-accent-rgb, 74, 158, 255));
  --pa-rgb: var(--pp-accent-rgb, 74, 158, 255);
  --pa-deep: color-mix(in srgb, rgb(var(--pp-accent-rgb, 74, 158, 255)) 72%, #000);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(var(--pp-accent-rgb, 74, 158, 255), 0.18);
  background:
    linear-gradient(160deg, rgba(var(--pp-accent-rgb, 74, 158, 255), 0.07), transparent 60%),
    rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lw-pp-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--pp-accent-rgb, 74, 158, 255), 0.4);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.85), 0 0 30px rgba(var(--pp-accent-rgb, 74, 158, 255), 0.12);
}

.lw-pp-plan.is-featured {
  border-color: rgba(var(--pp-accent-rgb, 74, 158, 255), 0.5);
  box-shadow: 0 22px 46px -20px rgba(0, 0, 0, 0.85), 0 0 26px rgba(var(--pp-accent-rgb, 74, 158, 255), 0.18);
}

.lw-pp-plan.is-sold-out {
  opacity: 0.72;
}

.lw-pp-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: radial-gradient(circle at 50% 50%,
    transparent 0%, transparent 30%,
    rgba(var(--pp-accent-rgb, 74, 158, 255), 0.45) 46%,
    rgba(var(--pp-accent-rgb, 74, 158, 255), 0.95) 50%,
    rgba(var(--pp-accent-rgb, 74, 158, 255), 0.45) 54%,
    transparent 70%, transparent 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: lw-pp-border-shine 9s linear infinite;
}

.lw-pp-plan__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lw-pp-plan__badge {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(var(--pp-accent-rgb, 74, 158, 255), 0.8);
}

.lw-pp-plan__badge-center {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(var(--pp-accent-rgb, 74, 158, 255)), color-mix(in srgb, rgb(var(--pp-accent-rgb, 74, 158, 255)) 72%, #000));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(var(--pp-accent-rgb, 74, 158, 255), 0.45);
}

.lw-pp-plan__head {
  margin-bottom: 24px;
}

.lw-pp-plan.is-featured .lw-pp-plan__head {
  margin-top: 8px;
}

.lw-pp-plan__name {
  margin: 0 0 6px;
  padding-right: 4.5rem;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}

.lw-pp-plan.is-featured .lw-pp-plan__name {
  padding-right: 0;
}

.lw-pp-plan__sub {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.lw-pp-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.lw-pp-plan__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.lw-pp-plan__unit {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.lw-pp-plan__price-old {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.lw-pp-plan__per {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.lw-pp-plan__features {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.lw-pp-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lw-pp-plan__check {
  flex-shrink: 0;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: rgb(var(--pp-accent-rgb, 74, 158, 255));
}

.lw-pp-plan__check svg {
  display: block;
  width: 16px;
  height: 16px;
}

.lw-pp-plan__sold-out {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 18px;
}

.lw-pp-plan__sold-out .lw-tier-restock-timer {
  align-items: flex-start;
}

.lw-pp-plan__btn {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(90deg, rgb(var(--pp-accent-rgb, 74, 158, 255)) 0%, color-mix(in srgb, rgb(var(--pp-accent-rgb, 74, 158, 255)) 72%, #000) 50%, rgb(var(--pp-accent-rgb, 74, 158, 255)) 100%);
  background-size: 200% 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.lw-pp-plan__btn:not(:disabled):hover {
  background-position: 100% 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 28px rgba(var(--pp-accent-rgb, 74, 158, 255), 0.4);
  transform: translateY(-1px);
}

.lw-pp-plan__btn:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: none;
}

.lw-pp__pricing .lw-form--product-buy .lw-pp-plan__btn.lw-product-purchase-open {
  margin-top: auto;
  min-height: 0;
  height: auto;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
}

.lw-pp__media-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.lw-pp__status {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 0 4px 4px 0;
  background: rgba(0, 212, 170, 0.08);
  border-left: 3px solid #00d4aa;
}

.lw-pp__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #00d4aa;
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

.lw-pp__status-text {
  color: #00d4aa;
  font-size: 13px;
  font-weight: 600;
}

.lw-pp__reqs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lw-pp__reqs li {
  padding: 6px 12px;
  border: 1px solid var(--pp-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pp-muted);
  font-size: 12px;
  line-height: 1.3;
}

@media (min-width: 720px) {
  .lw-pp-feature-grid {
    gap: 28px;
  }

  .lw-pp-feature-card {
    flex: 0 1 calc((100% - 28px) / 2);
  }

  .lw-pp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .lw-pp__hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 80px;
    align-items: start;
  }

  .lw-pp-feature-grid {
    gap: 36px;
  }

  .lw-pp-feature-card {
    flex: 0 1 calc((100% - 72px) / 3);
  }

  .lw-pp-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lw-pp-plan-grid:has(> :first-child:last-child) {
    grid-template-columns: minmax(0, 360px);
  }

  .lw-pp-plan-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .lw-pp-plan-grid {
    max-width: 380px;
  }

  .lw-pp-plan__price {
    font-size: clamp(32px, 12vw, 46px);
  }
}

@media (max-width: 959px) {
  .lw-pp {
    padding-top: 4px;
  }

  .lw-pp__hero {
    margin-bottom: 48px;
  }

  .lw-pp__features,
  .lw-pp__pricing {
    margin-bottom: 0;
    padding: 60px 0;
  }
}

.lw-product-purchase-dialog{
  width: min(420px, calc(100vw - 28px));
  max-width: calc(100vw - 20px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0b0b0c;
  color: #fafafa;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.lw-product-purchase-dialog::backdrop{
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lw-product-purchase-dialog__panel{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 18px 16px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lw-product-purchase-dialog__head{
  margin: 0 40px 14px 0;
}
.lw-product-purchase-dialog__eyebrow{
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
}
.lw-product-purchase-dialog .lw-email-dialog__title{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fafafa;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}
.lw-product-purchase-dialog .lw-email-dialog__close{
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d4d4d8;
  font-size: 20px;
  line-height: 1;
}
.lw-product-purchase-dialog .lw-email-dialog__close:hover{
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lw-product-purchase-confirm{
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.lw-product-purchase-confirm__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 8px 14px;
  align-items: baseline;
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-product-purchase-confirm__row:last-child{border-bottom: none;}
.lw-product-purchase-confirm__row dt{
  margin: 0;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
  color: #a1a1aa;
}
.lw-product-purchase-confirm__row dd{
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color: #f4f4f5;
  line-height: 1.35;
  text-align: right;
  word-break: break-word;
}
.lw-product-purchase-confirm__row--price{
  background: rgba(255, 255, 255, 0.025);
}
.lw-product-purchase-confirm__row--price dt{color: #a1a1aa;}
.lw-product-purchase-confirm__row--price dd{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px 8px;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.lw-product-purchase-confirm__row--balance dd{
  font-variant-numeric: tabular-nums;
  color: #d4d4d8;
  font-weight: 600;
}
.lw-product-purchase-confirm__price-was{
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
}
.lw-product-purchase-confirm__price-sale{
  font-size: 14px;
  font-weight: 700;
  color: #fafafa;
}

.lw-purchase-consents{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.lw-purchase-consents--dialog{margin: 14px 0 0;}
.lw-purchase-consent{
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-purchase-consent:hover{
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked){
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}
.lw-purchase-consent__input{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-purchase-consent__box{
  position: relative;
  box-sizing: border-box;
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-purchase-consent:hover .lw-purchase-consent__box{border-color: rgba(255, 255, 255, 0.42);}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked) .lw-purchase-consent__box{
  border-color: #a3a3a3;
  background: #e5e5e5;
  box-shadow: none;
}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked) .lw-purchase-consent__box::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 5px;
  height: 9px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:focus-visible) .lw-purchase-consent__box{
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-purchase-consent__text{
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #a1a1aa;
}
.lw-purchase-consent__link{
  color: #fafafa;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  border-bottom: none;
}
.lw-purchase-consent__link:hover{
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  border-bottom: none;
}

.lw-product-purchase-dialog__actions{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}
.lw-product-purchase-dialog__cancel,
.lw-product-purchase-dialog__submit{
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 0 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.lw-product-purchase-dialog__cancel{
  flex: 0.9 1 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #d4d4d8;
}
.lw-product-purchase-dialog__cancel:hover{
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.lw-product-purchase-dialog__submit{
  flex: 1.2 1 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #e8e8ea;
  color: #0a0a0b;
}
.lw-product-purchase-dialog__submit:hover{
  background: #fff;
}
.lw-product-purchase-dialog__submit:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-product-purchase-dialog__cancel:focus-visible,
.lw-product-purchase-dialog__submit:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .lw-product-purchase-dialog__actions{
    flex-direction: column-reverse;
  }
  .lw-product-purchase-dialog__cancel,
  .lw-product-purchase-dialog__submit{
    flex: 1 1 auto;
    width: 100%;
  }
}
