/* =====================================================
   PODGORILLA SALES PAGE — PREMIUM DARK THEME
   Colors: Black + Purple from logo
===================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --bg: #06060a;
  --bg-2: #0c0c14;
  --bg-card: rgba(17,17,28,0.6);
  --bg-card-solid: #111118;
  --border: rgba(124,58,237,0.12);
  --border-bright: rgba(167,139,250,0.22);
  --border-subtle: rgba(255,255,255,0.05);

  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-bright: #c084fc;
  --purple-glow: rgba(124,58,237,0.35);
  --purple-faint: rgba(124,58,237,0.06);

  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-muted: #71717a;
  --text-faint: #3f3f46;

  --green: #22c55e;
  --red: #ef4444;
  --yellow: #eab308;

  --grad-purple: linear-gradient(135deg, #5b21b6, #7c3aed 40%, #a855f7);
  --grad-text: linear-gradient(135deg, #e9d5ff 0%, #c084fc 25%, #a855f7 50%, #818cf8 100%);
  --grad-text-warm: linear-gradient(135deg, #fbbf24 0%, #f472b6 42%, #c084fc 72%, #818cf8 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1440px;
  --px: clamp(1.5rem, 4vw, 4rem);
  --r: 0.75rem;
  --r-lg: 1rem;
  --r-pill: 9999px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 60px; /* room for sticky bar */
  -webkit-tap-highlight-color: transparent; /* remove tap flash on mobile */
}
/* Faster tap response on all interactive elements */
a, button, [role="button"] { touch-action: manipulation; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}


/* ---- REUSABLE COMPONENTS ---- */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: var(--grad-text-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-bright);
}

/* Staggered entrance animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-in {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.12s + 0.15s);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}


/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--grad-purple);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 0 32px var(--purple-glow), 0 4px 16px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 56px rgba(168,85,247,0.55), 0 8px 32px rgba(0,0,0,0.5);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--grad-purple);
  z-index: -1;
  opacity: 0.5;
  filter: blur(16px);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.06); }
}


/* CTA pulse animation */
.btn-pulse { animation: btnPulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5), 0 4px 24px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(124,58,237,0), 0 4px 24px rgba(0,0,0,0.4); }
}
.btn-pulse:hover { animation: none; }

/* Hero price anchoring */
.hero-price-anchor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.hero-price-was {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.hero-price-now {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad-text-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-price-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.hero-cta-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Mid-page CTA strip */
.midpage-cta {
  background: linear-gradient(135deg, rgba(91,33,182,0.15) 0%, rgba(124,58,237,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.midpage-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.midpage-cta-text {
  font-size: 1rem;
  color: var(--text-dim);
}
.midpage-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--purple-bright);
}
.midpage-was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.midpage-cta-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* Social proof notification popup */
.social-proof-notif {
  position: fixed;
  bottom: 80px;
  left: 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-proof-notif.sp-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sp-notif-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(17,17,28,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  max-width: 320px;
}
.sp-notif-icon {
  width: 28px;
  height: 28px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-notif-text {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.4;
}
.sp-notif-text strong { color: #fff; font-weight: 700; }
.sp-notif-time {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Pricing live viewer badge */
.pricing-live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.pricing-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* =====================================================
   SECTION COMMON — reused across all sections
===================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: var(--purple-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.section-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-bright);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}
.section-h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}


/* =====================================================
   SECTION 1 — HERO
===================================================== */
.s-hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  contain: paint layout; /* limit browser paint scope */
}

/* ---- Animated background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.7) 0%, transparent 70%);
  top: -15%; left: 50%;
  transform: translateX(-50%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(99,102,241,0.5) 0%, transparent 70%);
  top: 10%; right: -10%;
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(168,85,247,0.4) 0%, transparent 70%);
  bottom: 20%; left: -8%;
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-45%) translateY(-40px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  33%      { transform: translateY(-30px) translateX(-20px) scale(1.06); }
  66%      { transform: translateY(20px) translateX(10px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-25px) translateX(15px) scale(1.05); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2; /* always above float cards */
  width: 100%;
}

/* ---- Floating cards — decorative, absolute at viewport edges ---- */
.hero-floats {
  display: none; /* shown only on wide viewports via media query below */
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Positions — cards in outer gutter, high up in hero */
.hero-float--tl {
  position: absolute;
  top: 8%;
  left: 1.5%;
  animation: floatTL 7s ease-in-out infinite;
}
.hero-float--bl {
  position: absolute;
  top: 44%;
  left: 0.5%;
  animation: floatBL 9s ease-in-out infinite;
}
.hero-float--tr {
  position: absolute;
  top: 5%;
  right: 1.5%;
  animation: floatTR 8s ease-in-out infinite;
}
.hero-float--br {
  position: absolute;
  top: 48%;
  right: 0.5%;
  animation: floatBR 10s ease-in-out infinite;
}

/* Simple tilt float animations */
@keyframes floatTL {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-14px); }
}
@keyframes floatBL {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-10px); }
}
@keyframes floatTR {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-12px); }
}
@keyframes floatBR {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-9px); }
}

/* ---- Float card base style ---- */
.hfc {
  width: 175px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(17,17,28,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Color-matched glow per card — each radiates its own accent colour */
.hfc--rose   { box-shadow: 0 8px 24px rgba(233,30,99,0.5),  0 28px 64px rgba(233,30,99,0.22); }
.hfc--indigo { box-shadow: 0 8px 24px rgba(63,81,181,0.5),  0 28px 64px rgba(63,81,181,0.22); }
.hfc--teal   { box-shadow: 0 8px 24px rgba(0,150,136,0.5),  0 28px 64px rgba(0,150,136,0.22); }
.hfc--amber  { box-shadow: 0 8px 24px rgba(245,124,0,0.5),  0 28px 64px rgba(245,124,0,0.22); }

/* Card thumbnail areas */
.hfc-thumb {
  height: 95px;
  position: relative;
  overflow: hidden;
}
.hfc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gloss shimmer sweep across thumbnail */
.hfc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.28) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  animation: thumbShimmer 4s ease-in-out infinite;
}
.hfc--indigo .hfc-thumb::after { animation-delay: 1s; }
.hfc--teal   .hfc-thumb::after { animation-delay: 2s; }
.hfc--amber  .hfc-thumb::after { animation-delay: 3s; }
@keyframes thumbShimmer {
  0%, 30%      { background-position: -100% 0; }
  70%, 100%    { background-position: 250% 0; }
}

/* Color-matched waveform bars */
.hfc--rose   .hfc-wave i { background: #f06292; }
.hfc--indigo .hfc-wave i { background: #7986cb; }
.hfc--teal   .hfc-wave i { background: #4db6ac; }
.hfc--amber  .hfc-wave i { background: #ffb74d; }

/* Card info section */
.hfc-info {
  padding: 0.7rem 0.85rem 0.85rem;
  text-align: left;
}
.hfc-info strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hfc-info span {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Animated waveform bars */
.hfc-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.hfc-wave i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--purple-light);
  font-style: normal;
  animation: hfcWaveBar 1.4s ease-in-out infinite;
}
.hfc-wave i:nth-child(1) { height: 5px;  animation-delay: 0s; }
.hfc-wave i:nth-child(2) { height: 13px; animation-delay: 0.1s; }
.hfc-wave i:nth-child(3) { height: 8px;  animation-delay: 0.2s; }
.hfc-wave i:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.hfc-wave i:nth-child(5) { height: 6px;  animation-delay: 0.4s; }
.hfc-wave i:nth-child(6) { height: 12px; animation-delay: 0.15s; }
.hfc-wave i:nth-child(7) { height: 9px;  animation-delay: 0.35s; }
@keyframes hfcWaveBar {
  0%, 100% { transform: scaleY(1);    opacity: 0.75; }
  50%      { transform: scaleY(0.35); opacity: 1; }
}


/* ---- Pre-headline badge — white pill ---- */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #18181b;
  background: rgba(255,255,255,0.93);
  padding: 0.5rem 1.35rem;
  border-radius: var(--r-pill);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.15);
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}


/* ---- Headline ---- */
.hero-h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 auto 1.5rem;
  max-width: 1180px;
}


/* ---- Sub-headline ---- */
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-dim);
  max-width: 800px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text); }


/* ---- Hero 3-col feature badges ---- */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.hero-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.1rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.hero-badge-col svg { margin-bottom: 0.15rem; }
.hero-badge-col strong { font-size: 0.88rem; color: var(--text); font-weight: 700; line-height: 1.3; }
.hero-badge-col span { font-size: 0.73rem; color: var(--text-muted); line-height: 1.4; }

/* ---- Feature pills (3 horizontal) ---- */
.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 auto 2.75rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.hero-pill:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(168,85,247,0.38);
}


