:root {
  --bg-black: #050505;
  --surface-dark: #121212;

  --brand-purple: #C320AD;
  --brand-cyan: #64E9FF;
  --brand-gradient: linear-gradient(135deg, #C320AD 0%, #3B82F6 100%);
  --text-white: #FFFFFF;
  --text-muted: #A0A0A0;

  --border-purple: rgba(195, 32, 173, 0.50);
  --shadow-purple: 0 0 18px rgba(195, 32, 173, 0.32);
  --shadow-purple-strong: 0 0 26px rgba(195, 32, 173, 0.55);
  --shadow-cyan: 0 0 18px rgba(100, 233, 255, 0.28);
  --shadow-cyan-strong: 0 0 28px rgba(100, 233, 255, 0.45);
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-black);
  color: var(--text-white);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
}

h1, h2, h3, h4, h5, h6,
.font-orbitron {
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  letter-spacing: 0.06em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(195, 32, 173, 0.16), rgba(5, 5, 5, 0) 60%),
    radial-gradient(700px 420px at 85% 30%, rgba(59, 130, 246, 0.10), rgba(5, 5, 5, 0) 62%),
    radial-gradient(600px 360px at 60% 90%, rgba(100, 233, 255, 0.08), rgba(5, 5, 5, 0) 58%),
    linear-gradient(180deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 1));
  transform: translateY(calc(var(--pb-scroll, 0px) * -0.08));
  will-change: transform;
}

a {
  color: var(--brand-purple);
  text-decoration: none;
}

a:hover {
  color: #c77dff;
  text-decoration: underline;
}

.pb-highlight {
  color: var(--brand-cyan) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-primary,
.link-primary {
  color: var(--brand-purple) !important;
}

.border-primary {
  border-color: var(--brand-purple) !important;
}

/* Bootstrap button overrides (replace all blue accents with purple) */
.btn-primary {
  background: var(--brand-gradient) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: var(--text-white) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  filter: brightness(1.05) saturate(1.08);
  box-shadow: var(--shadow-purple-strong) !important;
}

.btn-outline-primary {
  color: var(--brand-purple) !important;
  border-color: var(--brand-purple) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: rgba(157, 78, 221, 0.14) !important;
  box-shadow: var(--shadow-purple) !important;
  color: var(--text-white) !important;
}

.pb-btn-glow {
  box-shadow: var(--shadow-purple);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pb-btn-glow:hover {
  box-shadow: var(--shadow-purple-strong);
  transform: translateY(-1px);
}

.pb-btn-glow:active {
  transform: translateY(0);
}

/* Store page layout polish */
.pb-store-count {
  background: rgba(157,78,221,0.16);
  border: 1px solid rgba(157,78,221,0.50);
  color: rgba(255,255,255,0.88);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.pb-store-search .pb-store-btn {
  min-width: 10rem;
}

.pb-store-card {
  display: flex;
  flex-direction: column;
}

.pb-store-desc {
  flex: 1 1 auto;
  min-height: 3.75rem;
}

.pb-store-actions {
  margin-top: auto;
}

.pb-store-card .btn {
  min-height: 44px;
}

.pb-navbar {
  background: rgba(5, 5, 5, 0.85) !important;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--brand-purple);
  box-shadow: var(--shadow-purple);
}

.pb-navbar .navbar-brand img {
  display: block;
  max-height: 50px;
  height: auto;
  width: auto;
  background: transparent !important;
  border: 0 !important;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 5px var(--brand-purple)) drop-shadow(0 0 12px rgba(100, 233, 255, 0.10));
  clip-path: inset(2px 2px 2px 2px round 18px);
  transition: filter 200ms ease, transform 200ms ease;
}

.pb-navbar .navbar-brand:hover img {
  filter: drop-shadow(0 0 9px var(--brand-purple)) drop-shadow(0 0 18px rgba(100, 233, 255, 0.16));
  transform: translateY(-1px);
}

/* Cart badge pop */
.pb-cart-badge {
  transform-origin: 50% 50%;
}

.pb-cart-badge.pb-cart-pop {
  animation: pb-cart-pop 260ms ease-in-out;
}

@keyframes pb-cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.pb-navbar .nav-link {
  color: rgba(237, 237, 237, 0.82) !important;
}

.pb-navbar .nav-link:hover,
.pb-navbar .nav-link:focus {
  color: var(--text-white) !important;
  text-shadow: 0 0 12px rgba(195, 32, 173, 0.55);
}

/* Right-side auth cluster (Profile + Logout) */
.pb-nav-auth .nav-link {
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .pb-nav-auth .d-flex {
    justify-content: flex-start;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.pb-surface {
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-purple);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pb-card {
  position: relative;
  overflow: hidden;
}

.pb-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(195, 32, 173, 0.22) inset;
  transition: opacity 220ms ease;
}

.pb-card:hover {
  transform: scale(1.02);
  border-color: rgba(195, 32, 173, 0.75);
  box-shadow: 0 0 28px rgba(195, 32, 173, 0.22), 0 10px 30px rgba(0, 0, 0, 0.45);
}

.pb-card:hover::after {
  opacity: 1;
  animation: pb-border-pulse 1.25s ease-in-out infinite;
}

.pb-section {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

/* Home hero */
.pb-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  /* Full-bleed even inside Layout's .container wrapper */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.pb-hero-center .pb-hero-inner {
  text-align: center;
}

.pb-hero-center-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.pb-hero-center .pb-hero-brand-wrap {
  display: flex;
  justify-content: center;
}

.pb-hero-center .lead {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.pb-hero-center h1 {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.pb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 760px at 18% 12%, rgba(195, 32, 173, 0.22), rgba(0, 0, 0, 0) 64%),
    radial-gradient(980px 560px at 82% 18%, rgba(100, 233, 255, 0.14), rgba(0, 0, 0, 0) 66%),
    radial-gradient(900px 520px at 58% 92%, rgba(46, 243, 210, 0.10), rgba(0,0,0,0) 62%),
    conic-gradient(from 210deg at 50% 40%, rgba(59, 130, 246, 0.12), rgba(195, 32, 173, 0.0), rgba(100, 233, 255, 0.10), rgba(59, 130, 246, 0.12)),
    linear-gradient(180deg, rgba(2, 2, 2, 1), rgba(5, 5, 5, 1));
  filter: saturate(1.10) contrast(1.06);
  animation: pb-hero-shift 14s ease-in-out infinite alternate;
}

.pb-hero-grid {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.0) 72%);
  opacity: 0.25;
  transform: translateY(calc(var(--pb-scroll, 0px) * -0.06));
  will-change: transform;
}

.pb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: soft-light;
}

