/*
 * Paradise Boosts — Custom Theme Styling
 * Brand accent: #8ebff7  •  Discord boosts & Nitro store
 * This file is not overwritten by theme updates.
*/

/* ----------------------------------------------------------------
   1. Brand tokens & global polish
----------------------------------------------------------------- */
:root {
  --pb-accent: 142, 191, 247;          /* #8ebff7 */
  --pb-accent-deep: 74, 134, 214;      /* deeper blue for gradients */
  --pb-glow: rgba(142, 191, 247, 0.45);
  --pb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  position: relative;
}

/* Ambient brand aura layered behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 12% -10%, rgba(var(--pb-accent), 0.16), transparent 60%),
    radial-gradient(50rem 35rem at 100% 0%, rgba(var(--pb-accent-deep), 0.14), transparent 55%),
    radial-gradient(45rem 45rem at 50% 120%, rgba(var(--pb-accent), 0.08), transparent 60%);
  animation: pb-aura 16s ease-in-out infinite alternate;
}

@keyframes pb-aura {
  0%   { opacity: 0.75; transform: translateY(0) scale(1); }
  100% { opacity: 1;    transform: translateY(-1.5%) scale(1.04); }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(var(--pb-accent), 0.6), rgba(var(--pb-accent-deep), 0.6));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(var(--pb-accent), 0.9), rgba(var(--pb-accent-deep), 0.9));
  background-clip: padding-box;
}

::selection {
  background: rgba(var(--pb-accent), 0.35);
  color: #fff;
}

/* ----------------------------------------------------------------
   2. Entrance animations (applied to components on load)
----------------------------------------------------------------- */
@keyframes pb-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.components > .component,
.components .component {
  animation: pb-rise 0.7s var(--pb-ease) backwards;
}

.components > .component:nth-child(1) { animation-delay: 0.02s; }
.components > .component:nth-child(2) { animation-delay: 0.12s; }
.components > .component:nth-child(3) { animation-delay: 0.22s; }
.components > .component:nth-child(4) { animation-delay: 0.32s; }
.components > .component:nth-child(5) { animation-delay: 0.42s; }
.components > .component:nth-child(6) { animation-delay: 0.52s; }

header.component { animation: pb-rise 0.6s var(--pb-ease) backwards; }

/* ----------------------------------------------------------------
   3. Header & navigation
----------------------------------------------------------------- */
header .bg-card {
  background:
    linear-gradient(135deg, rgba(var(--pb-accent), 0.08), transparent 45%),
    rgba(var(--cl-card), 0.85);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}

header .bg-card:hover {
  border-color: rgba(var(--pb-accent), 0.25) !important;
  box-shadow: 0 10px 40px -18px var(--pb-glow);
}

/* Shop name gradient text */
header h1 {
  background: linear-gradient(100deg, #ffffff 30%, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Logo hover lift */
header img {
  transition: transform 0.4s var(--pb-ease), filter 0.4s var(--pb-ease);
}
header a:hover img {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 6px 14px var(--pb-glow));
}

/* Animated stat counters */
header .grid > div p:first-child {
  background: linear-gradient(180deg, #ffffff, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s var(--pb-ease);
}
header .grid > div:hover p:first-child {
  transform: translateY(-3px) scale(1.06);
}

/* Nav pill links */
nav a, nav button {
  transition: transform 0.25s var(--pb-ease), background-color 0.25s var(--pb-ease),
              color 0.25s var(--pb-ease), box-shadow 0.25s var(--pb-ease) !important;
}
nav a:hover, nav button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px var(--pb-glow);
}

/* Breathing room between the nav and the content below it */
header nav {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  header nav {
    margin-bottom: 2.25rem;
  }
}

/* ----------------------------------------------------------------
   4. Cards (products, feedback, faq, generic .bg-card)
----------------------------------------------------------------- */
.bg-card {
  transition: transform 0.35s var(--pb-ease), border-color 0.35s var(--pb-ease),
              box-shadow 0.35s var(--pb-ease), background-color 0.35s var(--pb-ease);
}

/* Product card glow + lift */
.flex.flex-wrap > div > a.group,
a.group.block {
  position: relative;
  transition: transform 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease),
              border-color 0.4s var(--pb-ease);
  will-change: transform;
}

a.group.block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(var(--pb-accent), 0.6), transparent 40%, rgba(var(--pb-accent-deep), 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--pb-ease);
  pointer-events: none;
}

a.group.block:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -24px var(--pb-glow);
  border-color: rgba(var(--pb-accent), 0.3) !important;
}
a.group.block:hover::after { opacity: 1; }

/* Product image zoom on hover */
a.group.block img {
  transition: transform 0.5s var(--pb-ease);
}
a.group.block:hover img {
  transform: scale(1.06);
}

/* Product price highlight */
a.group.block .text-accent-500 {
  transition: text-shadow 0.4s var(--pb-ease);
}
a.group.block:hover .text-accent-500 {
  text-shadow: 0 0 18px var(--pb-glow);
}

