.playground-feature {
  --playground-purple: #8b4fff;
  --playground-purple-bright: #a877ff;
  --playground-ink: #080614;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
  min-height: 860px;
  background: var(--playground-ink);
  color: #fff;
  overflow: hidden;
}

.playground-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.playground-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(8, 6, 20, .28)), linear-gradient(0deg, rgba(8, 6, 20, .58), transparent 35%);
  pointer-events: none;
}

.playground-photo picture,
.playground-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.playground-photo img {
  object-fit: cover;
  object-position: 53% center;
  transition: transform .8s ease;
}

.playground-feature:hover .playground-photo img { transform: scale(1.015); }

.playground-photo-label {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 72px);
  bottom: clamp(28px, 4vw, 68px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Space Mono", monospace;
  letter-spacing: .12em;
  font-size: 11px;
}

.playground-photo-label strong {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--playground-ink);
  background: #fff;
}

.playground-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(34px, 4vw, 58px);
  padding: clamp(64px, 6vw, 108px) clamp(34px, 6vw, 112px);
  background:
    radial-gradient(circle at 88% 8%, rgba(139, 79, 255, .22), transparent 28%),
    var(--playground-ink);
}

.playground-intro .eyebrow { margin-bottom: 20px; }

.playground-intro h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 4.55vw, 88px);
  line-height: .88;
  letter-spacing: -.065em;
}

.playground-intro h2 em {
  color: var(--playground-purple-bright);
  font-style: normal;
}

.playground-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
}

.playground-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.playground-highlights li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 700;
}

.playground-highlights li:last-child {
  border-color: rgba(168, 119, 255, .55);
  color: #c9a8ff;
}

.playground-pricing {
  max-width: 760px;
  padding: clamp(24px, 2.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .25);
}

.playground-pricing-image {
  width: min(100%, 760px);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .3);
  overflow: hidden;
}

.playground-pricing-image picture,
.playground-pricing-image img {
  display: block;
  width: 100%;
}

.playground-pricing-image img {
  height: auto;
  border-radius: 15px;
}

.playground-pricing-image figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.price-heading span,
.price-card > p,
.adult-price span {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.price-heading > div > span { color: var(--playground-purple-bright); }

.price-heading h3 {
  margin: 3px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(25px, 2vw, 36px);
  letter-spacing: -.04em;
}

.price-badge {
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--playground-purple);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  position: relative;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 17px;
  color: var(--playground-ink);
  background: #fff;
  overflow: hidden;
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #9d69ff, #7140e8);
}

.price-card > p {
  margin: 0 0 14px;
  color: #7340dc;
}

.price-card.featured > p { color: #fff; }

.price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.price sup {
  margin: 7px 3px 0 0;
  font: 700 18px/1 "DM Sans", sans-serif;
}

.price > strong {
  font: 400 clamp(52px, 4.5vw, 76px)/.78 "Archivo Black", sans-serif;
  letter-spacing: -.08em;
}

.price > span {
  margin: 2px 0 0 5px;
  font: 700 22px/1 "DM Sans", sans-serif;
}

.price small {
  font: 700 9px/1 "Space Mono", monospace;
  letter-spacing: .08em;
}

.sibling-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 13px;
  border-top: 1px solid rgba(8, 6, 20, .13);
  font-size: 13px;
}

.price-card.featured .sibling-price { border-color: rgba(255, 255, 255, .25); }

.adult-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(168, 119, 255, .44);
  border-radius: 14px;
  background: rgba(139, 79, 255, .12);
}

.adult-price span { color: #c9a8ff; }
.adult-price strong { font-size: 24px; }

.price-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
}

.price-actions p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .57);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .playground-feature { grid-template-columns: 44% 56%; min-height: 780px; }
  .playground-content { padding: 64px 38px; gap: 34px; }
  .playground-intro h2 { font-size: clamp(46px, 5.2vw, 64px); }
}

@media (max-width: 900px) {
  .playground-feature { display: block; min-height: 0; }
  .playground-photo { height: min(68vw, 560px); }
  .playground-photo::after { background: linear-gradient(0deg, rgba(8, 6, 20, .45), transparent 50%); }
  .playground-content { padding: 58px clamp(22px, 6vw, 56px) 70px; }
  .playground-pricing { max-width: none; }
  .playground-pricing-image { width: 100%; }
}

@media (max-width: 560px) {
  .playground-photo { height: 74vw; min-height: 300px; }
  .playground-photo img { object-position: 45% center; }
  .playground-photo-label { left: 20px; bottom: 20px; font-size: 9px; }
  .playground-photo-label span { display: none; }
  .playground-content { padding: 46px 20px 58px; gap: 30px; }
  .playground-intro h2 { font-size: clamp(38px, 12vw, 54px); }
  .playground-intro h2 em { display: block; }
  .playground-lede { margin-top: 20px; }
  .playground-pricing { padding: 18px; border-radius: 19px; }
  .playground-pricing-image { padding: 5px; border-radius: 14px; }
  .playground-pricing-image img { border-radius: 10px; }
  .price-heading { align-items: flex-end; }
  .price-badge { font-size: 8px; }
  .price-grid { grid-template-columns: 1fr; }
  .price > strong { font-size: 64px; }
  .price-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .playground-photo img { transition: none; }
  .playground-feature:hover .playground-photo img { transform: none; }
}