@keyframes pb-hero-shift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.02) translate3d(0, -10px, 0); }
}

.pb-hero .display-5 {
  letter-spacing: 0.04em;
  text-shadow: 0 0 26px rgba(195, 32, 173, 0.22);
}

.pb-hero-brand-wrap {
  margin: 0.9rem 0 0.9rem;
}

/* (removed) pb-hero-brand-pill: old hero container */

.pb-hero-brand {
  display: block;
  width: min(380px, 92%);
  height: auto;
  background: transparent;
  filter:
    drop-shadow(0 0 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(195, 32, 173, 0.22))
    drop-shadow(0 0 22px rgba(100, 233, 255, 0.14));
}

.pb-hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(235,235,235,0.70);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.pb-hero-badge {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(100, 233, 255, 0.22) !important;
  color: rgba(255,255,255,0.84) !important;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.pb-hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(100,233,255,0.14), rgba(195,32,173,0.08) 40%, rgba(5,5,5,0) 72%);
  filter: blur(0.2px);
  transform: translateY(calc(var(--pb-scroll, 0px) * -0.04));
  will-change: transform;
  pointer-events: none;
}

.pb-hero-float {
  position: relative;
  padding: 2.2rem 1.8rem 1.6rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 0;
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025) inset,
    0 22px 70px rgba(0,0,0,0.55);
  transform: translateZ(0);
}

.pb-hero-inner {
  position: relative;
  z-index: 1;
}

.pb-hero-float {
  z-index: 2;
}

.pb-hero-float-ring {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(195,32,173,0.0), rgba(100,233,255,0.0));
  pointer-events: none;
}

.pb-hero-float::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(100,233,255,0.55), rgba(195,32,173,0.55));
  opacity: 0.12;
  filter: blur(18px);
  pointer-events: none;
}

.pb-hero-logo {
  display: block;
  width: min(360px, 100%);
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(195, 32, 173, 0.18));
}

.pb-hero-device {
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  width: min(360px, 100%);
  padding: 1.25rem 0;
}

.pb-hero-device svg {
  filter: drop-shadow(0 0 18px rgba(100, 233, 255, 0.12)) drop-shadow(0 0 18px rgba(195, 32, 173, 0.16));
  opacity: 0.95;
}

.pb-hero-float-caption {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(100, 233, 255, 0.92);
  text-shadow: 0 0 14px rgba(100, 233, 255, 0.14);
}

/* Teal-to-blue primary CTA (Home hero only) */
.pb-btn-teal {
  background: linear-gradient(135deg, rgba(100,233,255,1) 0%, rgba(46,243,210,1) 55%, rgba(59,130,246,1) 100%) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: var(--shadow-cyan-strong), 0 18px 44px rgba(0,0,0,0.45);
}

