/* ===================================================================
   PriceLantern "Early access / not charging yet" — page-specific styles
   Extends tokens.css, components.css, layouts.css
   Same dark teal/navy gradient surface as pricing + home; a single
   centered message with a slow-breathing lantern glow and a staggered
   page-load reveal. One calm, confident moment.
   =================================================================== */

.subscribe {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--pl-main-offset) + 3rem) 0 5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(26, 65, 88, 0.95) 0%, transparent 68%),
    radial-gradient(ellipse 45% 38% at 82% 8%, rgba(236, 100, 29, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 36% at 14% 22%, rgba(111, 173, 219, 0.10) 0%, transparent 66%),
    linear-gradient(180deg, #0e2636 0%, #15323f 48%, #0a1e2c 100%);
  overflow: hidden;
}

/* The lantern glow — a warm orange light that slowly breathes behind the
   headline. The one thing you remember: the lantern is still lit. */
.subscribe::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 50%;
  width: min(640px, 86vw);
  height: min(640px, 86vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(236, 100, 29, 0.18) 0%,
    rgba(236, 100, 29, 0.06) 42%,
    transparent 70%);
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
  animation: subscribe-breathe 7s ease-in-out infinite;
}
@keyframes subscribe-breathe {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.07); }
}

/* Film grain — identical recipe to the home hero / pricing for cohesion. */
.subscribe__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.subscribe__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* ── Staggered page-load reveal ── */
@keyframes subscribe-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.subscribe__inner > * {
  animation: subscribe-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.subscribe__eyebrow  { animation-delay: 0.05s; }
.subscribe__title    { animation-delay: 0.16s; }
.subscribe__lead     { animation-delay: 0.30s; }
.subscribe__cta      { animation-delay: 0.44s; }
.subscribe__points   { animation-delay: 0.58s; }
.subscribe__feedback { animation-delay: 0.70s; }

/* ── Eyebrow pill ── */
.subscribe__eyebrow {
  display: inline-block;
  font-size: var(--pl-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--pl-font-weight-semi);
  color: var(--pl-orange);
  background: var(--pl-orange-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}

/* ── Headline ── */
.subscribe__title {
  font-family: var(--pl-font);
  font-weight: var(--pl-font-weight-bold);
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--pl-white);
  margin: 0;
  text-wrap: balance;
}
.subscribe__accent { color: var(--pl-orange); }

/* ── Lead paragraph ── */
.subscribe__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.62;
  color: var(--pl-text-muted-dark);
  margin: 1.3rem auto 0;
  max-width: 560px;
}

/* ── CTAs ── */
.subscribe__cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.subscribe__cta .pl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.subscribe__cta .pl-btn--primary svg {
  transition: transform var(--duration-normal);
}
.subscribe__cta .pl-btn--primary:hover svg {
  transform: translateX(3px);
}

/* ── Reassurance points ── */
.subscribe__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin: 2.4rem 0 0;
  padding: 0;
}
.subscribe__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--pl-text-sm);
  font-weight: var(--pl-font-weight-medium);
  color: rgba(255, 255, 255, 0.78);
}
.subscribe__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pl-orange);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(236, 100, 29, 0.12);
}

/* ── Feedback note ── */
.subscribe__feedback {
  margin: 2.7rem auto 0;
  max-width: 470px;
  font-size: var(--pl-text-sm);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .subscribe::before { animation: none; }
  .subscribe__inner > * { animation: none; opacity: 1; transform: none; }
}