/* Badges pop */
.badges > div {
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.6);
  animation: pb-badge-pop 0.5s var(--pb-ease) both;
}
@keyframes pb-badge-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Feedback cards lift */
#feedbacks .bg-card:hover,
.component .bg-card.cursor-pointer:hover,
[x-data] > .bg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--pb-accent), 0.22) !important;
  box-shadow: 0 16px 40px -26px var(--pb-glow);
}

/* ----------------------------------------------------------------
   5. Buttons
----------------------------------------------------------------- */
a[class*="bg-accent-500"],
button[class*="bg-accent-500"] {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--pb-ease), box-shadow 0.3s var(--pb-ease),
              filter 0.3s var(--pb-ease) !important;
}

a[class*="bg-accent-500"]:hover,
button[class*="bg-accent-500"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px var(--pb-glow);
  filter: brightness(1.05);
}

/* Sheen sweep on accent buttons */
a[class*="bg-accent-500"]::before,
button[class*="bg-accent-500"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--pb-ease);
  pointer-events: none;
}
a[class*="bg-accent-500"]:hover::before,
button[class*="bg-accent-500"]:hover::before {
  left: 140%;
}

/* ----------------------------------------------------------------
   6. Section titles
----------------------------------------------------------------- */
h2.border-l-accent-500,
h2[class*="border-l-accent"] {
  position: relative;
  border-image: linear-gradient(180deg, rgb(var(--pb-accent)), rgb(var(--pb-accent-deep))) 1;
}

/* ----------------------------------------------------------------
   7. Search bar
----------------------------------------------------------------- */
.focus-within\:border-accent-500:focus-within {
  box-shadow: 0 0 0 4px rgba(var(--pb-accent), 0.12);
}

/* ----------------------------------------------------------------
   8. Announcement bar shimmer
----------------------------------------------------------------- */
.announcement .bg-accent-500 {
  background: linear-gradient(100deg, rgb(var(--pb-accent-deep)), rgb(var(--pb-accent)), rgb(var(--pb-accent-deep)));
  background-size: 200% 100%;
  animation: pb-shimmer 6s linear infinite;
  border: none !important;
  box-shadow: 0 6px 24px -14px var(--pb-glow);
}
@keyframes pb-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ----------------------------------------------------------------
   9. Footer
----------------------------------------------------------------- */
footer {
  transition: border-color 0.4s var(--pb-ease);
}
footer:hover {
  border-color: rgba(var(--pb-accent), 0.18) !important;
}
footer a.size-8 {
  transition: transform 0.3s var(--pb-ease);
}
footer a.size-8:hover {
  transform: translateY(-3px) scale(1.12);
}

/* ----------------------------------------------------------------
   10. FAQ chevrons & hover
----------------------------------------------------------------- */
.component [x-data] button .text-accent-500 {
  transition: transform 0.3s var(--pb-ease);
}

/* ----------------------------------------------------------------
   11. Reduced motion accessibility
----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  body::before { animation: none; }
}

/* ----------------------------------------------------------------
   12. Hero section (#hero text-block on the shop page)
----------------------------------------------------------------- */
#hero > div {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

#hero .bg-card {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem !important;
  border-color: rgba(var(--pb-accent), 0.18) !important;
  background:
    radial-gradient(40rem 22rem at 50% -20%, rgba(var(--pb-accent), 0.22), transparent 60%),
    linear-gradient(180deg, rgba(var(--pb-accent), 0.06), transparent 60%),
    rgba(var(--cl-card), 0.7);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 80px -50px var(--pb-glow);
}

@media (min-width: 768px) {
  #hero .bg-card { padding: 5rem 2rem !important; }
}

/* Floating orbs inside the hero */
#hero .bg-card::before,
#hero .bg-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
#hero .bg-card::before {
  width: 22rem; height: 22rem;
  top: -8rem; left: -6rem;
  background: rgba(var(--pb-accent), 0.25);
  animation: pb-float 9s ease-in-out infinite alternate;
}
#hero .bg-card::after {
  width: 18rem; height: 18rem;
  bottom: -7rem; right: -5rem;
  background: rgba(var(--pb-accent-deep), 0.22);
  animation: pb-float 11s ease-in-out infinite alternate-reverse;
}
@keyframes pb-float {
  from { transform: translate(0, 0); }
  to   { transform: translate(2rem, 1.5rem); }
}

/* Keep hero content above the orbs */
#hero .bg-card > * { position: relative; z-index: 1; }

/* Big gradient hero title */
#hero h2 {
  display: block !important;
  border: none !important;
  padding: 0 !important;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  background: linear-gradient(120deg, #ffffff 20%, rgb(var(--pb-accent)) 60%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pb-title-shine 6s linear infinite;
  filter: drop-shadow(0 6px 30px rgba(var(--pb-accent), 0.25));
}
@keyframes pb-title-shine {
  to { background-position: 200% center; }
}

#hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero buttons larger */
#hero a[class*="border"] {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 0.95rem;
}

/* Animated "trust" underline accent under hero */
#hero .bg-card > div > .flex {
  margin-top: 2rem !important;
}

/* ================================================================
   PARADISE BOOSTS — Landing components (eliteboosts-style)
   These classes are defined here because built.css does not
   include the Tailwind utilities used by the new components.
================================================================ */

/* Shared rounded-2xl helper (built.css only ships rounded-lg) */
.rounded-2xl { border-radius: 1rem; }

/* ---------- Shared section heading ---------- */
.pb-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--pb-accent));
  margin-bottom: 0.6rem;
}
.pb-section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  background: linear-gradient(120deg, #ffffff 35%, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pb-section-sub {
  margin: 0.9rem auto 0;
  max-width: 40rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---------- HERO ---------- */
.pb-hero-inner {
  background:
    radial-gradient(48rem 26rem at 50% -25%, rgba(var(--pb-accent), 0.28), transparent 60%),
    linear-gradient(180deg, rgba(var(--pb-accent), 0.06), transparent 55%),
    rgba(var(--cl-card), 0.55);
  backdrop-filter: blur(14px);
  border-color: rgba(var(--pb-accent), 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 40px 100px -55px var(--pb-glow);
}

/* faint grid texture */
.pb-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--pb-accent), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--pb-accent), 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}

.pb-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.pb-hero-orb-1 {
  width: 24rem; height: 24rem;
  top: -10rem; left: -8rem;
  background: rgba(var(--pb-accent), 0.30);
  animation: pb-float 10s ease-in-out infinite alternate;
}
.pb-hero-orb-2 {
  width: 20rem; height: 20rem;
  bottom: -9rem; right: -6rem;
  background: rgba(var(--pb-accent-deep), 0.26);
  animation: pb-float 13s ease-in-out infinite alternate-reverse;
}

.pb-badge { backdrop-filter: blur(6px); }
.pb-badge-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: rgb(var(--pb-accent));
  box-shadow: 0 0 0 0 var(--pb-glow);
  animation: pb-pulse-dot 1.8s ease-out infinite;
}
@keyframes pb-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(var(--pb-accent), 0.6); }
  100% { box-shadow: 0 0 0 0.6rem rgba(var(--pb-accent), 0); }
}

.pb-hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.pb-hero-title-accent {
  display: block;
  background: linear-gradient(120deg, rgb(var(--pb-accent)) 10%, #ffffff 55%, rgb(var(--pb-accent)) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pb-title-shine 6s linear infinite;
  filter: drop-shadow(0 6px 28px rgba(var(--pb-accent), 0.3));
}

/* Hero stats */
.pb-stat {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.1rem 0.5rem;
  transition: transform 0.35s var(--pb-ease), border-color 0.35s var(--pb-ease), background-color 0.35s var(--pb-ease);
}
.pb-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--pb-accent), 0.3);
  background: rgba(var(--pb-accent), 0.06);
}
.pb-stat-value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #fff, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pb-stat-label {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- FEATURES ---------- */
.pb-feature {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--pb-ease), border-color 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}
.pb-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(20rem 12rem at 50% -20%, rgba(var(--pb-accent), 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--pb-ease);
  pointer-events: none;
}
.pb-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--pb-accent), 0.3) !important;
  box-shadow: 0 24px 50px -28px var(--pb-glow);
}
.pb-feature:hover::before { opacity: 1; }
.pb-feature-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}
.pb-feature:hover .pb-feature-icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 24px -10px var(--pb-glow);
}
.pb-feature h3, .pb-feature p { position: relative; z-index: 1; }

/* ---------- STEPS ---------- */
.pb-step {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--pb-ease), border-color 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}
.pb-step:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--pb-accent), 0.3) !important;
  box-shadow: 0 24px 50px -28px var(--pb-glow);
}
.pb-step-num {
  transition: transform 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}
.pb-step:hover .pb-step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 0.4rem rgba(var(--pb-accent), 0.1);
}
/* connecting line between steps on desktop */
@media (min-width: 1024px) {
  .pb-steps { position: relative; }
  .pb-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.75rem;
    right: -0.5rem;
    width: 1rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--pb-accent), 0.5), transparent);
    z-index: 2;
  }
}