.pb-btn-teal:hover,
.pb-btn-teal:focus {
  filter: brightness(1.06) saturate(1.10);
  box-shadow: 0 0 34px rgba(100,233,255,0.48), 0 0 24px rgba(46,243,210,0.30), 0 18px 52px rgba(0,0,0,0.55) !important;
}

/* Glass brand block (no images, no boxes) */
.pb-hero-glass-brand {
  display: grid;
  place-items: center;
  gap: 0.55rem;
  margin: 0 auto 0.9rem;
}

.pb-o-ring {
  width: 86px;
  height: 86px;
  filter:
    drop-shadow(0 0 14px rgba(100,233,255,0.28))
    drop-shadow(0 0 26px rgba(46,243,210,0.18));
}

.pb-hero-glass-title {
  font-size: 1.28rem;
  letter-spacing: 0.10em;
  color: rgba(100,233,255,0.96);
  text-shadow: 0 0 18px rgba(100,233,255,0.18);
}

.pb-hero-glass-reg {
  font-size: 0.9em;
  opacity: 0.88;
  margin-left: 0.2rem;
}

/* Service cards */
.pb-service-card {
  display: block;
  height: 100%;
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.70);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 14px 38px rgba(0,0,0,0.40);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  text-decoration: none !important;
}

.pb-service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(100,233,255,0.85), rgba(195,32,173,0.55));
  opacity: 0;
  filter: blur(14px);
  transition: opacity 200ms ease;
  pointer-events: none;
}

.pb-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100,233,255,0.55);
  box-shadow: var(--shadow-cyan), 0 14px 38px rgba(0,0,0,0.55);
}

.pb-service-card:hover::before {
  opacity: 0.22;
}

.pb-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(100,233,255,0.22);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 0 16px rgba(100,233,255,0.12);
  margin-bottom: 1.1rem;
}

.pb-service-title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.92);
}

.pb-service-desc {
  margin-bottom: 1.2rem;
}

.pb-service-cta {
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  letter-spacing: 0.08em;
  color: rgba(100,233,255,0.92);
}

/* Work grid */
.pb-work-hz {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pb-work-hz::-webkit-scrollbar {
  height: 10px;
}
.pb-work-hz::-webkit-scrollbar-thumb {
  background: rgba(195,32,173,0.35);
  border-radius: 999px;
}
.pb-work-hz::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}

.pb-work-card {
  scroll-snap-align: start;
  border-radius: 18px;
  background: rgba(18,18,18,0.70);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 16px 40px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
  color: inherit;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pb-work-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100,233,255,0.45);
  box-shadow: var(--shadow-cyan), 0 16px 40px rgba(0,0,0,0.55);
}

.pb-work-media {
  height: 190px;
  position: relative;
  background-image: var(--pb-photo);
  background-size: cover;
  background-position: center;
}

.pb-work-card:not(.pb-work-photo) .pb-work-media {
  background-image: none;
}

.pb-work-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 260px at 18% 28%, var(--pb-accent, rgba(100,233,255,0.22)), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.68));
  pointer-events: none;
}

.pb-work-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 30% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.0) 70%);
}

.pb-work-meta {
  padding: 1rem 1rem 1.1rem;
}

.pb-ig-embed .pb-ig-frame {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(18,18,18,0.65);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 16px 40px rgba(0,0,0,0.45);
  overflow: hidden;
}

.pb-ig-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(900px 420px at 20% 25%, rgba(195,32,173,0.18), rgba(0,0,0,0) 60%),
    radial-gradient(900px 420px at 85% 55%, rgba(100,233,255,0.14), rgba(0,0,0,0) 62%),
    linear-gradient(135deg, rgba(18,18,18,0.90), rgba(18,18,18,0.55));
}

.pb-work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.pb-work-tile {
  grid-column: span 12;
  min-height: 180px;
  border-radius: 18px;
  background:
    radial-gradient(600px 240px at 20% 20%, var(--pb-work-accent, rgba(100,233,255,0.20)), rgba(18,18,18,0) 60%),
    linear-gradient(135deg, rgba(18,18,18,0.86), rgba(18,18,18,0.55));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 18px 42px rgba(0,0,0,0.42);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.pb-work-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pb-work-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  transition: opacity 200ms ease, transform 240ms ease, filter 240ms ease;
}

.pb-work-photo:hover::before {
  opacity: 0.75;
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.10);
}

.pb-work-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(100,233,255,0.40);
  box-shadow: var(--shadow-cyan), 0 18px 42px rgba(0,0,0,0.55);
}