/* ---- Video frame ---- */
.hero-video-wrap {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.hero-video-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 80px rgba(124,58,237,0.14),
    0 24px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-video-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.vbar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.vbar-dot:nth-child(1) { background: rgba(239,68,68,0.55); }
.vbar-dot:nth-child(2) { background: rgba(234,179,8,0.45); }
.vbar-dot:nth-child(3) { background: rgba(34,197,94,0.45); }

.hero-video-box {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(124,58,237,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(251,191,36,0.08) 0%, transparent 45%),
    linear-gradient(160deg, #120b24 0%, #06060a 100%);
}
.hero-video-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-video-box iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Play button */
.play-btn {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  background: var(--grad-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  box-shadow: 0 0 40px rgba(124,58,237,0.55);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { margin-left: 3px; }
.play-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(168,85,247,0.38);
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ---- CTA ---- */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}


/* ---- Trust badges ---- */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 3.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-item svg { flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border-bright);
}


/* ---- Platform marquee ---- */
.platform-section { margin-bottom: 3.5rem; }
.platform-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(17,17,28,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; width: 120px; height: 100%;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.platform-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.platform-item span { font-size: 1rem; }
.platform-item img { height: 22px; width: auto; display: block; flex-shrink: 0; }
.platform-item img.logo-icon { height: 26px; width: 26px; object-fit: contain; }
.platform-sublabel {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.8rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---- As Seen On ---- */
.as-seen-on { margin-top: 1rem; }
.seen-on-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.seen-on-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.seen-on-card {
  border-radius: var(--r);
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  border-color: rgba(255,255,255,0.07);
}
.seen-on-card:hover {
  border-color: rgba(167,139,250,0.38);
  transform: translateY(-2px);
}
.seen-on-card img {
  display: block;
  width: 200px;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.red-txt { color: var(--red); }


/* =====================================================
   STICKY COUNTDOWN BAR
===================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,6,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(124,58,237,0.28);
  padding: 0.7rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.sticky-coupon {
  font-size: 0.83rem;
  color: var(--text-dim);
  flex-shrink: 0;
}
.sticky-coupon code {
  display: inline-block;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.42);
  color: var(--purple-bright);
  padding: 0.1rem 0.55rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 0.04em;
}
.sticky-countdown {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.sticky-countdown-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 1.35rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  letter-spacing: -0.02em;
}
.cd-sep {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 0.1rem;
  line-height: 1;
}
.sticky-cta {
  display: inline-block;
  background: var(--grad-purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.6rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px var(--purple-glow);
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(168,85,247,0.55);
}


/* =====================================================
   SECTION 2 — DEMO SAMPLES
===================================================== */
.s-demo {
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* ---- Card base ---- */
.demo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  text-align: left;
  cursor: pointer;
}
.demo-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
}

/* Color-matched glow per card */
.demo-card[data-color="blue"]:hover   { box-shadow: 0 24px 60px rgba(59,130,246,0.22),  0 4px 20px rgba(0,0,0,0.5); }
.demo-card[data-color="teal"]:hover   { box-shadow: 0 24px 60px rgba(16,185,129,0.22),  0 4px 20px rgba(0,0,0,0.5); }
.demo-card[data-color="red"]:hover    { box-shadow: 0 24px 60px rgba(239,68,68,0.22),   0 4px 20px rgba(0,0,0,0.5); }
.demo-card[data-color="purple"]:hover { box-shadow: 0 24px 60px rgba(139,92,246,0.22),  0 4px 20px rgba(0,0,0,0.5); }
.demo-card[data-color="amber"]:hover  { box-shadow: 0 24px 60px rgba(245,158,11,0.22),  0 4px 20px rgba(0,0,0,0.5); }
.demo-card[data-color="indigo"]:hover { box-shadow: 0 24px 60px rgba(99,102,241,0.22),  0 4px 20px rgba(0,0,0,0.5); }

/* ---- Thumbnail ---- */
.demo-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-thumb--blue   { background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 55%, #3b82f6 100%); }
.demo-thumb--teal   { background: linear-gradient(145deg, #022c22 0%, #065f46 55%, #10b981 100%); }
.demo-thumb--red    { background: linear-gradient(145deg, #1c0a0a 0%, #7f1d1d 55%, #ef4444 100%); }
.demo-thumb--purple { background: linear-gradient(145deg, #1e0a35 0%, #4c1d95 55%, #8b5cf6 100%); }
.demo-thumb--amber  { background: linear-gradient(145deg, #1a0f00 0%, #78350f 55%, #f59e0b 100%); }
.demo-thumb--indigo { background: linear-gradient(145deg, #0d0d1e 0%, #1e1b4b 55%, #6366f1 100%); }

/* Radial glow behind play button — intensifies on hover */
.demo-thumb::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.32;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.demo-thumb--blue::before   { background: #3b82f6; }
.demo-thumb--teal::before   { background: #10b981; }
.demo-thumb--red::before    { background: #ef4444; }
.demo-thumb--purple::before { background: #8b5cf6; }
.demo-thumb--amber::before  { background: #f59e0b; }
.demo-thumb--indigo::before { background: #6366f1; }
.demo-card:hover .demo-thumb::before { opacity: 0.65; }

/* Category badge */
.demo-cat {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Duration */
.demo-dur {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.04em;
}

/* Play button */
.demo-play-btn {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.demo-play-btn svg { margin-left: 4px; /* visual centre of triangle */ }
.demo-card:hover .demo-play-btn {
  transform: scale(1.12);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
}
.demo-play-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}
.demo-card:hover .demo-play-btn::after { border-color: rgba(255,255,255,0.14); }

/* ---- Waveform bars ---- */
.demo-waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  padding: 0 14px 10px;
}
.demo-waveform span {
  flex: 1;
  height: calc(var(--h, 0.5) * 28px);
  background: rgba(255,255,255,0.3);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: demoWaveBar 1.7s ease-in-out infinite alternate;
  animation-delay: calc((1 - var(--h, 0.5)) * 0.95s);
}
.demo-card:hover .demo-waveform span {
  background: rgba(255,255,255,0.58);
  animation-duration: 0.85s;
}
@keyframes demoWaveBar {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.2); }
}

/* ---- Card info area ---- */
.demo-info { padding: 1.1rem 1.25rem 1.3rem; }
.demo-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.demo-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.demo-style {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.demo-ai-pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.28);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-pill);
}

/* ---- Callout line below grid ---- */
.demo-callout {
  font-size: 0.88rem;
  color: var(--text-faint);
}
.demo-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-pill);
  margin-right: 0.4rem;
}


/* =====================================================
   SECTION 3 — AI CHALLENGE
===================================================== */
.s-challenge {
  padding: 5.5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(91,33,182,0.09) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.challenge-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 2rem;
}
/* Giant animated wave behind content */
.challenge-wave-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0;
  opacity: 0.18;
  pointer-events: none;
}
.challenge-wave-bg span {
  flex: 1;
  height: calc(var(--h, 0.5) * 72px);
  background: linear-gradient(to top, var(--purple), var(--purple-light));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: demoWaveBar 1.9s ease-in-out infinite alternate;
  animation-delay: calc((1 - var(--h, 0.5)) * 1.2s);
}
/* Massive 97% stat — the hero of this section */
.challenge-stat-hero {
  margin: 0 auto 3rem;
  max-width: 700px;
}
.challenge-stat-num {
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  background: var(--grad-text-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 80px rgba(168,85,247,0.4));
}
.challenge-stat-pct {
  font-size: 0.38em;
  vertical-align: super;
  padding-top: 0.25em;
  display: inline-block;
}
.challenge-stat-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  margin-top: 1.25rem;
  line-height: 1.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.challenge-stat-label strong { color: var(--text); }
/* Three listener reaction quotes */
.challenge-quotes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.challenge-quote {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r);
  padding: 0.875rem 1.25rem;
  flex: 1;
  min-width: 210px;
  max-width: 280px;
  line-height: 1.6;
  text-align: center;
}


/* =====================================================
   SECTION 4 — 3 STEPS
===================================================== */
.s-steps {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}
.step-card {
  flex: 1;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.step-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.12);
}
.step-num {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}
.step-img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem;
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.step-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.step-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-bright);
  letter-spacing: 0.03em;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  color: var(--purple-bright);
  opacity: 0.5;
  padding-top: 3rem;
  transition: opacity 0.3s;
}
.steps-close {
  font-size: 1rem;
  color: var(--text-dim);
}
.steps-close strong { color: var(--text); }


/* =====================================================
   SECTION 5 — PODCAST STYLES
===================================================== */
.s-styles {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}
.styles-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 2.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.styles-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.styles-track--fwd { animation: stylesFwd 32s linear infinite; }
.styles-track--rev { animation: stylesRev 28s linear infinite; }
@keyframes stylesFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes stylesRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.style-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.style-card:hover { border-color: var(--border-bright); }
.style-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.style-icon svg { width: 22px; height: 22px; }
/* Inline comparison/list icons */
.ci { display: inline-block; vertical-align: middle; flex-shrink: 0; position: relative; top: -1px; }
.ci-star { display: inline-block; vertical-align: middle; }
/* Testi stars row */
.testi-stars { display: flex; gap: 2px; align-items: center; margin-bottom: 0.5rem; }
/* Creator icon sizing */
.creator-icon svg { width: 28px; height: 28px; }
/* Included group title icon */
.included-group-title svg { width: 18px; height: 18px; vertical-align: middle; position: relative; top: -1px; margin-right: 4px; }
/* Compare win icon */
.compare-win-item > span svg { width: 20px; height: 20px; }
/* Guarantee trust icon */
.guarantee-trust-item > span:first-child svg { width: 16px; height: 16px; vertical-align: middle; }
/* Users chip icon */
.users-chip svg { width: 12px; height: 12px; vertical-align: middle; position: relative; top: -1px; margin-right: 2px; }
.style-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.style-card small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.1rem;
}
.styles-close {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}


/* =====================================================
   SECTION 6 — SUCCESS STORIES
===================================================== */
.s-success {
  padding: 6rem 0;
  text-align: center;
  background: #f5f3ff;
  border-top: none;
}
.s-success .section-tag {
  background: rgba(124,58,237,0.1);
  color: #7c3aed;
  border-color: rgba(124,58,237,0.2);
}
.s-success .section-tag-dot { background: #7c3aed; }
.s-success .section-h2 { color: #0f0a1e; }
.s-success .section-sub { color: #4b4466; }
.s-success .success-card {
  background: #fff;
  border: 1px solid rgba(124,58,237,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.s-success .success-card:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
  transform: scale(1.05);
}
.s-success .success-card-banner {
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.s-success .success-show-name { color: #0f0a1e; }
.s-success .success-show-tag { color: #6b5f8a; }
.s-success .success-insight { color: #4b4466; }
.s-success .success-pg-box {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.18);
}
.s-success .success-cta-banner {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  border-radius: var(--r-lg);
}
.s-success .success-cta-headline,
.s-success .success-cta-body { color: #fff; }
.s-success .success-cta-body strong { color: #fff; }
.success-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.success-card {
  grid-column: span 2;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 0;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.success-card:nth-child(4) { grid-column: 2 / 4; }
.success-card:nth-child(5) { grid-column: 4 / 6; }
.success-card:nth-child(6) { grid-column: 2 / 6; }
.success-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.success-card-banner {
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
}
.success-card-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.success-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.success-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}
.success-show-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c, var(--purple));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.success-show-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.success-show-tag {
  display: block;
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-top: 0.15rem;
}
.success-insight {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.success-pg-box {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.success-pg-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 0.35rem;
}
/* Key Takeaway */
.success-takeaway {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #4b4466;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background: rgba(124,58,237,0.05);
  border-left: 3px solid rgba(124,58,237,0.3);
  border-radius: 0 6px 6px 0;
}
.success-takeaway strong { color: #7c3aed; }

/* 6th "Thousands More" card */
.success-card--more {
  background: linear-gradient(135deg, #f0ebff, #f5f3ff);
  border-color: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
}
.success-card--more .success-card-body { padding: 2rem; }

/* Full-width CTA banner below the show grid */
.success-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(91,33,182,0.18) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(168,85,247,0.28);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.success-cta-text { text-align: left; }
.success-cta-headline {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.success-cta-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.success-cta-body strong { color: var(--text); }


/* =====================================================
   SECTION 7 — INDUSTRY STATS
===================================================== */
.s-stats {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--sc, var(--purple));
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  border-color: var(--sc, var(--border-bright));
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28), 0 0 0 1px var(--sc, var(--border-bright));
}
.stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--sc, var(--purple-bright));
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.stat-note {
  font-size: 0.72rem;
  color: var(--sc, var(--purple-bright));
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  opacity: 0.85;
}
.stat-meaning {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.stats-bridge {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.stats-bridge p { margin-bottom: 0.5rem; }
.stats-cta-line {
  font-size: 1.15rem;
  margin-top: 1rem !important;
  line-height: 1.6;
}
.stats-cta-line strong { color: var(--text); }


/* =====================================================
   SECTION 8 — BUILT FOR CREATORS
===================================================== */
.s-creators {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.creators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.creator-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.creator-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}
.creator-type {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.creator-challenge,
.creator-helps {
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0 6px 6px 0;
  background: rgba(255,255,255,0.03);
  color: var(--text-dim);
}
.creator-challenge {
  border-left: 2px solid rgba(148,163,184,0.35);
}
.creator-helps {
  border-left: 2px solid var(--purple);
}
.creator-label {
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.15rem;
}
.creator-challenge .creator-label { color: rgba(148,163,184,0.8); }
.creator-helps .creator-label { color: var(--purple-light); }
.creator-result {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
  margin-top: 0.4rem;
}
.creators-close {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}


/* =====================================================
   SECTION 9 — DEMO VIDEO
===================================================== */
.s-demo-video {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.demo-video-frame {
  position: relative;
  max-width: 860px;
  margin: 0 auto 2rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #0d0d1a 0%, #1a0a2e 50%, #0d1a2e 100%);
  border: 1px solid var(--border-bright);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 80px rgba(124,58,237,0.15);
}
.demo-video-frame:hover {
  border-color: var(--purple);
  box-shadow: 0 0 120px rgba(124,58,237,0.25);
}
.demo-video-inner { text-align: center; }
.demo-video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.demo-video-play svg { margin-left: 5px; }
.demo-video-frame:hover .demo-video-play {
  transform: scale(1.1);
  background: rgba(124,58,237,0.4);
  border-color: var(--purple-bright);
}
.demo-video-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.demo-video-sub {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.demo-video-close {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}
.demo-video-close strong { color: var(--text); }


/* =====================================================
   SECTION 10 — FEATURES DEEP DIVE
===================================================== */
.s-features {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.features-close {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--text);
}
.features-close-sub {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.feature-card--showcase {
  grid-column: 1 / -1;
}
.feature-card--highlight.feature-card--showcase {
  background: linear-gradient(135deg, rgba(91,33,182,0.15) 0%, rgba(124,58,237,0.08) 100%);
  border-color: rgba(168,85,247,0.3);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.feature-card--highlight {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(91,33,182,0.15) 0%, rgba(124,58,237,0.08) 100%);
  border-color: rgba(168,85,247,0.3);
}

/* Showcase card — full width, text + screenshot side by side */
.feature-card--showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(124,58,237,0.04) 100%);
  border-color: rgba(59,130,246,0.2);
}
.feature-card--showcase:hover {
  border-color: rgba(59,130,246,0.4);
  transform: none;
}
.fcs-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.fcs-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.fcs-bullets li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.fcs-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 0.75rem;
}

/* App window frame */
.fcs-screen { flex: 1; }
.fcs-app-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  background: #0d0d18;
}
.fcs-app-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1a2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fcs-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.fcs-app-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  font-family: inherit;
}
.fcs-app-body img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Recreated PodGorilla UI — Create Episode ---- */
.fcs-app-body { padding: 0; }
.fui-wrap {
  padding: 1.1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: #08080f;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.fui-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  cursor: default;
  width: fit-content;
}
.fui-page-header { text-align: center; padding: 0.3rem 0 0.1rem; }
.fui-page-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.fui-page-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}
.fui-section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
}
.fui-section-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); }
.fui-clear-link { font-size: 0.65rem; color: rgba(255,255,255,0.3); cursor: default; }

/* Tabs */
.fui-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 3px;
}
.fui-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: default;
  font-family: inherit;
}
.fui-tab--active {
  background: #7c3aed;
  color: #fff;
}

/* Inputs */
.fui-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}
.fui-field { display: flex; flex-direction: column; gap: 4px; }
.fui-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.fui-req { color: rgba(239,68,68,0.8); }

/* Toggle */
.fui-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}
.fui-toggle-label { font-size: 0.7rem; }
.fui-toggle-track {
  width: 32px;
  height: 17px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  position: relative;
  flex-shrink: 0;
}
.fui-toggle-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 13px;
  height: 13px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* 3-col row */
.fui-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.fui-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  cursor: default;
}

/* Textarea */
.fui-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.5;
  min-height: 56px;
}

/* Primary button */
.fui-btn-primary {
  width: 100%;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: default;
  margin-top: 0.2rem;
}
.fui-btn-ghost {
  width: 100%;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: inherit;
  cursor: default;
}
.fui-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: inherit;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}
.fui-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.63rem;
  font-family: inherit;
  cursor: default;
  white-space: nowrap;
}
.fui-action-btn--green { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); color: #10b981; }
.fui-icon-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  border-radius: 5px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  cursor: default;
}
.fui-test-btn {
  background: transparent;
  border: none;
  color: #7c3aed;
  font-size: 0.63rem;
  font-family: inherit;
  cursor: default;
  padding: 0;
  margin-top: 3px;
  text-decoration: underline;
}
.fui-preview-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.6rem;
  font-family: inherit;
  cursor: default;
}

/* Showcase card reverse layout */
.feature-card--showcase.fcs-reverse .fcs-text { order: 2; }
.feature-card--showcase.fcs-reverse .fcs-screen { order: 1; }
.feature-card--showcase.fcs-reverse { background: linear-gradient(135deg, rgba(var(--fcs-accent-rgb,124,58,237),0.06) 0%, rgba(0,0,0,0) 100%); border-color: color-mix(in srgb, var(--fcs-accent,#7c3aed) 30%, transparent); }

/* Bullets with custom accent */
.fcs-bullets li::before { color: var(--bul-c, #3b82f6); }

/* 2-col row */
.fui-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

/* ---- Card 2: Speakers ---- */
.fui-speakers-wrap { gap: 0.55rem; }
.fui-spk-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.fui-filter-tabs { display: flex; gap: 3px; flex-wrap: wrap; }
.fui-ftab {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 0.63rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  font-family: inherit;
  cursor: default;
}
.fui-ftab--active { background: rgba(168,85,247,0.2); border-color: rgba(168,85,247,0.4); color: #c084fc; }
.fui-ftab-count { background: rgba(255,255,255,0.1); border-radius: 3px; padding: 0 4px; font-size: 0.58rem; }
.fui-spk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.fui-spk-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
}
.fui-spk-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 0.3rem;
}
.fui-spk-name { font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.3; }
.fui-spk-niche { font-size: 0.55rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ---- Card 3 & 8: Episode Details ---- */
.fui-ep-wrap { gap: 0.45rem; }
.fui-ep-topbar { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.fui-ep-badge-wrap { display: flex; align-items: center; gap: 5px; }
.fui-ep-num {
  width: 26px;
  height: 26px;
  background: #7c3aed;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.fui-ep-tag-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
}
.fui-ep-action-btns { display: flex; gap: 4px; flex-wrap: wrap; }
.fui-ep-title-lg { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.35; }
.fui-ep-stats-row { display: flex; gap: 0.5rem; }
.fui-ep-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 6px 8px;
  text-align: center;
}
.fui-ep-stat-val { font-size: 0.75rem; font-weight: 700; color: #fff; }
.fui-ep-stat-lbl { font-size: 0.55rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.fui-speakers-list { display: flex; flex-direction: column; gap: 5px; }
.fui-speaker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 6px 8px;
}
.fui-spk-av2 { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.fui-spk-rname { font-size: 0.68rem; font-weight: 600; color: #fff; }
.fui-spk-rrole { font-size: 0.58rem; color: rgba(255,255,255,0.35); }
.fui-script-line { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 7px; padding: 7px 8px; }
.fui-script-host { font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(124,58,237,0.3); color: #c084fc; padding: 2px 5px; border-radius: 3px; margin-right: 4px; }
.fui-script-guest-tag { font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(16,185,129,0.2); color: #10b981; padding: 2px 5px; border-radius: 3px; margin-right: 4px; }
.fui-script-name { font-size: 0.63rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-right: 4px; }
.fui-script-text { font-size: 0.63rem; color: rgba(255,255,255,0.4); line-height: 1.45; margin-top: 4px; }

/* ---- Card 4: Format grid ---- */
.fui-formats-wrap { gap: 0.5rem; }
.fui-format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.fui-fmt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  cursor: default;
  text-align: center;
}
.fui-fmt-card--active { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.4); color: #f59e0b; }

/* ---- Card 5: Effects sliders ---- */
.fui-effects-section { display: flex; flex-direction: column; gap: 5px; }
.fui-effect-row { display: flex; align-items: center; gap: 8px; }
.fui-effect-label { font-size: 0.63rem; color: rgba(255,255,255,0.5); width: 60px; flex-shrink: 0; }
.fui-slider-track { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.fui-slider-fill { height: 100%; background: #7c3aed; border-radius: 2px; }
.fui-effect-val { font-size: 0.6rem; color: rgba(255,255,255,0.3); width: 28px; text-align: right; }

/* ---- Card 6: Video Editor ---- */
.fui-video-editor { background: #08080f; display: flex; flex-direction: column; }
.fui-ve-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #111128;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fui-ve-tools { display: flex; gap: 3px; }
.fui-ve-tool {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: inherit;
  cursor: default;
}
.fui-ve-tool--active { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.4); color: #818cf8; }
.fui-ve-export {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 0.62rem;
  font-family: inherit;
  cursor: default;
}
.fui-ve-preview {
  background: #0d0d1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 120px;
}
.fui-ve-screen { width: 160px; aspect-ratio: 16/9; background: #1a1a30; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.fui-ve-cover { flex: 1; background: linear-gradient(135deg, #2d1b69, #1e3a5f); display: flex; align-items: center; justify-content: center; padding: 0.5rem; }
.fui-ve-cover-inner { text-align: center; }
.fui-ve-cover-title { font-size: 0.55rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fui-ve-cover-avatar { width: 22px; height: 22px; background: rgba(255,255,255,0.2); border-radius: 50%; margin: 0 auto; }
.fui-ve-caption { padding: 4px 6px; font-size: 0.5rem; color: rgba(255,255,255,0.5); line-height: 1.3; background: rgba(0,0,0,0.4); }
.fui-ve-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #111128;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fui-ve-play {
  width: 22px;
  height: 22px;
  background: #7c3aed;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
}
.fui-ve-progress { flex: 1; }
.fui-ve-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.fui-ve-pos { height: 100%; background: #7c3aed; border-radius: 2px; }
.fui-ve-time { font-size: 0.6rem; color: rgba(255,255,255,0.3); white-space: nowrap; }
.fui-ve-timeline {
  padding: 6px 10px;
  background: #0a0a16;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fui-ve-track { display: flex; align-items: center; gap: 6px; height: 18px; }
.fui-ve-track-lbl { font-size: 0.55rem; color: rgba(255,255,255,0.3); width: 42px; flex-shrink: 0; }
.fui-ve-track-clip { position: relative; height: 14px; border-radius: 3px; border-width: 1px; border-style: solid; }

/* ---- Card 7: RSS ---- */
.fui-rss-wrap { gap: 0.45rem; }
.fui-rss-podcast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.1rem;
}
.fui-rss-cover {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.fui-rss-tabs { display: flex; gap: 3px; margin-left: auto; }
.fui-rss-tab { padding: 3px 8px; font-size: 0.6rem; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; font-family: inherit; cursor: default; }
.fui-rss-tab--active { background: rgba(14,165,233,0.2); border-color: rgba(14,165,233,0.4); color: #38bdf8; }
.fui-rss-url-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 0.63rem;
  color: rgba(255,255,255,0.35);
  gap: 6px;
}
.fui-ep-checklist { display: flex; flex-direction: column; gap: 4px; }
.fui-ep-check { display: flex; align-items: flex-start; gap: 6px; font-size: 0.63rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.fui-check-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
.fui-check-dot--on { background: rgba(14,165,233,0.3); border: 2px solid #0ea5e9; }

/* ---- Card 9: Profile / API Key ---- */
.fui-profile-wrap { gap: 0.45rem; }
.fui-profile-tabs { display: flex; gap: 2px; }
.fui-ptab { flex: 1; padding: 5px 4px; font-size: 0.6rem; color: rgba(255,255,255,0.4); background: transparent; border: none; border-bottom: 2px solid transparent; font-family: inherit; cursor: default; }
.fui-ptab--active { color: #c084fc; border-bottom-color: #a855f7; }
.fui-api-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.63rem;
  color: #a855f7;
  padding: 6px 8px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 6px;
  cursor: default;
}
.fui-api-key-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 6px 8px;
  gap: 6px;
}
.fui-api-key-val { font-size: 0.63rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; flex: 1; }
.fui-api-key-actions { display: flex; gap: 4px; }
.fui-api-warning {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.63rem;
  color: #f59e0b;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  padding: 7px 8px;
  line-height: 1.4;
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: color-mix(in srgb, var(--fi-c) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--fi-c) 30%, transparent);
  color: var(--fi-c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.feature-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.feature-body strong { color: var(--text); }
.feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
}


/* =====================================================
   SECTION 11 — WHAT'S INCLUDED
===================================================== */
.s-included {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,0.04) 50%, var(--bg) 100%);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.included-group {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: left;
}
.included-group-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.included-list li {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.included-list li::before {
  content: '✓';
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 0.01em;
}


/* =====================================================
   SECTION 12 — OLD WAY VS PODGORILLA
===================================================== */
.s-oldway {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.oldway-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.oldway-col {
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: left;
}
.oldway-col--bad {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
.oldway-col--good {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
.oldway-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.oldway-col-icon { font-size: 1.5rem; }
.oldway-img {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}
.oldway-col--bad .oldway-col-header strong { color: #dc2626; }
.oldway-col--good .oldway-col-header strong { color: #16a34a; }
.oldway-col-header strong {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}
.oldway-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.oldway-list li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.oldway-list--bad li { color: #374151; }
.oldway-list--good li { color: #374151; }
.oldway-list--bad li::before {
  content: '✕';
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}
.oldway-list--good li::before {
  content: '✓';
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}
.oldway-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  padding-top: 3rem;
}
.oldway-math {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.oldway-math-row {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.oldway-math-row strong { color: var(--text); }
.oldway-math-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-pill);
}
.oldway-math-label--bad  { color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); }
.oldway-math-label--good { color: var(--purple-bright); background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.25); }
.oldway-close {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.oldway-close strong { color: var(--text); }


/* =====================================================
   SECTION 13 — TESTIMONIALS
===================================================== */
.s-testimonials {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.testi-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.testi-card--featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, var(--bg-card) 60%);
  border-color: var(--border);
}
.testi-stars { font-size: 1rem; letter-spacing: 0.04em; }
.testi-quote {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
}
.testi-card--featured .testi-quote { font-size: 1.25rem; }
.testi-body {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}
.testi-body--label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  flex: none;
}
.testi-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}
.testi-bullets li {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.testi-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 700;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--av-c, var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { display: block; font-size: 0.875rem; color: var(--text); }
.testi-role { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }
.testi-close { margin-top: 2.5rem; font-size: 1rem; color: var(--text-dim); }
.testi-cta-strip {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.testi-cta-strip .btn-primary { font-size: 1.05rem; padding: 1rem 2.25rem; }
.testi-cta-note { font-size: 0.78rem; color: var(--text-muted); }

/* =====================================================
   SECTION 14 — MONETIZATION
===================================================== */
.s-monetize {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.monetize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.monetize-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--mc, var(--purple));
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.monetize-card:hover {
  border-color: var(--mc, var(--border));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.monetize-num {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mc, var(--purple-bright));
  opacity: 0.55;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.monetize-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.monetize-body {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.monetize-helps {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 0.5rem 0.65rem;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--mc, var(--purple));
  border-radius: 0 6px 6px 0;
  flex: 1;
}
.monetize-example {
  font-size: 0.82rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--purple);
  padding: 0.6rem 0.875rem;
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  line-height: 1.55;
}
.monetize-potential {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* =====================================================
   SECTION 15 — COMPARISON TABLE
===================================================== */
.s-compare {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
}
.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.compare-table thead tr {
  background: rgba(124,58,237,0.07);
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table th {
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.compare-feature-col {
  text-align: left !important;
  min-width: 180px;
  color: var(--text-muted) !important;
}
.compare-pg-col {
  background: rgba(124,58,237,0.12) !important;
  color: var(--purple-bright) !important;
  border-left: 1px solid rgba(124,58,237,0.25);
  border-right: 1px solid rgba(124,58,237,0.25);
}
.compare-table tbody tr { border-bottom: 1px solid var(--border-subtle); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.compare-section-row td {
  background: rgba(255,255,255,0.03) !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
}
.compare-table td {
  padding: 0.8rem 1.25rem;
  text-align: center;
  color: var(--text-dim);
  vertical-align: middle;
}
.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.compare-pg {
  background: rgba(124,58,237,0.06) !important;
  color: var(--text) !important;
  border-left: 1px solid rgba(124,58,237,0.15);
  border-right: 1px solid rgba(124,58,237,0.15);
}
.compare-bold {
  font-weight: 800 !important;
  font-size: 1rem;
  color: var(--purple-bright) !important;
}
.compare-wins {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.compare-win-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r);
  padding: 1.25rem;
}
.compare-win-item > span { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.compare-win-item div { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }
.compare-win-item strong { color: var(--text); }
.compare-close {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dim);
}


/* =====================================================
   FUTURE SECTIONS — PLACEHOLDERS
===================================================== */
.section-placeholder {
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-faint);
  font-size: 0.875rem;
  content-visibility: auto;       /* skip rendering until near viewport */
  contain-intrinsic-size: 0 200px; /* estimated size hint */
}


/* =====================================================
   SECTION 16 — USER CAROUSEL
===================================================== */
.s-users {
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.users-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.users-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 120px;
}
.users-stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.users-stat-plus { font-size: 0.7em; vertical-align: super; }
.users-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.users-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex-shrink: 0;
}
/* Marquee */
.users-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.users-marquee-track {
  display: flex;
  gap: 0.875rem;
  width: max-content;
  animation: usersScroll 28s linear infinite;
}
@keyframes usersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.users-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.18);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* =====================================================
   SECTION 17 — PRICING
===================================================== */
.s-pricing {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
  text-align: left;
}
/* Value stack */
.pricing-stack {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.pricing-stack-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-stack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
}
.pricing-stack-item:last-child { border-bottom: none; }
.pricing-stack-label { color: var(--text-dim); flex: 1; line-height: 1.4; }
.pricing-stack-val {
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  white-space: nowrap;
  font-size: 0.875rem;
}
.pricing-stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border-bright);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-stack-total-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-muted);
  text-decoration: line-through;
}
/* Price card */
.pricing-card {
  background: linear-gradient(160deg, rgba(124,58,237,0.12) 0%, var(--bg-card-solid) 60%);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 5.5rem;
  box-shadow: 0 0 60px rgba(124,58,237,0.15);
}
.pricing-card-badge {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  text-align: center;
  letter-spacing: 0.02em;
}
.pricing-card-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.pricing-card-was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-card-price {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card-once {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.pricing-cta-btn {
  display: block;
  text-align: center;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
}
.pricing-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0.25rem;
  opacity: 0.85;
}
.pricing-urgency-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}
.pricing-card-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pricing-card-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.pricing-urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.pricing-countdown-inline {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.pricing-countdown-inline strong { color: var(--text); font-weight: 700; }

/* =====================================================
   SECTION 18 — 30-DAY GUARANTEE
===================================================== */
.s-guarantee {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 1.5rem;
  padding: 3rem;
}
.guarantee-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.guarantee-shield svg {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(124,58,237,0.4));
}
.guarantee-shield-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
  text-align: center;
  line-height: 1.4;
  max-width: 100px;
}
.guarantee-headline {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.guarantee-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.guarantee-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}
.guarantee-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  counter-reset: gs;
}
.guarantee-steps li {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 0.35rem 0 0.35rem 2rem;
  position: relative;
  border-left: 1px dashed var(--border-subtle);
  margin-left: 0.75rem;
}
.guarantee-steps li::before {
  counter-increment: gs;
  content: counter(gs);
  position: absolute;
  left: -0.85rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.guarantee-checklist li {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.guarantee-checklist li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.15rem;
}
.guarantee-why {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}
.guarantee-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.guarantee-body:last-of-type { margin-bottom: 1.5rem; }
.guarantee-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.guarantee-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =====================================================
   SECTION 19 — FAQ
===================================================== */
.s-faq {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--purple-bright); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--purple-bright);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-body p {
  padding: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* =====================================================
   SECTION 20 — FINAL CTA
===================================================== */
.s-final-cta {
  padding: 8rem 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.final-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.final-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: -60px;
  right: 10%;
  opacity: 0.2;
}
.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.final-headline {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.final-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 620px;
}
.final-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 640px;
  text-align: center;
}
.final-path-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 720px;
  margin: 1.25rem 0;
}
.final-path-col {
  border-radius: var(--r);
  padding: 1.25rem;
  text-align: left;
}
.final-path-hard {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
}
.final-path-easy {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
}
.final-path-head {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.final-path-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.final-path-list li {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.final-path-list li:last-child { border-bottom: none; }
.final-urgency {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  max-width: 580px;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--r);
  padding: 0.875rem 1.25rem;
}
.final-close {
  max-width: 580px;
  text-align: center;
  margin: 1.5rem 0 0;
}
.final-close p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.final-value-recap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.final-value-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.final-price-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.final-price-was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.final-price {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-price-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.final-cta-btn {
  font-size: 1.2rem;
  padding: 1.15rem 2.75rem;
  min-width: 320px;
  text-align: center;
}
.final-guarantee-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.final-guarantee-note strong { color: var(--text-dim); }
.final-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
/* Pulsing glow on final CTA button */
@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(124,58,237,0.5), 0 4px 20px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 55px rgba(168,85,247,0.7), 0 4px 24px rgba(0,0,0,0.3); }
}
.final-cta-btn { animation: btnGlowPulse 2.5s ease-in-out infinite; }


/* =====================================================
   MID-PAGE CTA BRIDGES
===================================================== */
.cta-bridge {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0;
  background: rgba(124,58,237,0.04);
  text-align: center;
}
.cta-bridge--value {
  background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, rgba(168,85,247,0.04) 100%);
}
.cta-bridge-copy {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.cta-bridge-copy strong { color: var(--text); }
.cta-bridge-strike {
  text-decoration: line-through;
  color: var(--text-muted);
}
.cta-bridge-price {
  color: var(--purple-bright);
  font-size: 1.15em;
}


/* =====================================================
   GLOBAL POLISH IMPROVEMENTS
===================================================== */

/* Step connector — reveal on hover */
.steps-grid:hover .step-connector { opacity: 0.9; }

/* Creator card — per-card purple glow on hover */
.creator-card:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.2), 0 16px 48px rgba(0,0,0,0.3);
}

/* Testimonials — featured cards get a subtle purple left accent */
.testi-card--featured {
  border-left: 3px solid rgba(168,85,247,0.4);
}

/* Comparison table: stronger PodGorilla column + row alternating + better spacing */
.compare-table td, .compare-table th { padding: 0.95rem 1.35rem; }
.compare-table tbody tr:nth-child(even):not(.compare-section-row) td {
  background: rgba(255,255,255,0.015);
}
.compare-table tbody tr:nth-child(even):not(.compare-section-row) .compare-pg {
  background: rgba(124,58,237,0.09) !important;
}
.compare-pg { font-weight: 600 !important; }
.compare-pg-col { font-size: 0.9rem !important; letter-spacing: 0.03em; }

/* FAQ — rich hover/active interaction */
.faq-trigger {
  border-radius: var(--r);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  transition: color 0.15s, background 0.15s;
}
.faq-trigger:hover { background: rgba(124,58,237,0.05); }
.faq-item.open .faq-trigger {
  color: var(--purple-bright);
  background: rgba(124,58,237,0.05);
}
.faq-icon { font-size: 1.5rem; width: 1.5rem; text-align: center; }

/* Pricing card — stronger glow + CTA button animation */
@keyframes pricingPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(124,58,237,0.18), 0 0 0 1px rgba(124,58,237,0.35); }
  50% { box-shadow: 0 0 80px rgba(168,85,247,0.28), 0 0 0 1px rgba(168,85,247,0.5); }
}
.pricing-card { animation: pricingPulse 3s ease-in-out infinite; }

/* Success show tag — slightly more readable */
.success-show-tag { color: var(--text-muted); }

/* Subscriber badge */
.success-subs-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: #6b5f8a;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
.success-subs-badge svg { color: #7c3aed; flex-shrink: 0; }
.success-subs-num {
  font-weight: 800;
  font-size: 0.8rem;
  color: #7c3aed;
}

/* Stats bridge — bold last line */
.stats-cta-line { font-weight: 600; }

/* Guarantee shield — subtle glow animation */
@keyframes shieldGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(124,58,237,0.35)); }
  50% { filter: drop-shadow(0 0 40px rgba(168,85,247,0.6)); }
}
.guarantee-shield svg { animation: shieldGlow 3s ease-in-out infinite; }

/* Section 8 creators — slightly larger icon */
.creator-icon { font-size: 2rem; }

/* Included list — slightly better spacing */
.included-list li { padding: 0.25rem 0; }

/* Old Way math row — tighter and more distinct */
.oldway-math {
  background: linear-gradient(135deg, rgba(17,17,28,0.9) 0%, rgba(17,17,28,0.7) 100%);
  border: 1px solid var(--border-subtle);
}
.oldway-math-row:first-child { padding-bottom: 0.85rem; border-bottom: 1px solid var(--border-subtle); }
.oldway-math-row:last-child { padding-top: 0.85rem; }

/* Sticky bar — make countdown more visible */
.countdown-digits { color: var(--purple-bright); font-weight: 800; }
.sticky-cta {
  background: var(--grad-purple);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.sticky-cta:hover { opacity: 0.88; }

/* Footer links hover state */
.footer-links a:hover { color: var(--purple-bright); }


/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-faint);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.65;
}
.footer-links {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-links a { transition: color 0.15s; }
.footer-links a:hover { color: var(--purple-bright); }
.footer-links span { color: var(--border-bright); margin: 0 0.5rem; }
.footer-copy { font-size: 0.72rem; color: var(--text-faint); }


/* =====================================================
   RESPONSIVE
===================================================== */

/* Float cards — only on very wide viewports with enough gutter space */
@media (min-width: 1500px) {
  .hero-floats { display: block; }
}

/* ---- Tablet ≤ 900px ---- */
@media (max-width: 900px) {
  .hero-video-wrap { max-width: 100%; }
  .hero-h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .success-grid { grid-template-columns: repeat(4, 1fr); }
  .success-card { grid-column: span 2; }
  .success-card:nth-child(4), .success-card:nth-child(5) { grid-column: span 2; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); width: auto; align-self: center; padding: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .oldway-grid { grid-template-columns: 1fr; }
  .oldway-vs { padding-top: 0; }

  /* Sections 13–15 at tablet */
  .testi-featured { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .monetize-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-wins { grid-template-columns: 1fr; }

  /* Sections 16–20 at tablet */
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .guarantee-inner { grid-template-columns: 160px 1fr; gap: 2rem; }
}

/* ---- Mobile ≤ 768px ---- */
@media (max-width: 768px) {
  /* Hero layout */
  .s-hero { padding: 3rem 0 2.5rem; min-height: auto; }
  .hero-h1 { font-size: 1.9rem; letter-spacing: -0.025em; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-tag { font-size: 0.76rem; padding: 0.42rem 1.1rem; }
  .hero-badges { grid-template-columns: 1fr; max-width: 360px; }
  .hero-pills { gap: 0.5rem; margin-bottom: 2rem; }
  .hero-video-wrap { margin-bottom: 2rem; }
  .platform-section { margin-bottom: 2.5rem; }
  .platform-sublabel { display: none; } /* too small on mobile */

  /* Full-width CTA — thumb-friendly */
  .hero-cta .btn-primary {
    width: 100%;
    max-width: 440px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    justify-content: center;
  }
  .hero-price-now { font-size: 2rem; }
  .midpage-cta-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .midpage-cta-btn { width: 100%; max-width: 340px; }
  .social-proof-notif { left: 0.75rem; right: 0.75rem; bottom: 72px; }
  .sp-notif-inner { max-width: 100%; }

  /* Trust row — stack vertically */
  .trust-row { flex-direction: column; gap: 0.55rem; margin-bottom: 2.5rem; }
  .trust-divider { display: none; }
  .trust-item { padding: 0; justify-content: center; }

  /* Seen on */
  .seen-on-grid { gap: 0.75rem; }
  .seen-on-card { padding: 1.1rem 1.4rem; }

  /* Sticky bar */
  .sticky-bar { padding: 0.6rem 1rem; }
  .sticky-coupon { display: none; }
  .countdown-digits { font-size: 1rem; }
  .sticky-cta { font-size: 0.82rem; padding: 0.55rem 1.2rem; }

  /* Reduce expensive GPU effects on mobile */
  .hero-orb--1 { width: 280px; height: 280px; filter: blur(70px); }
  .hero-orb--2 { width: 200px; height: 200px; filter: blur(70px); }
  .hero-orb--3 { display: none; }
  .hero-noise  { display: none; } /* skip noise texture on mobile */
  .hero-video-frame,
  .glass-card,
  .marquee-wrap { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .sticky-bar { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

/* ---- Small mobile ≤ 480px ---- */
@media (max-width: 480px) {
  :root { --px: 1.25rem; }

  .s-hero { padding: 2.5rem 0 2rem; }
  .hero-h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-tag { font-size: 0.72rem; padding: 0.38rem 0.9rem; }

  /* Pills full-width on small screens */
  .hero-pills { flex-direction: column; align-items: stretch; }
  .hero-pill { justify-content: center; }

  /* Sticky bar minimal */
  .sticky-countdown-label { display: none; }
  .countdown-digits { font-size: 0.95rem; letter-spacing: 0; }

  /* Seen on tighter */
  .seen-on-card { padding: 0.9rem 1.1rem; }
  .seen-on-inner strong { font-size: 1rem; }

  /* Footer tighter */
  .site-footer { padding: 2rem 0 1.5rem; }

  /* Demo grid: single column on smallest screens */
  .demo-grid { grid-template-columns: 1fr; }
  .demo-thumb { height: 170px; }

  /* Steps stack on small screens */
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); width: auto; padding: 0; align-self: center; }

  /* Success grid single col */
  .success-grid { grid-template-columns: 1fr; }
  .success-card, .success-card:nth-child(4), .success-card:nth-child(5) { grid-column: span 1; }

  /* Challenge body stack */
  .challenge-body { flex-direction: column; gap: 1.5rem; }
  .challenge-divider { width: 60px; height: 1px; }
  .challenge-copy { text-align: center; }

  /* Sections 10–12 single col */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--showcase { grid-template-columns: 1fr; }
  .feature-card--showcase.fcs-reverse .fcs-text,
  .feature-card--showcase.fcs-reverse .fcs-screen { order: unset; }
  .included-grid { grid-template-columns: 1fr; }
  .oldway-grid { grid-template-columns: 1fr; }
  .oldway-math { padding: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .creators-grid { grid-template-columns: 1fr; }

  /* Sections 13–15 */
  .testi-featured { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .monetize-grid { grid-template-columns: 1fr; }
  .compare-wins { grid-template-columns: 1fr; }

  /* Sections 16–20 */
  .users-stat-divider { display: none; }
  .users-stats-bar { gap: 1.25rem; padding: 1.5rem; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 2rem; }
  .guarantee-trust { justify-content: center; }
  .final-path-wrap { grid-template-columns: 1fr; }
  .final-cta-btn { min-width: unset; width: 100%; }

  /* Challenge section */
  .challenge-quotes { flex-direction: column; align-items: center; }
  .challenge-quote { max-width: 100%; min-width: unset; }

  /* Success CTA banner */
  .success-cta-banner { flex-direction: column; text-align: center; }
  .success-cta-text { text-align: center; }
}

/* ---- Accessibility: respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* =====================================================
   UNLIMITED OTO PAGE  (u- prefix)
===================================================== */

/* ---- Page offset for fixed notice bar ---- */
body.u-page {
  padding-top: 56px;
  padding-bottom: 0;
}

/* ---- NOTICE BAR ---- */
.u-notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #78350f 0%, #92400e 50%, #78350f 100%);
  border-bottom: 1px solid rgba(251,191,36,0.25);
  padding: 0.72rem 0;
}
.u-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.u-notice-bar strong { color: #fef3c7; white-space: nowrap; }
.u-notice-inner > span:not(.u-notice-dot):not(.u-notice-timer) { color: #fde68a; }
.u-notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}
.u-notice-timer {
  font-weight: 700;
  color: #fef3c7;
  white-space: nowrap;
  font-size: 0.8rem;
}
.u-notice-timer b {
  color: #fbbf24;
  font-variant-numeric: tabular-nums;
}

/* ---- UTILITY ---- */
.u-center { text-align: center; }
.u-highlight { color: var(--purple-bright); font-weight: 700; }

/* ---- OTO HERO ---- */
.s-u-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.u-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.u-oto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.32);
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  animation: otoBadgePulse 2.5s ease-in-out infinite;
}
@keyframes otoBadgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(251,191,36,0); }
  50%       { box-shadow: 0 0 18px rgba(251,191,36,0.35); }
}
.u-oto-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse 1.6s ease-in-out infinite;
}
.u-hero-h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.u-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.u-hero-sub strong { color: var(--text); }
.u-video-box {
  max-width: 720px;
  margin: 0 auto 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.u-video-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(124,58,237,0.18);
}
.u-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.u-cta-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- ACCEPT BUTTON (green) ---- */
.u-btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #166534, #16a34a 50%, #22c55e);
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  font-size: 1.1rem;
  padding: 1.1rem 2.75rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s;
  box-shadow: 0 0 28px rgba(34,197,94,0.28), 0 6px 20px rgba(0,0,0,0.45);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}
.u-btn-accept:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(74,222,128,0.38), 0 12px 36px rgba(0,0,0,0.5);
}
.u-btn-accept:focus-visible {
  outline: 2px solid #4ade80;
  outline-offset: 3px;
}
.u-btn-accept--sm  { font-size: 0.95rem; padding: 0.85rem 2rem; }
.u-btn-accept--full { width: calc(100% - 4rem); font-size: 1rem; padding: 1rem; margin: 0 2rem 2rem; box-sizing: border-box; }
.u-btn-accept--xl  { font-size: 1.2rem; padding: 1.25rem 3.25rem; }

/* Override btn-glow pseudo for green button */
.u-btn-accept.btn-glow::before {
  background: linear-gradient(135deg, #15803d, #22c55e 45%, #4ade80);
}
@keyframes greenCtaPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.32; transform: scale(1.04); }
}
.u-btn-accept.btn-glow::before { animation: greenCtaPulse 2.5s ease-in-out infinite; }
/* Main pricing + final CTA get a persistent green glow pulse */
.s-u-pricing .u-btn-accept--xl,
.s-u-final .u-btn-accept--xl {
  animation: greenBtnGlow 2.5s ease-in-out infinite;
}
@keyframes greenBtnGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(34,197,94,0.2), 0 6px 20px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 32px rgba(74,222,128,0.3), 0 8px 28px rgba(0,0,0,0.4); }
}

/* ---- ACTIVATED PREVIEW ---- */
.s-u-preview {
  padding: 5rem 0;
  background: var(--bg-2);
}
.u-activated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.u-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.u-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-top: 3px solid var(--uc, #4ade80);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.u-preview-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--uc, #4ade80) 40%, transparent);
  border-top-color: var(--uc, #4ade80);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--uc, #4ade80) 15%, transparent);
}
.u-preview-card--featured {
  border-color: rgba(34,197,94,0.4);
  border-top-color: var(--uc, #22c55e);
  box-shadow: 0 0 40px rgba(34,197,94,0.07);
}
.u-preview-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--uc, #4ade80) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--uc, #4ade80) 22%, transparent);
  border-radius: var(--r);
  color: var(--uc, #4ade80);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.u-preview-card:hover .u-preview-icon { transform: scale(1.1); }
.u-preview-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uc, #4ade80);
  margin-bottom: 0.5rem;
}
.u-preview-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.65rem; }
.u-preview-card p  { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ---- STORY ---- */
.s-u-story { padding: 5rem 0; }
.u-story-wrap { max-width: 760px; margin: 0 auto; }
.u-story-body p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.u-story-body p strong { color: var(--text); }
.u-story-body em { color: var(--purple-bright); font-style: normal; font-weight: 600; }
.u-story-choices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.u-story-choice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid;
  border-left: 3px solid;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.u-story-choice--yes { background: rgba(34,197,94,0.06);  border-color: rgba(34,197,94,0.22); border-left-color: #4ade80; }
.u-story-choice--no  { background: rgba(239,68,68,0.06);  border-color: rgba(239,68,68,0.2);  border-left-color: #f87171; }
.u-story-choice--yes:hover { background: rgba(34,197,94,0.12); transform: translateX(4px); }
.u-story-choice--no:hover  { background: rgba(239,68,68,0.1);  transform: translateX(4px); }
.u-sc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.u-story-choice--yes .u-sc-icon { background: rgba(34,197,94,0.18);  color: #4ade80; }
.u-story-choice--no  .u-sc-icon { background: rgba(239,68,68,0.15);  color: #f87171; }
.u-story-choice > div:last-child { font-size: 0.94rem; color: var(--text-dim); line-height: 1.65; }
.u-story-choice > div:last-child strong { color: var(--text); }
.u-story-choice > div:last-child em { color: var(--purple-bright); font-style: normal; font-weight: 600; }

/* ---- FEATURE DEEP DIVES ---- */
.s-u-features { padding: 5rem 0; background: var(--bg-2); }
.s-u-features > .container > .section-h2 { text-align: center; }
.u-feat-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2.5rem;
  padding: 3rem 0 3rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  border-left: 3px solid var(--fi-c, var(--purple-bright));
  align-items: start;
  transition: border-left-color 0.3s;
}
.u-feat-block:last-child { border-bottom: none; }
.u-feat-num {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--fi-c, var(--purple-bright));
  opacity: 0.6;
  line-height: 1;
  padding-top: 0.3rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
}
.u-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.28);
  color: #4ade80;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.75rem;
}
.u-feat-h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--fi-c, var(--text));
  letter-spacing: -0.01em;
}
.u-feat-p {
  font-size: 0.94rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 660px;
}
.u-feat-p strong { color: var(--text); }
.u-feat-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.u-feat-compare {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.u-fc-item {
  padding: 0.75rem 1.25rem;
  border-radius: var(--r);
  font-size: 0.84rem;
  font-weight: 600;
}
.u-fc-item--old {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.18);
  color: var(--text-dim);
}
.u-fc-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.u-fc-item--old .u-fc-label { color: #f87171; }
.u-fc-item--new {
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.26);
}
.u-fc-item--new .u-fc-label { color: #4ade80; }
.u-fc-item--new .u-fc-val   { color: var(--text); }
.u-fc-arrow { font-size: 1.1rem; color: var(--text-muted); }
.u-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}
.u-fg-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.u-fg-item em { color: var(--text-muted); font-style: normal; }
.u-fg-check { color: #4ade80; font-weight: 700; flex-shrink: 0; }

/* ---- BONUSES ---- */
.s-u-bonuses { padding: 5rem 0; }
.u-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.u-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-top: 3px solid var(--bc, var(--purple-bright));
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.u-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--bc, var(--purple-bright)) 12%, transparent);
}
.u-bonus-card--featured {
  border-color: rgba(251,191,36,0.38);
  border-top-color: var(--bc, #fbbf24);
  box-shadow: 0 0 40px rgba(251,191,36,0.05);
}
.u-bonus-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc, #fbbf24);
}
.u-bonus-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.u-bonus-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--bc, var(--purple-bright)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--bc, var(--purple-bright)) 22%, transparent);
  border-radius: var(--r);
  color: var(--bc, var(--purple-bright));
  transition: transform 0.3s;
}
.u-bonus-card:hover .u-bonus-icon { transform: scale(1.1); }
.u-bonus-card h3 { font-size: 1.15rem; font-weight: 800; line-height: 1.4; }
.u-bonus-card p  { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; flex: 1; }
.u-bonus-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.u-bv-was {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.u-bv-free {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(34,197,94,0.1);
  padding: 0.18rem 0.6rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(34,197,94,0.22);
  animation: freeGlow 2s ease-in-out infinite;
}
@keyframes freeGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(34,197,94,0); }
  50% { text-shadow: 0 0 8px rgba(34,197,94,0.4); }
}
.u-bonus-total {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(168,85,247,0.05));
  border: 1px solid rgba(168,85,247,0.28);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  text-align: center;
}
.u-bt-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.u-bt-inner > span:first-child { font-size: 0.88rem; color: var(--text-dim); font-weight: 600; }
.u-bt-amount {
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-text-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.u-bt-yours { font-size: 0.8rem; color: #4ade80; font-weight: 600; }

/* ---- SITUATION SUMMARY ---- */
.s-u-situation { padding: 5rem 0; background: var(--bg-2); }
.u-situation-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.u-sit-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.u-sit-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.u-sit-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.u-sit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
}
.u-sit-item em { color: var(--text-muted); font-style: normal; font-size: 0.8em; }
.u-si-check        { color: #4ade80; font-weight: 700; flex-shrink: 0; width: 16px; text-align: center; font-size: 0.8rem; }
.u-si-check--bonus { color: #fbbf24; }
.u-sit-summary {
  background: linear-gradient(160deg, var(--bg-card), rgba(12,25,14,0.4));
  border: 2px solid rgba(34,197,94,0.35);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: sticky;
  top: 72px;
  text-align: center;
  animation: greenPricePulse 3.5s ease-in-out infinite;
}
.u-ss-label   { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.4rem; }
.u-ss-price   { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 0.25rem; letter-spacing: -0.04em; }
.u-ss-price span { font-size: 1.1rem; color: var(--text-muted); }
.u-ss-annual  { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.u-ss-was     { font-size: 0.75rem; color: var(--text-faint); text-decoration: line-through; margin-bottom: 1.5rem; }
.u-ss-note    { font-size: 0.73rem; color: var(--text-muted); margin-top: 0.75rem; }
.u-sit-summary .u-btn-accept { width: 100%; justify-content: center; }

/* ---- ACCEPT vs DECLINE ---- */
.s-u-decision { padding: 5rem 0; }
.s-u-decision > .container > .section-h2 { text-align: center; }
.u-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.u-dec-card { border-radius: var(--r-lg); overflow: hidden; }
.u-dec-card--accept {
  border: 2px solid rgba(34,197,94,0.4);
  background: linear-gradient(160deg, rgba(17,17,28,0.95), rgba(12,25,14,0.6));
  box-shadow: 0 0 50px rgba(34,197,94,0.1);
}
.u-dec-card--decline {
  border: 1px solid rgba(239,68,68,0.2);
  background: rgba(17,17,28,0.8);
  filter: grayscale(0.15);
  transition: filter 0.2s, opacity 0.2s;
}
.u-dec-card--decline:hover { filter: grayscale(0); }
.u-dec-header { padding: 1.75rem 2rem 1.4rem; border-bottom: 1px solid var(--border-subtle); }
.u-dec-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
}
.u-dec-icon--accept { background: rgba(34,197,94,0.14);  color: #4ade80; border: 1px solid rgba(34,197,94,0.28); }
.u-dec-icon--decline{ background: rgba(239,68,68,0.1);   color: #f87171; border: 1px solid rgba(239,68,68,0.22); }
.u-dec-header h3  { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.35rem; }
.u-dec-card--accept  .u-dec-header h3 { color: #4ade80; }
.u-dec-card--decline .u-dec-header h3 { color: #f87171; }
.u-dec-header p   { font-size: 0.82rem; color: var(--text-muted); }
.u-dec-list {
  list-style: none;
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.u-dec-list li {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.u-dec-card--accept .u-dec-list li { color: rgba(76,222,128,0.9); }
.u-dec-list--bad li { color: rgba(239,68,68,0.72); }
.u-btn-decline {
  display: block;
  margin: 0 2rem 2rem;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: var(--r);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.u-btn-decline:hover { background: rgba(239,68,68,0.07); color: #f87171; }

/* ---- URGENCY ---- */
.s-u-urgency {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(251,191,36,0.02) 0%, var(--bg-2) 50%, rgba(251,191,36,0.01) 100%);
}
.u-urgency-wrap { max-width: 840px; margin: 0 auto; }
.u-urgency-body {
  font-size: 1.03rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.u-urgency-body em { color: #fbbf24; font-style: normal; font-weight: 700; }
.u-urgency-calc {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.u-uc-item { text-align: center; flex: 1; min-width: 140px; }
.u-uc-num {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.u-uc-num span { font-size: 1.1rem; }
.u-uc-label { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }
.u-uc-vs {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.u-urgency-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  border-left: 3px solid #fbbf24;
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.65;
}

/* ---- PRICING ---- */
.s-u-pricing { padding: 5rem 0; }
.s-u-pricing > .container { text-align: center; }
@keyframes greenPricePulse {
  0%, 100% { box-shadow: 0 0 60px rgba(34,197,94,0.08),  0 0 0 1px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 90px rgba(74,222,128,0.16), 0 0 0 1px rgba(74,222,128,0.35); }
}
.u-price-card {
  max-width: 640px;
  margin: 3rem auto 0;
  background: linear-gradient(160deg, var(--bg-card), rgba(12,25,14,0.35));
  border: 2px solid rgba(34,197,94,0.42);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  animation: greenPricePulse 3s ease-in-out infinite;
}
.u-pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 1.25rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.u-pc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.u-pc-logo { width: 64px; height: 64px; border-radius: var(--r); overflow: hidden; }
.u-pc-logo img { width: 100%; height: 100%; object-fit: contain; }
.u-pc-title h3   { font-size: 1.2rem; font-weight: 800; text-align: center; }
.u-pc-title span { font-size: 0.78rem; color: var(--text-muted); display: block; text-align: center; }
.u-pc-pricing {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
}
.u-pc-was    { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.u-pc-was s  { color: #f87171; }
.u-pc-price  { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; color: var(--text); letter-spacing: -0.05em; line-height: 1; margin-bottom: 0.3rem; }
.u-pc-period { font-size: 1.2rem; color: var(--text-muted); font-weight: 600; }
.u-pc-monthly{ font-size: 0.84rem; color: #4ade80; font-weight: 600; }
.u-pc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.25rem;
  margin-bottom: 1.75rem;
  text-align: left;
}
.u-pcf-col { display: flex; flex-direction: column; gap: 0.45rem; }
.u-pcf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.u-pcf-item span { color: #4ade80; font-weight: 700; flex-shrink: 0; }
.u-pcf-item--bonus       { color: var(--text-muted); }
.u-pcf-item--bonus span  { color: #fbbf24; }
.u-pc-timer {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.u-pc-timer b { color: #fbbf24; font-variant-numeric: tabular-nums; }
.u-pc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.u-pct-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.76rem; color: var(--text-muted); }
.u-pct-item svg { color: #4ade80; flex-shrink: 0; }
.u-price-card .u-btn-accept,
.s-u-final .u-btn-accept { width: 100%; justify-content: center; }

/* ---- GUARANTEE ---- */
.s-u-guarantee { padding: 5rem 0; background: var(--bg-2); }
.u-guarantee-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.u-guarantee-badge { flex-shrink: 0; transition: transform 0.3s; }
.u-guarantee-badge:hover { transform: scale(1.05) rotate(2deg); }
.u-shield-svg {
  width: 130px;
  height: 150px;
  animation: shieldGlow 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(124,58,237,0.4));
}
.u-guarantee-copy p strong { color: #4ade80; }
.u-guarantee-copy h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.85rem; line-height: 1.35; }
.u-guarantee-copy p  { font-size: 0.92rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 0.75rem; }
.u-guarantee-copy p strong { color: var(--text); }

/* ---- FINAL SECTION ---- */
.s-u-final {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.u-final-wrap {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.u-final-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, rgba(124,58,237,0.1) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(50px);
}
.u-final-body { font-size: 1.05rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 1.25rem; text-align: left; }
.u-final-body strong { color: var(--text); }
.u-final-cta { margin: 2.5rem 0 1rem; }
.u-final-price { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }
.u-decline-wrap {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.u-decline-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
  display: inline-block;
  max-width: 480px;
  line-height: 1.65;
}
.u-decline-link:hover { color: #f87171; text-decoration-color: rgba(248,113,113,0.3); }

/* ---- DECLINE POPUP ---- */
.u-decline-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.u-decline-popup.open { display: flex; }
.u-dp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.u-dp-modal {
  position: relative;
  background: var(--bg-card-solid);
  border: 1px solid rgba(239,68,68,0.28);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  z-index: 1;
  text-align: center;
}
.u-dp-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: background 0.2s;
}
.u-dp-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.u-dp-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.u-dp-modal h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.75rem; }
.u-dp-modal p  { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 0.75rem; }
.u-dp-modal p strong { color: var(--text); }
.u-dp-alt {
  background: rgba(251,191,36,0.07);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--r);
  padding: 0.875rem 1rem;
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 0 !important;
}
.u-dp-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.u-dp-btn-keep { width: 100%; }
.u-dp-btn-monthly {
  display: block;
  padding: 0.75rem;
  background: rgba(251,191,36,0.09);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fbbf24;
  text-align: center;
  transition: background 0.2s;
}
.u-dp-btn-monthly:hover { background: rgba(251,191,36,0.16); }
.u-dp-btn-decline {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.1);
  text-align: center;
  cursor: pointer;
  display: block;
  padding: 0.25rem;
  transition: color 0.2s;
}
.u-dp-btn-decline:hover { color: var(--text-muted); }

/* ---- UNLIMITED PAGE RESPONSIVE ---- */
@media (max-width: 960px) {
  .u-situation-grid  { grid-template-columns: 1fr; }
  .u-sit-checklist   { grid-template-columns: 1fr; }
  .u-sit-summary     { position: static; }
  .u-decision-grid   { grid-template-columns: 1fr; }
  .u-dec-card--decline { order: 2; }
}
@media (max-width: 720px) {
  .u-feat-block { grid-template-columns: 56px 1fr; gap: 0 1.25rem; padding-left: 1.25rem; }
  .u-feat-num   { font-size: 2rem; }
  .u-bonus-total { padding: 1.5rem 1.25rem; }
  .u-bt-inner { flex-direction: column; gap: 0.6rem; }
  .u-bt-amount { font-size: 1.75rem; }
  .u-urgency-calc { padding: 1.75rem; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .u-hero-h1      { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .u-urgency-calc { flex-direction: column; gap: 1.25rem; }
  .u-uc-vs        { display: none; }
  .u-uc-num       { font-size: clamp(1.4rem, 5vw, 2rem); }
  .u-pc-features  { grid-template-columns: 1fr; }
  .u-guarantee-wrap { flex-direction: column; text-align: center; }
  .u-guarantee-badge { align-self: center; }
  .u-feat-block   { grid-template-columns: 1fr; border-left-width: 2px; padding-left: 1rem; }
  .u-feat-num     { font-size: 1.75rem; margin-bottom: 0.5rem; }
  .u-notice-timer { display: none; }
  .u-btn-accept--xl { font-size: 1rem; padding: 1rem 1.75rem; white-space: normal; text-align: center; }
  .u-btn-accept--full { margin: 0 1rem 1.5rem; max-width: calc(100% - 2rem); }
  .u-btn-accept--sm  { white-space: normal; text-align: center; }
  .u-dec-list, .u-dec-header { padding-left: 1.25rem; padding-right: 1.25rem; }
  .u-story-body p { font-size: 0.98rem; }
  .u-dp-modal { padding: 1.75rem; }
  .u-dp-modal h3 { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .u-hero-h1 { font-size: 1.75rem; }
  .u-hero-sub { font-size: 0.95rem; }
  .u-preview-grid { grid-template-columns: 1fr; }
  .u-bonus-grid { grid-template-columns: 1fr; }
  .u-feat-grid { grid-template-columns: 1fr; }
  .u-pc-pricing { padding-bottom: 1.25rem; margin-bottom: 1.5rem; }
  .u-pc-price { font-size: 3rem; }
  .u-final-body { font-size: 0.95rem; }
  .u-ss-price { font-size: 2.5rem; }
}


/* =====================================================
   UNLIMITED PAGE — DESIGN IMPROVEMENTS
===================================================== */

/* Override hero orbs to green on unlimited page */
body.u-page .hero-orb--1 {
  background: radial-gradient(circle, rgba(34,197,94,0.55) 0%, transparent 70%);
}
body.u-page .hero-orb--2 {
  background: radial-gradient(circle, rgba(74,222,128,0.35) 0%, transparent 70%);
}
body.u-page .hero-orb--3 {
  background: radial-gradient(circle, rgba(34,197,94,0.25) 0%, transparent 70%);
}

/* CTA bridge line text (used in features→bonuses bridge) */
.cta-bridge-line {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.cta-bridge-line strong { color: var(--text); }
.cta-bridge-big {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Urgency comparison — color-code UNLIMITED vs competitors */
.u-urgency-calc .u-uc-item:first-child {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
}
.u-urgency-calc .u-uc-item:first-child .u-uc-num  { color: #4ade80; }
.u-urgency-calc .u-uc-item:first-child .u-uc-label { color: rgba(74,222,128,0.75); }
.u-urgency-calc .u-uc-item:not(:first-child) .u-uc-num { color: #f87171; }

/* Preview card — featured card gets slightly more lift */
.u-preview-card--featured {
  border-color: rgba(34,197,94,0.45);
  border-top-width: 3px;
  box-shadow: 0 0 50px rgba(34,197,94,0.1), 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}
.u-preview-card--featured:hover { transform: translateY(-6px); }

/* Bonus total banner — green-tinted to match page accent */
.u-bonus-total {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(74,222,128,0.04));
  border-color: rgba(34,197,94,0.28);
}
.u-bt-amount { color: #4ade80; }

/* Situation summary — stronger green pulse */
.u-sit-summary {
  background: linear-gradient(160deg, rgba(12,25,14,0.9), rgba(17,17,28,0.95));
}

/* Section tag on unlimited page — green accent */
body.u-page .section-tag { border-color: rgba(34,197,94,0.25); color: #4ade80; }
body.u-page .section-tag-dot { background: #4ade80; }

/* Accept/Decline — boost accept card glow on hover */
.u-dec-card--accept:hover {
  box-shadow: 0 0 70px rgba(34,197,94,0.18), 0 0 0 1px rgba(34,197,94,0.5);
  border-color: rgba(34,197,94,0.6);
  transform: translateY(-2px);
  transition: all 0.25s;
}

/* Final section orb — shift to pure green instead of purple-green mix */
.s-u-final .u-final-orb {
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 65%);
}

/* Hero intro paragraph (above h1) */
.u-hero-intro {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  padding: 0.85rem 1.25rem;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: var(--r);
}

/* Story — activated checklist */
.u-story-activated {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.18);
  border-left: 3px solid #4ade80;
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.u-sa-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: var(--text-dim);
}
.u-sa-check { flex-shrink: 0; }
.u-story-bold {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
}

/* Feature active confirmation line */
.u-feat-active {
  font-size: 0.88rem;
  color: #4ade80;
  margin-bottom: 1rem;
}

/* Situation summary — new elements */
.u-ss-statement {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.u-ss-cta-line {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.u-ss-cta-line strong { color: var(--text); }
.u-ss-math {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.u-ss-math-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.u-ss-math-reg   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.u-ss-math-reg s { color: #f87171; }
.u-ss-note-math  { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.5; }

/* Accept/decline card — guarantee note and decline note */
.u-dec-guarantee {
  font-size: 0.82rem;
  color: #4ade80;
  font-style: italic;
  padding: 0.75rem 2rem;
  line-height: 1.6;
}
.u-dec-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.5rem 2rem 1rem;
  font-style: italic;
}

/* Urgency section — new elements */
.u-urgency-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: #fbbf24;
  margin: 2rem 0 1rem;
  letter-spacing: -0.01em;
}
.u-urgency-bold { font-style: normal; }

/* Pricing card — new elements */
.u-pc-already {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  text-align: center;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.u-pc-save {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.5;
}
.u-pc-save strong { color: #4ade80; }
.u-pcf-item em { color: var(--text-muted); font-style: normal; font-size: 0.85em; }

/* Final CTA — new elements */
.u-final-one-more {
  text-align: left;
  max-width: 600px;
  margin: 2.5rem auto;
  padding: 2rem;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--r-lg);
}
.u-final-omh {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.u-final-smallprint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.6;
  font-style: italic;
}


/* =====================================================
   UNLIMITED PAGE — DESIGN POLISH (2026-04-03)
===================================================== */

/* Highlight text is green on unlimited page (not purple) */
body.u-page .u-highlight { color: #4ade80; }

/* CTA bridge green tint on unlimited page */
body.u-page .cta-bridge--value {
  background: linear-gradient(135deg, rgba(34,197,94,0.07) 0%, rgba(74,222,128,0.04) 100%);
  border-top-color: rgba(34,197,94,0.15);
  border-bottom-color: rgba(34,197,94,0.15);
}

/* Situation checklist group labels - green accent */
body.u-page .u-sit-group-label { color: #4ade80; }

/* Situation checklist group cards - subtle green border */
body.u-page .u-sit-group {
  border-color: rgba(34,197,94,0.14);
}

/* Center section-sub text in centered unlimited sections */
.s-u-preview .section-sub,
.s-u-features > .container > .section-sub,
.s-u-bonuses .section-sub,
.s-u-pricing .section-sub,
.s-u-final .section-sub {
  text-align: center;
}

/* Feature block hover — subtle background lift */
.u-feat-block {
  transition: background 0.25s, border-left-color 0.3s;
  border-radius: 0 var(--r) var(--r) 0;
}
.u-feat-block:hover {
  background: rgba(255,255,255,0.018);
}

/* Story bold statement — green accent instead of plain white */
.u-story-bold { color: #4ade80; }

/* Hero intro — slightly more visible amber tint */
.u-hero-intro {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.24);
  color: var(--text-dim);
}

/* Urgency warning — stronger left accent */
.u-urgency-warning {
  border-left-width: 4px;
}

/* Preview section centered — ensure activated badge is centered */
.s-u-preview .container { text-align: center; }
.s-u-preview .u-preview-grid { text-align: left; }

/* Features + bonuses container: center inline (section-tag, badges) while keeping block content left */
.s-u-features > .container,
.s-u-bonuses > .container {
  text-align: center;
}
.s-u-features .u-feat-block,
.s-u-features .u-feat-content,
.s-u-features .u-feat-badge,
.s-u-features .u-feat-h3,
.s-u-features .u-feat-p,
.s-u-features .u-feat-compare,
.s-u-features .u-feat-grid,
.s-u-features .u-feat-active {
  text-align: left;
}
.s-u-bonuses .u-bonus-card,
.s-u-bonuses .u-bonus-card h3,
.s-u-bonuses .u-bonus-card p,
.s-u-bonuses .u-bonus-value { text-align: left; }

/* Decline popup — stronger warning border */
.u-dp-modal { border-color: rgba(239,68,68,0.35); }

/* Responsive: hero intro full-width on small screens */
@media (max-width: 640px) {
  .u-hero-intro { font-size: 0.88rem; padding: 0.7rem 1rem; }
  .u-btn-accept--full { width: calc(100% - 2rem); margin: 0 1rem 1.5rem; }
}