/* ---------- CTA ---------- */
.pb-cta {
  background:
    radial-gradient(40rem 22rem at 50% -30%, rgba(var(--pb-accent), 0.25), transparent 60%),
    linear-gradient(180deg, rgba(var(--pb-accent), 0.07), transparent 60%),
    rgba(var(--cl-card), 0.6);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 36px 90px -55px var(--pb-glow);
}
.pb-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(28rem 14rem at 50% 120%, rgba(var(--pb-accent), 0.22), transparent 70%);
  pointer-events: none;
  animation: pb-aura 12s ease-in-out infinite alternate;
}
.pb-cta-title {
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  background: linear-gradient(120deg, #ffffff 35%, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* size helpers used by new components not present in built.css */
.size-11 { width: 2.75rem; height: 2.75rem; }
.size-12 { width: 3rem; height: 3rem; }

/* ================================================================
   Discord Showcase + Boost Levels
================================================================ */

/* ---------- Discord chat mockup ---------- */
.pb-discord {
  background:
    radial-gradient(30rem 18rem at 80% -20%, rgba(var(--pb-accent), 0.14), transparent 65%),
    rgba(var(--cl-card), 0.7);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 70px -45px var(--pb-glow);
  transition: transform 0.5s var(--pb-ease), border-color 0.5s var(--pb-ease);
}
.pb-discord:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--pb-accent), 0.25) !important;
}

.pb-chat-msg {
  opacity: 0;
  animation: pb-chat-in 0.6s var(--pb-ease) forwards;
}
@keyframes pb-chat-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pb-typing-dot {
  width: 0.4rem; height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  animation: pb-typing 1.4s infinite ease-in-out;
}
.pb-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.pb-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pb-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* allow left-aligned section titles in split layouts */
.pb-section-title.\!mx-0 { margin-left: 0; margin-right: 0; }

/* ---------- Boost level perks ---------- */
.pb-perk {
  transition: transform 0.35s var(--pb-ease), border-color 0.35s var(--pb-ease), box-shadow 0.35s var(--pb-ease);
}
.pb-perk:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--pb-accent), 0.3) !important;
  box-shadow: 0 20px 44px -26px var(--pb-glow);
}
.pb-perk p:last-child {
  transition: color 0.3s var(--pb-ease);
}

/* ================================================================
   13. MOBILE EXPERIENCE  (<= 768px)
   Tighten spacing, improve tap targets, and disable hover-only
   effects that get "stuck" on touch devices.
================================================================ */

/* Stop horizontal scroll caused by glow orbs / wide gradients */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 768px) {
  /* Keep comfortable vertical rhythm between sections (was too tight) */
  .components .component .py-6,
  .components .component .lg\:py-8 { padding-top: 2.25rem; padding-bottom: 2.25rem; }

  /* Clear separation so stacked sections don't read as one block */
  .components > .component + .component { margin-top: 0.5rem; }

  /* Hero: balanced padding + readable title */
  #hero > div { padding-top: 1rem; padding-bottom: 1rem; }
  #hero .bg-card { padding: 2.5rem 1.25rem !important; }
  #hero h2 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.08; }

  .pb-hero-inner { padding: 2.75rem 1.25rem !important; }
  .pb-hero-title { font-size: clamp(2rem, 8.5vw, 2.9rem) !important; }
  .pb-hero-sub { font-size: 0.95rem !important; }

  /* Hero: more space between the copy block and the phone when stacked */
  .pb-hero .grid { gap: 2.5rem !important; }

  /* Hero stats: smaller gap + padding so 3 columns fit comfortably */
  .pb-hero-stats { gap: 0.5rem !important; margin-top: 2rem !important; }
  .pb-stat { padding: 0.85rem 0.35rem; }
  .pb-stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }

  /* Section heading spacing */
  .pb-section-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .pb-section-sub { font-size: 0.9rem; }
  .components .component .mb-8 { margin-bottom: 1.75rem; }

  /* Grids: a touch more gap so cards breathe */
  .components .component .grid.gap-4 { gap: 0.85rem; }

  /* Make hero / CTA buttons full width and easy to tap */
  #hero .flex.flex-wrap > a,
  .pb-cta .flex.flex-wrap > a,
  #cta .flex.flex-wrap > a {
    width: 100%;
    justify-content: center;
  }

  /* Comfortable tap height for all buttons */
  a[class*="bg-accent-500"],
  button[class*="bg-accent-500"],
  nav a, nav button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Discord showcase: stack neatly with breathing room */
  .pb-discord { margin-top: 1.5rem; }

  /* Boost level perk cards: a touch tighter inside but spaced apart */
  .pb-perk { padding: 0.95rem; }
  .pb-perk p:last-child { font-size: 0.95rem; }

  /* Steps full width when stacked */
  .pb-steps .pb-step { width: 100%; }

  /* CTA heading */
  .pb-cta-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .pb-cta { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  /* Phone: keep it from feeling cramped against the caption/buttons */
  .pb-phone { margin-top: 0.5rem; }
}

