:root {
  --pp-navy: #040522;
  --pp-orange: #F97316;
  --pp-muted: #9CA3AF;
  --pp-bg: #020617;
  --pp-card: rgba(15, 23, 42, 0.9);
  --pp-border: rgba(148, 163, 184, 0.35);
}
/* Ambient corner glows */
.pp-ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
  filter: blur(120px);
}

/* Top-right blue glow */
.pp-ambient-top {
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.45),
    transparent 70%
  );
}

/* Bottom-left orange glow */
.pp-ambient-bottom {
  bottom: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.45),
    transparent 70%
  );
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #000 100%);
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;

  /* make footer stick to bottom on short pages */
  display: flex;
  flex-direction: column;
}

/* Background animated glows */
.pp-bg-orbit {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, rgba(249, 115, 22, 0.7), rgba(124, 45, 18, 0.1));
  filter: blur(24px);
  opacity: 0.4;
  top: -120px;
  left: -140px;
  z-index: -2;
  animation: pp-orbit 16s ease-in-out infinite alternate;
}

.pp-bg-orbit-2 {
  top: auto;
  left: auto;
  right: -160px;
  bottom: -160px;
  background: radial-gradient(circle at 0 30%, rgba(56, 189, 248, 0.6), rgba(15, 23, 42, 0.1));
  animation-duration: 20s;
}

@keyframes pp-orbit {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
  50%  { transform: translate3d(40px, 40px, 0) scale(1.1); opacity: 0.5; }
  100% { transform: translate3d(20px, -30px, 0) scale(0.95); opacity: 0.3; }
}
/* Lux gold sparkle overlay – clearly visible, soft breathing shimmer */
/* Desktop only – we keep mobile clean */
@media (min-width: 768px) {
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1; /* above bg orbits (-2), below content (0) */
    background-repeat: no-repeat;
    /* A handful of small "stars" scattered around */
    background-image:
      radial-gradient(3px 3px at 12% 20%, rgba(253, 224, 71, 0.40), transparent),
      radial-gradient(3px 3px at 28% 75%, rgba(251, 191, 36, 0.35), transparent),
      radial-gradient(3px 3px at 48% 28%, rgba(250, 204, 21, 0.42), transparent),
      radial-gradient(3px 3px at 68% 82%, rgba(253, 224, 71, 0.38), transparent),
      radial-gradient(3px 3px at 78% 35%, rgba(251, 191, 36, 0.45), transparent),
      radial-gradient(3px 3px at 90% 63%, rgba(250, 204, 21, 0.36), transparent);
    opacity: 0.45;
    animation: pp-sparkle-breathe 7s ease-in-out infinite;
  }
}

/* Simple “breathing” shimmer – all stars gently brighten and dim */
@keyframes pp-sparkle-breathe {
  0% {
    opacity: 0.25;
  }
  40% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.55;
  }
}

/* Layout helpers */
main {
  flex: 1;
}

.pp-container {
  max-width: 1700px;   /* or try 1800px if you want even wider */
  margin: 0 auto;
  padding: 0 32px;         /* slightly more breathing room */
}


/* Header */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.72));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.pp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.pp-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;   /* kill underline */
  color: inherit;          /* keep your white/orange colors */
  cursor: pointer;         /* feels clickable */
}
.pp-logo-wrap:link,
.pp-logo-wrap:visited,
.pp-logo-wrap:hover,
.pp-logo-wrap:active {
  text-decoration: none;
  color: inherit;
}
.pp-logo-wrap:hover .pp-logo-text {
  filter: brightness(1.08);
}

@keyframes pp-logo-pulse {
  0%   { transform: scale(0.96); opacity: 0.55; }
  50%  { transform: scale(1.04); opacity: 0.9; }
  100% { transform: scale(0.96); opacity: 0.55; }
}

.pp-logo-img {
  width: 60px;   /* was 48 */
  height: 60px;  /* was 48 */
  border-radius: 999px;
  object-fit: contain;
  display: block;
}

.pp-logo-text {
  position: relative;
  font-weight: 800;
  font-size: 32px;      /* was 26px */
  letter-spacing: 0.03em;
}

.pp-logo-main {
  color: #e5e7eb;
}

.pp-logo-accent {
  color: var(--pp-orange);
}

@keyframes pp-underline-glow {
  0%, 100% { opacity: 0.5; transform: scaleX(0.9); }
  50%      { opacity: 1; transform: scaleX(1); }
}

.pp-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.pp-nav a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 160ms ease, transform 160ms ease;
}

.pp-nav a:hover {
  color: #e5e7eb;
  transform: translateY(-1px);
}

.pp-nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(59, 130, 246, 0.18));
}

/* Hero */
.pp-hero {
  padding: 52px 0 36px;
}

