/* ── PREMIUM (cinematic) ── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --accent: #7c3aed;
}

html {
  background: var(--bg);
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pm-logo {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.pm-logo img {
  height: 2.5rem;
  display: block;
}

.pm-section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  scroll-snap-align: start;
  position: relative;
}

.pm-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pm-h1 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

/* ── Section 1: input ── */

.pm-slider-block {
  width: 100%;
  max-width: 26rem;
}

.pm-slider-value {
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.pm-slider-value span {
  color: var(--accent);
}

.pm-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.pm-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.pm-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.pm-hobby-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.pm-hobby-chip {
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pm-hobby-chip.pm-active {
  border-color: var(--accent);
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}

.pm-hobby-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  outline: none;
}

.pm-hobby-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pm-hobby-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.pm-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.6rem;
}

.pm-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  animation: pm-bounce 2s ease-in-out infinite;
}

@keyframes pm-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ── Section 2: reveal ── */

.pm-reveal-number {
  font-size: clamp(3.5rem, 16vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pm-reveal-number.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-reveal-sub {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.pm-reveal-sub.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-equivalents {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 26rem;
  width: 100%;
}

.pm-equivalent {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pm-equivalent.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-equivalent b {
  color: var(--accent);
}

/* ── Section 3: offer ── */

.pm-offer-title {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.pm-offer-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 28rem;
  margin-bottom: 2.5rem;
}

.pm-reveal-el {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pm-reveal-el.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-feature-icon-lg {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pm-feature-icon-lg.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── recap cards (mirrors live-feed .lf-card) ── */

.lf-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.lf-card-bar {
  height: 3px;
  width: 100%;
  flex-shrink: 0;
}

.lf-card-body {
  padding: 1rem 1.25rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.lf-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.lf-card-app {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.38);
}

.lf-card-message {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.pm-carousel {
  width: 100%;
  max-width: 22rem;
  margin-bottom: 2.5rem;
}

.pm-carousel-track {
  position: relative;
  height: 12.5rem;
}

.pm-carousel-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.pm-carousel-card.pm-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pm-carousel-card .lf-card-message {
  text-align: left;
}

.pm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pm-persona-picker {
  width: 100%;
  max-width: 26rem;
  margin-bottom: 1.5rem;
}

.pm-persona-picker-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.pm-persona-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pm-persona-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pm-persona-btn.pm-active {
  border-color: var(--accent);
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}

.pm-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.pm-carousel-dot.pm-active {
  background: var(--accent);
}

.pm-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pm-price-amount {
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pm-price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.pm-price-context {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.pm-packages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 22rem;
  margin-bottom: 1rem;
}

.pm-package {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pm-package:has(input:checked) {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.15);
}

.pm-package input[type="radio"] {
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.pm-package-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pm-package-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.pm-package-content {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.pm-package-price {
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}

.pm-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.pm-form input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.95rem;
}

.pm-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pm-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  text-align: center;
}

.pm-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.pm-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2.5rem;
}

.pm-bmc-link img {
  height: 48px;
  display: block;
}

.pm-back {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.pm-back:hover {
  color: rgba(255, 255, 255, 0.7);
}