/* ----------------------------------------------------------------
   14. TOUCH DEVICES — neutralize sticky hover transforms
   On touch, :hover sticks after a tap. Only apply hover lifts on
   devices that actually have a hover-capable pointer (desktop).
----------------------------------------------------------------- */
@media (hover: none) {
  a.group.block:hover,
  .pb-feature:hover,
  .pb-step:hover,
  .pb-perk:hover,
  .pb-stat:hover,
  .pb-discord:hover,
  header .bg-card:hover,
  footer a.size-8:hover,
  nav a:hover, nav button:hover,
  a[class*="bg-accent-500"]:hover,
  button[class*="bg-accent-500"]:hover {
    transform: none;
    box-shadow: none;
  }
  a.group.block:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* ----------------------------------------------------------------
   15. Small phones (<= 380px) — extra safety for cramped widths
----------------------------------------------------------------- */
@media (max-width: 380px) {
  .pb-stat-value { font-size: 1.25rem; }
  .pb-stat-label { font-size: 0.55rem; }
  #hero h2, .pb-hero-title { font-size: 1.85rem !important; }
}

/* ================================================================
   16. CHECKOUT / CART PAGE
================================================================ */

/* Cart page title icon */
.pb-cart-title-icon {
  transition: transform 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}
.pb-cart .pb-cart-title-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px -10px var(--pb-glow);
}

/* Cart item rows: subtle lift + accent border on hover */
.pb-cart .flex.flex-col.gap-3 > [x-for] + div,
.pb-cart [x-for] ~ div,
.pb-cart .bg-card {
  transition: transform 0.3s var(--pb-ease), border-color 0.3s var(--pb-ease), box-shadow 0.3s var(--pb-ease);
}

/* Target the actual cart item cards */
.pb-cart .flex.flex-col.gap-3.md\:gap-4.lg\:gap-5 > template + div,
.pb-cart .flex.flex-col.gap-3.md\:gap-4.lg\:gap-5 > div {
  transition: transform 0.3s var(--pb-ease), border-color 0.3s var(--pb-ease), box-shadow 0.3s var(--pb-ease);
}
@media (hover: hover) {
  .pb-cart .flex.flex-col.gap-3.md\:gap-4.lg\:gap-5 > div:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--pb-accent), 0.25) !important;
    box-shadow: 0 14px 34px -24px var(--pb-glow);
  }
}

/* Product thumbnail in cart */
.pb-cart img.rounded-lg {
  transition: transform 0.4s var(--pb-ease);
}
@media (hover: hover) {
  .pb-cart .bg-card:hover img.rounded-lg { transform: scale(1.04); }
}

/* Quantity stepper styling */
.pb-cart .max-w-32 {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--pb-ease), box-shadow 0.3s var(--pb-ease);
}
.pb-cart .max-w-32:focus-within {
  border-color: rgba(var(--pb-accent), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--pb-accent), 0.12);
}
.pb-cart .max-w-32 button {
  transition: background-color 0.25s var(--pb-ease), color 0.25s var(--pb-ease);
}
.pb-cart .max-w-32 button:hover:not(:disabled) {
  color: var(--cl-t-accent, #fff);
}

/* ---------- Order summary panel ---------- */
.pb-cart-summary {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(24rem 14rem at 100% -20%, rgba(var(--pb-accent), 0.12), transparent 65%),
    rgba(var(--cl-card), 0.9) !important;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px -40px var(--pb-glow);
}
.pb-cart-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(var(--pb-accent)), transparent);
  opacity: 0.6;
}

/* Make the order summary stick while scrolling the cart on desktop */
@media (min-width: 1024px) {
  .pb-cart .lg\:w-1\/4 > .pb-cart-summary {
    position: sticky;
    top: 1.5rem;
  }
}

/* "Your Order" label upgrade */
.pb-cart-summary label {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

/* Checkout button — make it feel premium */
.pb-cart-summary button[type="submit"] {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px -14px var(--pb-glow);
  letter-spacing: 0.01em;
}
.pb-cart-summary button[type="submit"]:hover:enabled {
  filter: brightness(1.04);
}

/* Trust badges under checkout */
.pb-cart-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}
.pb-cart-trust > div { transition: color 0.25s var(--pb-ease); }
.pb-cart-trust > div:hover { color: rgba(255, 255, 255, 0.85); }

/* Empty cart state */
.pb-cart .text-center.text-t-primary\/75 {
  padding: 1.5rem 0;
}

/* ================================================================
   17. PRODUCT PAGE  (/product/...)
================================================================ */

/* Left column wrapper + right form panel as glassy cards */
.pb-product .bg-card {
  transition: border-color 0.4s var(--pb-ease), box-shadow 0.4s var(--pb-ease);
}

/* Product title header bar — subtle gradient + accent underline */
.pb-product .bg-background\/35 {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--pb-accent), 0.08), transparent 50%),
    rgba(var(--cl-background), 0.45) !important;
}