.pb-work-overlay {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .pb-work-tile { min-height: 220px; }
  .pb-work-tile:nth-child(1) { grid-column: span 7; }
  .pb-work-tile:nth-child(2) { grid-column: span 5; }
  .pb-work-tile:nth-child(3) { grid-column: span 5; }
  .pb-work-tile:nth-child(4) { grid-column: span 7; }
  .pb-work-tile:nth-child(5) { grid-column: span 6; }
  .pb-work-tile:nth-child(6) { grid-column: span 6; }
}

/* Booking UI controls */
.pb-input {
  background: rgba(18, 18, 18, 0.75) !important;
  color: var(--text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.pb-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.pb-input:focus {
  border-color: rgba(157, 78, 221, 0.85) !important;
  box-shadow: 0 0 0 0.18rem rgba(157, 78, 221, 0.18), var(--shadow-purple) !important;
}

.pb-chip {
  border: 1px solid rgba(157, 78, 221, 0.35);
  background: rgba(18, 18, 18, 0.55);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  letter-spacing: 0.06em;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pb-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
  border-color: rgba(157, 78, 221, 0.65);
}

.pb-chip-active {
  background: rgba(157, 78, 221, 0.16);
  border-color: rgba(157, 78, 221, 0.9);
  box-shadow: var(--shadow-purple-strong);
}

/* Success "receipt" pop */
.pb-receipt-pop {
  animation: pb-pop 520ms cubic-bezier(.2,.9,.2,1.0) both;
}

@keyframes pb-pop {
  0%   { transform: scale(0.92); filter: blur(0.2px); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Fade-in on enter */
.pb-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.pb-fade.pb-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pb-border-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(195, 32, 173, 0.20) inset, 0 0 18px rgba(195, 32, 173, 0.18); }
  50%      { box-shadow: 0 0 0 1px rgba(195, 32, 173, 0.46) inset, 0 0 28px rgba(195, 32, 173, 0.30); }
}

/* CTA pulse */
.pb-pulse {
  animation: pb-cta-pulse 1.6s ease-in-out infinite;
}

@keyframes pb-cta-pulse {
  0%, 100% { box-shadow: var(--shadow-purple); }
  50%      { box-shadow: var(--shadow-purple-strong); }
}

.footer.pb-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55) !important;
}

.footer.pb-footer a {
  color: rgba(157, 78, 221, 0.85);
}

.footer.pb-footer a:hover {
  color: #c77dff;
}

/* Footer links */
.pb-footer-link {
  color: rgba(255,255,255,0.78) !important;
  text-decoration: none !important;
}

.pb-footer-link:hover {
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 0 14px rgba(100, 233, 255, 0.20);
}

/* Brand images (Step 1/2/3 assets) */
.pb-brand-img {
  display: block;
  height: auto;
  background: transparent;
  transform: translateZ(0);
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
  mix-blend-mode: normal;
}

.pb-brand-img--nav {
  max-height: 36px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(0,0,0,0.55)) drop-shadow(0 0 12px rgba(100,233,255,0.14));
}

.navbar-brand:hover .pb-brand-img--nav {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.60)) drop-shadow(0 0 18px rgba(100,233,255,0.18));
}

.pb-brand-img--hero {
  width: min(520px, 96%);
  margin: 0;
  filter: drop-shadow(0 0 18px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(195,32,173,0.14));
}

.pb-brand-img--banner {
  width: min(520px, 100%);
  max-width: 100%;
  margin: 0 auto 1.0rem;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 18px 54px rgba(0,0,0,0.55);
  filter: drop-shadow(0 0 14px rgba(0,0,0,0.55));
}

.pb-brand-img--hero:hover,
.pb-brand-img--banner:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.65)) drop-shadow(0 0 18px rgba(100,233,255,0.14));
}

/* Hero banner image (uses your logo image, matched to site) */
.pb-hero-banner-img {
  display: block;
  width: min(520px, 100%);
  max-width: 100%;
  margin: 0 auto 1.0rem;
  border-radius: 18px;
  background: transparent;
  filter: grayscale(1) brightness(1.25) contrast(1.08);
  opacity: 0.92;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 18px 54px rgba(0,0,0,0.55);
}

/* Instagram icon links */
.pb-ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 10px rgba(195, 32, 173, 0.22));
}

.pb-ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 16px 40px rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.pb-ig-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(100,233,255,0.30);
  box-shadow: var(--shadow-cyan), 0 16px 40px rgba(0,0,0,0.48);
}

.pb-ig-pill-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(100,233,255,0.18);
  color: rgba(255,255,255,0.92);
}