.pp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.pp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #9ca3af;
}

.pp-hero-text h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 12px 0 12px;
}

.pp-hero-sub {
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: 15px;
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.pp-hero-note {
  font-size: 13px;
  color: #9ca3af;
}

.pp-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
}

.pp-metric-number {
  display: block;
  font-weight: 600;
}

.pp-metric-label {
  display: block;
  color: #9ca3af;
}

/* Buttons */
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pp-btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c, #38bdf8);
  background-size: 200% 200%;
  color: #0b1120;
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.5);
  animation: pp-btn-shift 5s ease-in-out infinite;
}

.pp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(249, 115, 22, 0.7);
}

.pp-btn-ghost {
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.pp-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

.pp-btn-pulse {
  position: relative;
}

.pp-btn-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(249, 115, 22, 0.5);
  opacity: 0;
  animation: pp-btn-pulse 2.4s ease-out infinite;
}

@keyframes pp-btn-shift {
  0%, 100% { background-position: 0 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes pp-btn-pulse {
  0%   { opacity: 0.4; transform: scale(0.96); }
  70%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

/* Hero card */
.pp-hero-card {
  background: var(--pp-card);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
  padding: 16px 16px 18px;
  font-size: 12px;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
/* Hero “glass” light sweep */
.pp-hero-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.13),
    rgba(249, 115, 22, 0.09),
    transparent
  );
  transform: translateX(-130%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: pp-hero-sheen 9s ease-in-out infinite;
}

@keyframes pp-hero-sheen {
  0%, 60% {
    transform: translateX(-130%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

.pp-card-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.pp-card-header-after {
  margin-top: 10px;
}

.pp-card-body {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98));
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  color: #e5e7eb;
  overflow-x: auto;
}

.pp-card-body-after {
  border-color: rgba(52, 211, 153, 0.85);
}

.pp-card-arrow {
  text-align: center;
  margin: 10px 0 6px;
  font-size: 11px;
  color: #f97316;
}

/* Sections */
.pp-section {
  padding: 40px 0;
}

.pp-section-alt {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.pp-section h2 {
  font-size: 22px;
  margin: 0 0 10px;
}
.pp-section h2 {
  font-size: 22px;
  margin: 0 0 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pp-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.0),
    rgba(249, 115, 22, 0.85),
    rgba(56, 189, 248, 0.75),
    rgba(56, 189, 248, 0.0)
  );
  opacity: 0.75;
  transform-origin: center;
  animation: pp-section-underline 2.6s ease-in-out infinite;
}

@keyframes pp-section-underline {
  0%, 100% {
    transform: scaleX(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.pp-section-sub {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 14px;
}
.pp-section-subtitle {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 14px;
}
/* Premium section */
.pp-section-premium {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.pp-section-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.10), transparent 55%),
    radial-gradient(circle at top right, rgba(249,115,22,0.10), transparent 55%);
  pointer-events: none;
}

.pp-section-premium .pp-container {
  position: relative;
  z-index: 1;
}

.pp-premium-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pp-premium-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}

.pp-premium-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  background: radial-gradient(circle at top right,
    rgba(30,64,175,0.65),
    rgba(15,23,42,0.95));
}

.pp-premium-hero-cta {
  max-width: 320px;
}

.pp-btn-premium-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: #f97316;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(249,115,22,0.85);
}

.pp-btn-premium-main:hover {
  transform: translateY(-1px);
}

.pp-btn-premium-arrow {
  font-size: 14px;
}

.pp-premium-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}

.pp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 880px) {
  .pp-pricing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

.pp-pricing-card {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.6);
  background: radial-gradient(circle at top,
    rgba(15,23,42,0.98),
    rgba(15,23,42,1));
  padding: 18px 18px 16px;
  box-shadow: 0 22px 45px rgba(15,23,42,0.9);
}

.pp-pricing-card-free {
  opacity: 0.95;
}

.pp-pricing-card-premium {
  border-color: rgba(249,115,22,0.9);
  box-shadow:
    0 0 0 1px rgba(249,115,22,0.4),
    0 26px 60px rgba(249,115,22,0.65);
}

.pp-pricing-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.pp-pricing-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.pp-pricing-badge {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.18);
  color: #facc15;
  background: radial-gradient(circle at top right,
    rgba(249,115,22,0.3),
    rgba(30,64,175,0.4));
}

.pp-pricing-title {
  font-size: 18px;
  font-weight: 600;
  margin: 2px 0 4px;
}

.pp-pricing-sub {
  font-size: 13px;
  color: #9ca3af;
  margin: 2px 0 10px;
}

.pp-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #e5e7eb;
}

.pp-pricing-list li {
  margin-bottom: 5px;
  line-height: 1.5;
}