/* Product title gradient text */
.pb-product h1 {
  background: linear-gradient(100deg, #ffffff 35%, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

/* Image area: gentle zoom on hover + framing */
.pb-product .splide,
.pb-product .aspect-video {
  overflow: hidden;
}
.pb-product .splide__slide img,
.pb-product .aspect-video > img {
  transition: transform 0.6s var(--pb-ease);
}
@media (hover: hover) {
  .pb-product .aspect-video:hover img { transform: scale(1.04); }
}

/* Price block — make it pop */
.pb-product .text-3xl {
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff, rgb(var(--pb-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description tab buttons */
.pb-product [x-data] button.rounded-lg {
  transition: transform 0.2s var(--pb-ease), background-color 0.25s var(--pb-ease), color 0.25s var(--pb-ease);
}
@media (hover: hover) {
  .pb-product [x-data] button.rounded-lg:hover { transform: translateY(-1px); }
}

/* Variant option buttons — accent ring + lift on hover/active */
.pb-product form button[class*="border-transparent"],
.pb-product form button[class*="rounded-lg"] {
  transition: transform 0.25s var(--pb-ease), border-color 0.25s var(--pb-ease),
              background-color 0.25s var(--pb-ease), box-shadow 0.25s var(--pb-ease);
}
@media (hover: hover) {
  .pb-product form .flex.flex-col.gap-2 > button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px -18px var(--pb-glow);
  }
}
/* Highlight the selected variant more strongly */
.pb-product form button.\!border-accent-500,
.pb-product form button[class*="!border-accent-500"] {
  box-shadow: inset 0 0 0 1px rgba(var(--pb-accent), 0.4), 0 8px 22px -16px var(--pb-glow);
  background: rgba(var(--pb-accent), 0.06) !important;
}

/* Quantity stepper (shared look with cart) */
.pb-product .focus-within\:border-accent-500 {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--pb-ease), box-shadow 0.3s var(--pb-ease);
}
.pb-product .focus-within\:border-accent-500:focus-within {
  border-color: rgba(var(--pb-accent), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--pb-accent), 0.12);
}

/* Add to Cart / Buy Now buttons — premium feel */
.pb-product form .flex.flex-col.gap-4 button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  letter-spacing: 0.01em;
}
.pb-product form .flex.flex-col.gap-4 button[class*="bg-accent-500"] {
  box-shadow: 0 14px 30px -14px var(--pb-glow);
}
@media (hover: hover) {
  .pb-product form .flex.flex-col.gap-4 button:hover:enabled {
    transform: translateY(-2px);
  }
}

/* Addon rows */
.pb-product form .flex.flex-col.gap-2 > .flex.items-center.justify-between {
  transition: border-color 0.3s var(--pb-ease), background-color 0.3s var(--pb-ease);
}
@media (hover: hover) {
  .pb-product form .flex.flex-col.gap-2 > .flex.items-center.justify-between:hover {
    border-color: rgba(var(--pb-accent), 0.25) !important;
  }
}

/* Live stats (viewers / sales) — accent the icons */
.pb-product .text-accent-400 { filter: drop-shadow(0 0 6px rgba(var(--pb-accent), 0.4)); }

/* "Commonly Bought Together" heading accent */
.pb-product h2.text-xl {
  padding-left: 0.6rem;
  border-left: 4px solid rgb(var(--pb-accent));
}

/* Sales notification toast polish */
.pb-product ~ [x-data] .bg-card,
[x-data] .shadow-2xl.rounded-lg {
  backdrop-filter: blur(10px);
  border-color: rgba(var(--pb-accent), 0.2) !important;
}

/* Sticky product form on desktop so it stays visible while reading */
@media (min-width: 1024px) {
  .pb-product .lg\:w-2\/5 > [x-data] {
    position: sticky;
    top: 1.5rem;
  }
}

/* ================================================================
   18. MOBILE HAMBURGER MENU
================================================================ */
.pb-burger {
  transition: transform 0.25s var(--pb-ease), background-color 0.25s var(--pb-ease), color 0.25s var(--pb-ease);
}
.pb-burger:active { transform: scale(0.92); }

.pb-mobile-menu {
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px -24px var(--pb-glow);
}
.pb-mobile-menu a,
.pb-mobile-menu button {
  transition: background-color 0.2s var(--pb-ease), color 0.2s var(--pb-ease);
}

/* ================================================================
   19. HERO PHONE MOCKUP — animated purchase flow
================================================================ */
.pb-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  perspective: 1200px;
}

.pb-phone-frame {
  position: relative;
  width: 270px;
  height: 560px;
  border-radius: 2.6rem;
  padding: 0.7rem;
  background: linear-gradient(160deg, #1a2233, #0a0e16);
  box-shadow:
    0 0 0 2px rgba(var(--pb-accent), 0.18),
    0 40px 80px -30px rgba(0, 0, 0, 0.8),
    0 20px 60px -20px var(--pb-glow);
  animation: pb-phone-float 6s ease-in-out infinite alternate;
}
@keyframes pb-phone-float {
  from { transform: translateY(0) rotateX(3deg) rotateY(-6deg); }
  to   { transform: translateY(-14px) rotateX(3deg) rotateY(-2deg); }
}

.pb-phone-notch {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 1.3rem;
  background: #0a0e16;
  border-radius: 0 0 1rem 1rem;
  z-index: 5;
}

.pb-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(20rem 14rem at 50% -10%, rgba(var(--pb-accent), 0.16), transparent 60%),
    rgba(var(--cl-background), 0.96);
  display: flex;
  flex-direction: column;
}

