.showcase-stack,
.content-stack {
  width: min(var(--max), calc(100% - var(--edge)));
  margin: 0 auto;
}

.showcase-stack {
  display: grid;
  gap: 22px;
  margin-top: -18px;
}

.lux-card,
.content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(180deg, rgba(18,23,36,.70), rgba(8,12,22,.82)),
    radial-gradient(circle at 15% 14%, rgba(255,106,0,.06), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(51,108,255,.10), transparent 22%);
  box-shadow: 0 30px 88px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
}

.lux-card {
  padding: 22px 18px 20px;
  border-radius: 42px 54px 42px 58px / 38px 44px 52px 48px;
}

.content-card {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 40px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.panel-title h2 {
  margin: 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.tiny-play,
.tiny-square,
.google-g {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.tiny-play::before {
  content: "";
  margin-left: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255,255,255,.9);
}

.tiny-square::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
}

.google-title {
  margin-bottom: 18px;
}

.google-g {
  color: white;
  font-weight: 900;
  background: conic-gradient(from -40deg, #4285f4 0 25%, #34a853 0 48%, #fbbc05 0 72%, #ea4335 0 100%);
}

.panel-lead {
  margin: -4px 0 14px;
  color: rgba(255,255,255,.62);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.5;
}

.media-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 2px 10px;
}

.media-rail::-webkit-scrollbar { display: none; }

.rail-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.rail-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
}

.rail-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.rail-dots .is-active {
  background: rgba(255,255,255,.94);
}

.panel-cta {
  margin-top: 16px;
}

.google-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.google-actions .btn:first-child {
  min-width: min(100%, 360px);
}

.google-actions .btn:last-child {
  min-width: min(100%, 250px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.content-card h2 {
  margin: 0 0 16px;
  color: white;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}

.content-card p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.7;
}

.products-section,
.pricing-section,
.contact-card {
  margin-top: 26px;
}

.problem-card p + p {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .showcase-stack,
  .content-stack {
    width: calc(100% - 24px);
  }

  .showcase-stack {
    gap: 18px;
    margin-top: -8px;
  }

  .lux-card {
    padding: 20px 14px 18px;
    border-radius: 34px 46px 36px 52px / 30px 40px 44px 46px;
  }

  .content-card {
    padding: 24px 18px;
    border-radius: 28px;
    margin-top: 18px;
  }

  .panel-title {
    margin-bottom: 14px;
  }

  .panel-title h2 {
    font-size: 13px;
    letter-spacing: .28em;
  }

  .tiny-play,
  .tiny-square,
  .google-g {
    width: 24px;
    height: 24px;
  }

  .tiny-play::before {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }

  .panel-lead {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .media-rail {
    padding-top: 2px;
    padding-bottom: 4px;
  }

  .rail-track {
    gap: 12px;
  }

  .rail-dots {
    margin-top: 8px;
  }

  .google-actions,
  .contact-actions {
    gap: 12px;
    margin-top: 16px;
  }

  .google-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .content-card h2 {
    font-size: clamp(28px, 9vw, 42px);
    margin-bottom: 12px;
  }

  .content-card p {
    font-size: 16px;
    line-height: 1.65;
  }
}