.pp-pricing-footer {
  margin-top: 10px;
  font-size: 11px;
  color: #9ca3af;
}

/* Features */
.pp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pp-feature {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--pp-border);
  font-size: 14px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;

  /* micro tilt base */
  transform-style: preserve-3d;
  transition: transform 0.16s ease-out;
  will-change: transform;
}
/* Soft premium micro-tilt on hover */
.pp-feature {
  transform-style: preserve-3d;
  transition: transform 0.14s ease-out;
  will-change: transform;
}

.pp-feature:hover {
  transform: perspective(650px) rotateX(var(--pp-tilt-x, 0deg)) rotateY(var(--pp-tilt-y, 0deg));
}

/* Subtle hover glow for feature cards */
.pp-feature::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.14),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
  filter: blur(70px);
}

.pp-feature:hover::after {
  opacity: 1;
}

/* Use JS-driven CSS vars to tilt the card */
.pp-feature:hover {
  transform: perspective(650px)
             rotateX(var(--pp-tilt-x, 0deg))
             rotateY(var(--pp-tilt-y, 0deg));
}
.pp-feature h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.pp-float {
  animation: pp-float 8s ease-in-out infinite;
}

.pp-float:nth-child(2) {
  animation-delay: 0.8s;
}
.pp-float:nth-child(3) {
  animation-delay: 1.4s;
}
.pp-float:nth-child(4) {
  animation-delay: 2s;
}
.pp-float:nth-child(5) {
  animation-delay: 2.6s;
}
.pp-float:nth-child(6) {
  animation-delay: 3.2s;
}

@keyframes pp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Premium */
.pp-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.pp-premium-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  border: 1px solid var(--pp-border);
  padding: 16px 16px 18px;
  font-size: 14px;
}

.pp-premium-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.pp-premium-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-premium-card li {
  margin-bottom: 6px;
  color: #d1d5db;
  font-size: 14px;
}

.pp-premium-card-featured {
  position: relative;
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 32px rgba(249, 115, 22, 0.35);
}

.pp-premium-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.pp-premium-cta {
  margin-top: 14px;
}

.pp-premium-note {
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

/* Roadmap */
.pp-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pp-roadmap-column {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 16px;
  padding: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.pp-roadmap-column h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.pp-roadmap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.pp-roadmap-column li {
  margin-bottom: 6px;
  color: #d1d5db;
}

/* FAQ */
.pp-faq details {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  border: 1px solid var(--pp-border);
  margin-bottom: 8px;
  padding: 10px 12px;
}

.pp-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}

.pp-faq summary::-webkit-details-marker {
  display: none;
}

.pp-faq summary::after {
  content: "+";
  float: right;
  color: #9ca3af;
}

.pp-faq details[open] summary::after {
  content: "–";
}

.pp-faq p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #cbd5f5;
}

/* Footer */
.pp-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 14px 0 18px;
  margin-top: 24px;
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), #020617);
}

.pp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #9ca3af;
}

.pp-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  margin-left: 12px;
  font-size: 13px;
}

.pp-footer-links a:hover {
  color: #e5e7eb;
}

.pp-footer-brand {
  font-weight: 600;
  color: #e5e7eb;
}

/* Simple entrance animation for hero card */
.pp-fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: pp-fade-in 0.9s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes pp-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Subtle fade-up animation for key sections */
@keyframes pp-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-pricing-card,
.pp-roadmap-column,
.pp-faq details {
  animation: pp-fade-up 0.7s ease-out both;
}

/* Slight stagger so they don't all pop at once */
.pp-pricing-card:nth-child(2),
.pp-roadmap-column:nth-child(2),
.pp-faq details:nth-child(2) {
  animation-delay: 0.06s;
}
.pp-roadmap-column:nth-child(3),
.pp-faq details:nth-child(3) {
  animation-delay: 0.12s;
}
.pp-faq details:nth-child(4) {
  animation-delay: 0.18s;
}

/* Responsive */
@media (max-width: 768px) {
  .pp-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pp-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pp-hero-card {
    order: -1;
  }

  .pp-premium-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Mobile sticky upgrade bar */
.pp-mobile-upgrade {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.98), rgba(15,23,42,0.98));
  border-top: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 -10px 25px rgba(15,23,42,0.9);
  z-index: 40;
  display: none; /* only on mobile */
}

.pp-mobile-upgrade-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pp-mobile-upgrade-text {
  font-size: 12px;
  color: #e5e7eb;
}

.pp-mobile-upgrade-btn {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: #f97316;
  color: #111827;
  box-shadow: 0 10px 25px rgba(249,115,22,0.8);
}

/* Mobile-only adjustments */
@media (max-width: 768px) {
  body {
    padding-bottom: 56px;
  }

  .pp-mobile-upgrade {
    display: block;
  }
}