.pb-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.2rem 0.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}
.pb-phone-signal { display: inline-flex; gap: 0.3rem; }

.pb-phone-appbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pb-phone-logo {
  display: inline-flex;
  width: 1.5rem; height: 1.5rem;
  align-items: center; justify-content: center;
  border-radius: 0.5rem;
  background: rgba(var(--pb-accent), 0.15);
  color: rgb(var(--pb-accent));
  font-size: 0.7rem;
}
.pb-phone-shop { font-size: 0.8rem; font-weight: 700; color: #fff; flex: 1; }
.pb-phone-cart { position: relative; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.pb-phone-cart-count {
  position: absolute;
  top: -0.5rem; right: -0.55rem;
  min-width: 0.85rem; height: 0.85rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: rgb(var(--pb-accent));
  color: #06101d;
  font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.pb-phone-progress {
  display: flex; gap: 0.3rem; justify-content: center;
  padding: 0.7rem 0 0.4rem;
}
.pb-phone-dot {
  width: 1.1rem; height: 0.22rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.4s var(--pb-ease);
}
.pb-phone-dot.active { background: rgb(var(--pb-accent)); }

.pb-phone-body { position: relative; flex: 1; overflow: hidden; }

.pb-screen {
  position: absolute;
  inset: 0;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pb-screen-center { align-items: center; justify-content: center; text-align: center; gap: 0.6rem; }

.pb-screen-title { font-size: 0.9rem; font-weight: 700; color: #fff; }
.pb-screen-sub { font-size: 0.7rem; color: rgba(255,255,255,0.55); }
.pb-screen-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* product rows */
.pb-prod {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s var(--pb-ease), border-color 0.2s var(--pb-ease), background 0.2s var(--pb-ease);
}
.pb-prod.tapped {
  transform: scale(0.97);
  border-color: rgba(var(--pb-accent), 0.6);
  background: rgba(var(--pb-accent), 0.1);
}
.pb-prod-ico {
  width: 2.1rem; height: 2.1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.6rem;
  background: rgba(var(--pb-accent), 0.14);
  color: rgb(var(--pb-accent));
  font-size: 0.8rem;
}
.pb-prod-info { flex: 1; min-width: 0; }
.pb-prod-name { font-size: 0.74rem; font-weight: 600; color: #fff; }
.pb-prod-stock { font-size: 0.6rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.25rem; }
.pb-prod-price { font-size: 0.78rem; font-weight: 700; color: rgb(var(--pb-accent)); }
.pb-dot-live {
  width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pb-pulse-dot 1.8s ease-out infinite;
}

/* product detail */
.pb-detail-img {
  width: 100%; height: 6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.85rem;
  background: rgba(var(--pb-accent), 0.1);
  color: rgb(var(--pb-accent));
  font-size: 2rem;
}
.pb-detail-img.sm { height: 4rem; font-size: 1.5rem; }
.pb-detail-name { font-size: 0.85rem; font-weight: 700; color: #fff; }
.pb-detail-price { font-size: 0.95rem; font-weight: 800; color: rgb(var(--pb-accent)); }

.pb-qty {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.7rem;
  overflow: hidden;
}
.pb-qty-btn {
  width: 2.4rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 1rem; font-weight: 700;
  transition: background 0.15s var(--pb-ease), transform 0.15s var(--pb-ease);
}
.pb-qty-btn.tapped { background: rgb(var(--pb-accent)); color: #06101d; transform: scale(0.9); }
.pb-qty-val { flex: 1; text-align: center; font-size: 0.9rem; font-weight: 700; color: #fff; }

/* summary rows */
.pb-summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.74rem; color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pb-accent { color: rgb(var(--pb-accent)); font-weight: 700; }

.pb-buy {
  margin-top: 0.6rem;
  width: 100%;
  padding: 0.65rem;
  border-radius: 0.7rem;
  background: rgb(var(--pb-accent));
  color: #06101d;
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  box-shadow: 0 10px 24px -10px var(--pb-glow);
  transition: transform 0.15s var(--pb-ease), filter 0.15s var(--pb-ease);
}
.pb-buy.tapped { transform: scale(0.95); filter: brightness(1.1); }

/* payment icons */
.pb-pay-icons { display: flex; gap: 0.8rem; font-size: 1.4rem; color: rgba(255,255,255,0.6); }
.pb-pay-icons .fa-cc-visa { color: #1a1f71; filter: brightness(1.8); }
.pb-pay-icons .fa-bitcoin { color: #f7931a; }

/* spinner */
.pb-spinner {
  width: 2.4rem; height: 2.4rem;
  border: 3px solid rgba(var(--pb-accent), 0.2);
  border-top-color: rgb(var(--pb-accent));
  border-radius: 50%;
  animation: pb-spin 0.8s linear infinite;
}
@keyframes pb-spin { to { transform: rotate(360deg); } }

/* delivered check */
.pb-check {
  width: 3.4rem; height: 3.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 1.4rem;
  border: 2px solid rgba(34, 197, 94, 0.5);
}
.pb-check.pop { animation: pb-check-pop 0.5s var(--pb-ease) both; }
@keyframes pb-check-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.pb-delivery {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px dashed rgba(var(--pb-accent), 0.4);
  background: rgba(var(--pb-accent), 0.06);
}
.pb-delivery-label { font-size: 0.62rem; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
.pb-delivery-code {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem; font-weight: 700;
  color: rgb(var(--pb-accent));
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* cursor hand */
.pb-cursor {
  position: absolute;
  font-size: 1.1rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
  opacity: 0;
  transform: translateY(6px) scale(1.2);
  transition: opacity 0.2s var(--pb-ease), transform 0.2s var(--pb-ease);
  pointer-events: none;
  bottom: 30%;
  left: 35%;
}
.pb-cursor.right { bottom: 42%; left: auto; right: 22%; }
.pb-cursor.center { bottom: 26%; left: 50%; }
.pb-cursor.show { opacity: 1; transform: translateY(0) scale(1); }

/* confetti */
.pb-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.pb-confetti-bit {
  position: absolute;
  top: -10%;
  width: 0.4rem; height: 0.7rem;
  border-radius: 1px;
  opacity: 0;
  animation: pb-confetti-fall 1.6s ease-in forwards;
}
@keyframes pb-confetti-fall {
  0% { top: -10%; opacity: 1; transform: rotate(0deg); }
  100% { top: 110%; opacity: 0; transform: rotate(360deg); }
}

.pb-phone-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(var(--pb-accent));
  letter-spacing: 0.01em;
}

/* mobile sizing */
@media (max-width: 400px) {
  .pb-phone-frame { width: 240px; height: 500px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pb-phone-frame { animation: none; }
  .pb-confetti-bit { display: none; }
}

/* ================================================================
   20. HERO PHONE — extended flow (instructions, redeem, tracker)
================================================================ */

/* Redeem globe logo variant */
.pb-phone-logo.redeem { background: rgba(var(--pb-accent), 0.15); color: rgb(var(--pb-accent)); }

/* Delivered header (compact, since more content follows) */
.pb-delivered-head { display: flex; align-items: center; gap: 0.6rem; }
.pb-delivered-head .pb-check { width: 2.4rem; height: 2.4rem; font-size: 1rem; }

/* Instructions block */
.pb-instructions {
  margin-top: 0.4rem;
  padding: 0.75rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.pb-instructions-title {
  font-size: 0.66rem; font-weight: 700; color: #fff;
  margin-bottom: 0.55rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.pb-instructions-title i { color: rgb(var(--pb-accent)); }
.pb-instruction-row {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.15rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0;
}
.pb-instruction-row + .pb-instruction-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pb-instruction-row > span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
}
.pb-link { color: rgb(var(--pb-accent)); font-weight: 600; word-break: break-all; }

/* Browser URL bar */
.pb-url-bar {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.2rem;
}
.pb-url-bar i { color: #50dc82; font-size: 0.55rem; }

/* Redeem panel */
.pb-redeem-title { font-size: 0.95rem; font-weight: 800; color: #fff; }
.pb-field {
  display: flex; align-items: center;
  min-height: 2.1rem;
  padding: 0 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  color: #fff;
  transition: border-color 0.3s var(--pb-ease);
}
.pb-field.filled { border-color: rgba(var(--pb-accent), 0.5); }
.pb-caret {
  width: 1px; height: 0.9rem;
  background: rgb(var(--pb-accent));
  animation: pb-caret-blink 1s step-end infinite;
}
@keyframes pb-caret-blink { 50% { opacity: 0; } }

.pb-buy.redeem { margin-top: 0.7rem; }

/* Order tracker */
.pb-order-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.4rem;
}
.pb-order-id { font-size: 0.78rem; font-weight: 700; color: #fff; }
.pb-status-badge {
  font-size: 0.55rem; font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pb-status-badge.progress { background: rgba(234, 179, 8, 0.18); color: #eab308; }
.pb-status-badge.done { background: rgba(34, 197, 94, 0.18); color: #50dc82; }

.pb-order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.pb-order-stat {
  padding: 0.5rem 0.3rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pb-order-label { display: block; font-size: 0.52rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.pb-order-val { display: block; font-size: 1rem; font-weight: 800; color: #fff; margin-top: 0.15rem; }
.pb-order-val.green { color: #50dc82; }
.pb-order-val.red { color: #ff5a5a; }

.pb-log-title {
  font-size: 0.62rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 0.3rem;
  margin-top: 0.2rem;
}
.pb-log-title i { color: rgb(var(--pb-accent)); }
.pb-log {
  flex: 1;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pb-log-line {
  font-family: ui-monospace, monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
  animation: pb-chat-in 0.3s var(--pb-ease) both;
}
.pb-log-line.done { color: #50dc82; font-weight: 700; }
.pb-log-line.done i { margin-right: 0.2rem; }