/* ==========================================================================
   LABS & DROPS UNIVERSE — High-End Cyber-Aurora & Glassmorphism Stylesheet
   Designed for mrclo.dev / labs-drops
   ========================================================================== */

:root {
  --spotify-blue: #7a94e4;
  --spotify-blue-deep: #4f46e5;
  --spotify-purple: #9f6dc7;
  --spotify-purple-vibrant: #a662bf;
  --spotify-pink: #db33ca;
  --spotify-green: #11c267;
  --spotify-green-hover: #1ed760;

  --labs-bg-base: #1b1938;
  --labs-bg-card: rgba(255, 255, 255, 0.10);
  --labs-card-border: rgba(255, 255, 255, 0.20);
  --labs-border-glow: rgba(159, 109, 199, 0.45);
  --labs-text-main: #ffffff;
  --labs-text-muted: #e2e8f0;
  --labs-cyan: #7a94e4;
  --labs-cyan-bright: #93c5fd;
  --labs-purple: #9f6dc7;
  --labs-pink: #db33ca;
  --labs-emerald: #11c267;
  --labs-gold: #f59e0b;
  --labs-citrino-solar: #eab308;
  --labs-citrino-glow: rgba(234, 179, 8, 0.38);
}

body.labs-universe {
  background-color: #242145;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(122, 148, 228, 0.85) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(159, 109, 199, 0.85) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(219, 51, 202, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(122, 148, 228, 0.70) 0%, transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(159, 109, 199, 0.75) 0%, transparent 55%),
    linear-gradient(145deg, #1e1b4b 0%, #2e1065 50%, #1f1d3e 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body.labs-universe .ambient-glow-mesh {
  display: none !important;
}

/* ==========================================================================
   ANIMATED WORKING DEVELOPER ICON
   ========================================================================== */
.working-dev-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--labs-cyan);
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
  animation: devCoding 3s ease-in-out infinite;
  margin-right: 6px;
}

@keyframes devCoding {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.6));
  }
  25% {
    transform: translateY(-1.5px) rotate(-2deg);
    filter: drop-shadow(0 0 9px rgba(0, 242, 254, 0.85));
  }
  50% {
    transform: translateY(0) scale(1.03);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.7));
  }
  75% {
    transform: translateY(-1px) rotate(2deg);
    filter: drop-shadow(0 0 9px rgba(56, 189, 248, 0.85));
  }
}

/* Pulsing live dot */
.badge-live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--labs-emerald);
  box-shadow: 0 0 8px var(--labs-emerald);
  margin-right: 6px;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 14px var(--labs-emerald);
  }
}

/* ==========================================================================
   LABS TOP NAV & BREADCRUMB
   ========================================================================== */
.labs-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--labs-card-border);
  margin-bottom: 40px;
  position: relative;
}

.labs-brand-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.85) 0%, rgba(20, 56, 100, 0.95) 100%);
  border: 1.5px solid rgba(17, 194, 103, 0.55);
  color: #ffffff;
  padding: 6px 16px 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.90rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(16, 44, 82, 0.4), 0 0 15px rgba(17, 194, 103, 0.20);
}

.labs-brand-breadcrumb:hover {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.95) 0%, rgba(17, 194, 103, 0.25) 100%);
  border-color: #11c267;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17, 194, 103, 0.35);
  color: #ffffff;
}

.breadcrumb-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #11c267;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.labs-brand-breadcrumb:hover .breadcrumb-back-icon {
  transform: translateX(-3px);
  background: #11c267;
  color: #030712;
}

.labs-brand-breadcrumb .working-dev-icon i {
  color: #11c267;
}

.breadcrumb-brand {
  color: #94a3b8;
  font-weight: 500;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.labs-nav-center {
  display: flex;
  align-items: center;
}

.labs-status-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--labs-emerald);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.labs-hero {
  text-align: center;
  padding: 40px 0 30px;
  max-width: 840px;
  margin: 0 auto;
}

.labs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.85) 0%, rgba(20, 56, 100, 0.95) 100%);
  border: 1.5px solid rgba(17, 194, 103, 0.55);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(16, 44, 82, 0.4), 0 0 15px rgba(17, 194, 103, 0.20);
  transition: all 0.25s ease;
}

.labs-hero-badge:hover {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.95) 0%, rgba(17, 194, 103, 0.25) 100%);
  border-color: #11c267;
  box-shadow: 0 6px 20px rgba(17, 194, 103, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.labs-hero-badge .working-dev-icon i {
  color: #11c267;
}

.labs-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.labs-hero p {
  font-size: 1.15rem;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Feature tags pill row (Architectural Pillars: passive celestito/white, intensified on click/hover) */
.labs-tag-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.labs-tag-pill {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.70) 0%, rgba(20, 56, 100, 0.80) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.40);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.80rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.20);
  cursor: pointer;
  transition: all 0.2s ease;
}

.labs-tag-pill i {
  color: #38bdf8;
  font-size: 0.78rem;
}

.labs-tag-pill:hover,
.labs-tag-pill:active,
.labs-tag-pill.active {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.90) 0%, rgba(24, 68, 125, 0.95) 100%);
  border-color: rgba(56, 189, 248, 0.85);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.50), inset 0 0 16px rgba(56, 189, 248, 0.25);
  transform: translateY(-1px) scale(1.03);
}

/* ==========================================================================
   CATEGORY TABS / FILTERS (With card-matched glowing halos & inverted active states)
   ========================================================================== */
.labs-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-tab {
  background: rgba(22, 27, 38, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(22, 27, 38, 0.90);
  transform: translateY(-1px);
}

/* Category tabs: Specific halo/border with INVERTED background & WHITE text on active (30% softer/less intense) */
.filter-tab[data-filter="all"].active {
  background: rgba(16, 185, 129, 0.45) !important;
  border: 2px solid rgba(52, 211, 153, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.40);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.filter-tab[data-filter="all"].active i {
  color: #ffffff !important;
}

.filter-tab[data-filter="apps"].active {
  background: rgba(147, 51, 234, 0.45) !important;
  border: 2px solid rgba(192, 132, 252, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.40);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.filter-tab[data-filter="apps"].active i {
  color: #ffffff !important;
}

.filter-tab[data-filter="voice"].active {
  background: rgba(2, 132, 199, 0.45) !important;
  border: 2px solid rgba(125, 211, 252, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.40);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.filter-tab[data-filter="voice"].active i {
  color: #ffffff !important;
}

.filter-tab[data-filter="academy"].active {
  background: rgba(219, 39, 119, 0.45) !important;
  border: 2px solid rgba(244, 114, 182, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(244, 114, 182, 0.40);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.filter-tab[data-filter="academy"].active i {
  color: #ffffff !important;
}

.filter-tab[data-filter="all"]:hover {
  border-color: rgba(16, 185, 129, 0.70);
}

.filter-tab[data-filter="apps"]:hover {
  border-color: rgba(168, 85, 247, 0.70);
}

.filter-tab[data-filter="voice"]:hover {
  border-color: rgba(56, 189, 248, 0.70);
}

.filter-tab[data-filter="academy"]:hover {
  border-color: rgba(244, 114, 182, 0.70);
}

/* ==========================================================================
   DROPS GRID & CARDS (Single Column Layout)
   ========================================================================== */
.drops-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  width: 100%;
}

.drop-card {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #a855f7, #38bdf8, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 55px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(124, 58, 237, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.drop-card:hover::before {
  opacity: 1;
}

/* ==========================================================================
   MINERAL GEMSTONE PERSONALITIES PER DROP (DEEP SOLID MINERAL DENSITY)
   Drop 01 (Apps): Amatista Rosa & Orquídea Cristalina
   Drop 02 (Voice): Zafiro Estelar & Azul Eléctrico
   Drop 03 (Academy): Ágata de Fuego & Cornalina Ámbar
   Drop 04 (Probes): Lapislázuli Ultramar & Pirita Dorada
   ========================================================================== */

/* 1. DROP 01 (Apps / Heartbeats Memories) — Marco Púrpura/Lila Spotify */
.drop-card[data-category="apps"] {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%);
  border: 2.5px solid #9f6dc7;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(159, 109, 199, 0.22);
}
.drop-card[data-category="apps"]::before {
  background: linear-gradient(90deg, #9f6dc7, #c084fc);
  height: 3.5px;
  opacity: 0.95;
}
.drop-card[data-category="apps"]:hover {
  border-color: #c084fc;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.65), 0 0 35px rgba(159, 109, 199, 0.35);
}
.drop-card[data-category="apps"] .drop-category-badge {
  background: rgba(159, 109, 199, 0.25);
  color: #ffffff;
  border: 1.5px solid #9f6dc7;
  border-radius: 9999px;
  padding: 5px 14px;
  font-weight: 700;
}
.drop-card[data-category="apps"] .drop-num {
  background: rgba(159, 109, 199, 0.20);
  color: #ffffff;
  border: 1px solid rgba(159, 109, 199, 0.45);
  border-radius: 9999px;
  padding: 4px 10px;
}

/* Temporarily hide Drop 02, Drop 03, Drop 04 in both desktop and mobile viewports until ready */
.drop-card[data-category="voice"],
.drop-card[data-category="academy"],
.drop-card[data-category="probes"] {
  display: none !important;
}

/* 2. DROP 02 (Voice / Linux AI Voice Companion) — Marco Azul/Índigo Periwinkle */
.drop-card[data-category="voice"] {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%);
  border: 2.5px solid #7a94e4;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(122, 148, 228, 0.22);
}
.drop-card[data-category="voice"]::before {
  background: linear-gradient(90deg, #7a94e4, #93c5fd);
  height: 3.5px;
  opacity: 0.95;
}
.drop-card[data-category="voice"]:hover {
  border-color: #93c5fd;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.65), 0 0 35px rgba(122, 148, 228, 0.35);
}
.drop-card[data-category="voice"] .drop-category-badge {
  background: rgba(122, 148, 228, 0.25);
  color: #ffffff;
  border: 1.5px solid #7a94e4;
  border-radius: 9999px;
  padding: 5px 14px;
  font-weight: 700;
}
.drop-card[data-category="voice"] .drop-num {
  background: rgba(122, 148, 228, 0.20);
  color: #ffffff;
  border: 1px solid rgba(122, 148, 228, 0.45);
  border-radius: 9999px;
  padding: 4px 10px;
}

/* 3. DROP 03 (Academy / Incident Commander Labs) — Marco Magenta/Rosa Festivo */
.drop-card[data-category="academy"] {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%);
  border: 2.5px solid #db33ca;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(219, 51, 202, 0.22);
}
.drop-card[data-category="academy"]::before {
  background: linear-gradient(90deg, #db33ca, #f472b6);
  height: 3.5px;
  opacity: 0.95;
}
.drop-card[data-category="academy"]:hover {
  border-color: #f472b6;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.65), 0 0 35px rgba(219, 51, 202, 0.35);
}
.drop-card[data-category="academy"] .drop-category-badge {
  background: rgba(219, 51, 202, 0.25);
  color: #ffffff;
  border: 1.5px solid #db33ca;
  border-radius: 9999px;
  padding: 5px 14px;
  font-weight: 700;
}
.drop-card[data-category="academy"] .drop-num {
  background: rgba(219, 51, 202, 0.20);
  color: #ffffff;
  border: 1px solid rgba(219, 51, 202, 0.45);
  border-radius: 9999px;
  padding: 4px 10px;
}

/* 4. DROP 04 (Probes / Distributed Webhook Engine) — Marco Verde Spotify */
.drop-card[data-category="probes"] {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%);
  border: 2.5px solid #11c267;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(17, 194, 103, 0.22);
}
.drop-card[data-category="probes"]::before {
  background: linear-gradient(90deg, #11c267, #34d399);
  height: 3.5px;
  opacity: 0.95;
}
.drop-card[data-category="probes"]:hover {
  border-color: #34d399;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.65), 0 0 35px rgba(17, 194, 103, 0.35);
}
.drop-card[data-category="probes"] .drop-category-badge {
  background: rgba(17, 194, 103, 0.25);
  color: #ffffff;
  border: 1.5px solid #11c267;
  border-radius: 9999px;
  padding: 5px 14px;
  font-weight: 700;
}
.drop-card[data-category="probes"] .drop-num {
  background: rgba(17, 194, 103, 0.20);
  color: #ffffff;
  border: 1px solid rgba(17, 194, 103, 0.45);
  border-radius: 9999px;
  padding: 4px 10px;
}

/* Card Header */
.drop-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.drop-num {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--labs-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.drop-category-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.drop-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.drop-subtitle {
  font-size: 0.88rem;
  color: #38bdf8;
  font-weight: 500;
  margin-bottom: 14px;
}

.drop-desc {
  font-size: 0.94rem;
  color: var(--labs-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Card Video Player */
.drop-video-wrapper {
  margin: 14px 0 18px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(159, 109, 199, 0.40);
  background: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(159, 109, 199, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.drop-video-wrapper:hover {
  border-color: rgba(159, 109, 199, 0.70);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), 0 0 22px rgba(159, 109, 199, 0.25);
}

.drop-card-video {
  width: 100%;
  display: block;
  max-height: 270px;
  object-fit: cover;
  background-color: #050811;
  outline: none;
  cursor: pointer;
}

/* Subtitle Glassmorphism Live Overlay */
.video-subtitles-banner {
  position: absolute;
  bottom: 56px;
  left: 10px;
  right: 10px;
  text-align: center;
  background: rgba(10, 15, 30, 0.92);
  border: 1.5px solid rgba(159, 109, 199, 0.55);
  border-radius: 12px;
  padding: 8px 14px;
  color: #f8fafc;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.75), 0 0 16px rgba(159, 109, 199, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 10;
  display: none;
}

.video-subtitles-banner.active {
  display: block;
  animation: fadeInSubtitle 0.25s ease-out;
}

@keyframes fadeInSubtitle {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Direct Quick Controls Bar */
.video-quick-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(11, 19, 43, 0.95);
  border-top: 1px solid rgba(159, 109, 199, 0.30);
  box-sizing: border-box;
}

.vqc-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.vqc-btn:hover {
  background: rgba(159, 109, 199, 0.28);
  border-color: rgba(159, 109, 199, 0.65);
  color: #ffffff;
  transform: translateY(-1px);
}

.vqc-btn.active,
.vqc-btn.muted-active {
  background: rgba(17, 194, 103, 0.22);
  border-color: #11c267;
  color: #a7f3d0;
  box-shadow: 0 0 10px rgba(17, 194, 103, 0.35);
}

.vqc-timeline-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vqc-timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9f6dc7, #38bdf8);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

.vqc-speed-btn {
  min-width: 46px;
  font-family: monospace;
  font-weight: 800;
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.45);
}

.vqc-speed-btn:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: #f59e0b;
  color: #ffffff;
}

.vqc-cc-badge {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* Card Platforms & Specs */
.drop-specs {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drop-specs i {
  color: var(--labs-cyan);
  font-size: 0.9rem;
}

/* Drop Action Buttons */
.drop-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-demo-trigger {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-demo-trigger:hover {
  background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-buy-webpay {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.45) 0%, rgba(245, 158, 11, 0.55) 50%, rgba(217, 119, 6, 0.40) 100%) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 12px 22px;
  border-radius: 9999px;
  font-size: 0.94rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 24px rgba(245, 158, 11, 0.35) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.btn-buy-webpay:hover,
.btn-buy-webpay:focus-visible {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(245, 158, 11, 0.30) 50%, rgba(217, 119, 6, 0.20) 100%) !important;
  border-color: rgba(245, 158, 11, 0.50) !important;
  color: #fef3c7 !important;
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 16px rgba(245, 158, 11, 0.16) !important;
}

.btn-buy-webpay:active {
  transform: translateY(0) scale(0.99) !important;
}

.webpay-icon-inline {
  height: 20px;
  width: auto;
  max-width: 82px;
  vertical-align: middle;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-buy-webpay:hover .webpay-icon-inline {
  transform: scale(1.05);
}

.btn-webpay-inline-card {
  padding: 6px 14px !important;
  font-size: 0.80rem !important;
  margin-top: 6px !important;
  width: fit-content !important;
  border-radius: 9999px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.45) 0%, rgba(245, 158, 11, 0.55) 50%, rgba(217, 119, 6, 0.40) 100%) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.85) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.50), 0 0 18px rgba(245, 158, 11, 0.30) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-webpay-inline-card:hover,
.btn-webpay-inline-card:focus-visible {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(245, 158, 11, 0.30) 50%, rgba(217, 119, 6, 0.20) 100%) !important;
  border-color: rgba(245, 158, 11, 0.50) !important;
  color: #fef3c7 !important;
  transform: scale(1.03) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40), 0 0 12px rgba(245, 158, 11, 0.16) !important;
}

.btn-webpay-inline-card:active {
  transform: scale(0.99) !important;
}

.pay-desktop-qr-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(14, 22, 48, 0.65) !important;
  border: 1.5px solid rgba(159, 109, 199, 0.35) !important;
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.pay-desktop-qr-card:hover {
  border-color: rgba(192, 132, 252, 0.65);
  box-shadow: 0 10px 30px rgba(159, 109, 199, 0.25);
}

/* Drop 01 Interactive & Features Blocks */
.drop-interactive-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  background: rgba(14, 22, 48, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px 18px;
}

.drop-features-box {
  margin: 18px 0 20px 0;
  padding: 20px 22px 18px 22px;
  background: rgba(14, 28, 56, 0.60);
  border: 1.5px solid rgba(159, 109, 199, 0.35);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.drop-features-box:hover {
  border-color: rgba(159, 109, 199, 0.65);
  box-shadow: 0 6px 24px rgba(159, 109, 199, 0.18);
}

.drop-features-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 14px;
}

.btn-features-detail-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, rgba(159, 109, 199, 0.16) 0%, rgba(122, 148, 228, 0.16) 100%);
  border: 1.5px solid rgba(159, 109, 199, 0.45);
  border-radius: 12px;
  color: #f3e8ff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-features-detail-full:hover {
  background: linear-gradient(135deg, rgba(159, 109, 199, 0.32) 0%, rgba(122, 148, 228, 0.32) 100%);
  border-color: rgba(216, 180, 254, 0.85);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(159, 109, 199, 0.30);
}

.btn-features-detail-full i.fa-sparkles {
  color: #db33ca;
}

/* Dual Grid for Interactive Buttons (Simulator & Real Demo) */
.drop-interactive-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .drop-interactive-dual-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.btn-live-app-prominent {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.85) 0%, rgba(20, 56, 100, 0.95) 100%);
  border: 1.5px solid rgba(17, 194, 103, 0.55);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 44, 82, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  width: 100%;
}

.btn-live-app-prominent:hover {
  background: linear-gradient(135deg, rgba(16, 44, 82, 0.95) 0%, rgba(17, 194, 103, 0.25) 100%);
  border-color: #11c267;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17, 194, 103, 0.35);
  color: #ffffff;
}

.btn-live-app-prominent i {
  color: #11c267;
}

.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #f1f5f9;
}

.feat-pill i {
  color: #11c267;
  font-size: 0.85rem;
}

.qr-visual-frame {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}

.qr-image {
  display: block;
  width: 105px;
  height: 105px;
  border-radius: 4px;
}

.qr-badge-tag {
  position: absolute;
  bottom: -7px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #0b1329;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.qr-meta-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qr-heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.qr-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f5f9;
}

.qr-subtext {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
  margin: 0;
}

.btn-link-webpay-alt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--labs-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.btn-link-webpay-alt:hover {
  color: #ffffff;
  text-decoration: underline;
  transform: translateX(2px);
}

.drop-trust-note {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  justify-content: center;
}

.drop-trust-note i {
  color: #34d399;
  font-size: 0.82rem;
}

.pay-mobile-box {
  display: none;
}

@media (max-width: 768px) {
  .pay-desktop-qr-card {
    display: none !important;
  }
  .pay-mobile-box {
    display: block !important;
    width: 100%;
  }
}

.drop-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--labs-card-border);
  color: #cbd5e1;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.drop-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #58a6ff;
}

/* ==========================================================================
   INTERACTIVE DEVICE SIMULATOR MODAL (HEARTBEATS MEMORIES)
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #242145;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(122, 148, 228, 0.85) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(159, 109, 199, 0.85) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(219, 51, 202, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(122, 148, 228, 0.70) 0%, transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(159, 109, 199, 0.75) 0%, transparent 55%),
    linear-gradient(145deg, #1e1b4b 0%, #2e1065 50%, #1f1d3e 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-window {
  background-color: #242145 !important;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(122, 148, 228, 0.85) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(159, 109, 199, 0.85) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(219, 51, 202, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 20% 85%, rgba(122, 148, 228, 0.70) 0%, transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(159, 109, 199, 0.75) 0%, transparent 55%),
    linear-gradient(145deg, #1e1b4b 0%, #2e1065 50%, #1f1d3e 100%) !important;
  border: 2px solid rgba(159, 109, 199, 0.50) !important;
  border-radius: 28px !important;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 65px -15px rgba(0, 0, 0, 0.95), 0 0 45px rgba(159, 109, 199, 0.30) !important;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px);
}

.modal-backdrop.active .modal-window {
  transform: scale(1);
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.85) 0%, rgba(8, 26, 52, 0.90) 100%);
  border-bottom: 1.5px solid rgba(159, 109, 199, 0.35);
  backdrop-filter: blur(20px);
}

.modal-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title-area h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.modal-badge {
  background: rgba(159, 109, 199, 0.18);
  border: 1px solid rgba(159, 109, 199, 0.45);
  color: #f3e8ff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.btn-close-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  transform: scale(1.05);
}

/* Device Switcher Controls */
.device-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(165deg, rgba(14, 38, 72, 0.75) 0%, rgba(8, 24, 48, 0.85) 100%);
  border-bottom: 1px solid rgba(159, 109, 199, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.device-switcher-buttons {
  display: flex;
  gap: 8px;
}

.btn-device {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-device:hover {
  color: #ffffff;
  border-color: rgba(17, 194, 103, 0.55);
}

.btn-device.active {
  background: rgba(17, 194, 103, 0.18);
  border-color: #11c267;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(17, 194, 103, 0.35);
}

/* Position Docking Controls */
.pos-picker-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--labs-text-muted);
}

.pos-buttons {
  display: flex;
  gap: 5px;
}

.btn-pos {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pos:hover {
  color: #ffffff;
  border-color: rgba(122, 148, 228, 0.5);
}

.btn-pos.active {
  background: rgba(122, 148, 228, 0.22);
  border-color: #7a94e4;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(122, 148, 228, 0.35);
}

/* Color Accent Palette Picker */
.palette-picker-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--labs-text-muted);
}

.palette-dots {
  display: flex;
  gap: 6px;
}

.palette-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.palette-dot:hover, .palette-dot.active {
  transform: scale(1.25);
  border-color: #ffffff;
}

/* ==========================================================================
   MOCKUP VIEWPORTS (DESKTOP vs MOBILE)
   ========================================================================== */
.simulator-stage {
  padding: 30px;
  background: radial-gradient(circle at center, rgba(159, 109, 199, 0.15) 0%, rgba(30, 27, 75, 0.50) 60%, rgba(15, 23, 42, 0.80) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
  overflow: hidden;
  border-bottom: 1px solid rgba(159, 109, 199, 0.25);
}

/* --- DESKTOP MOCKUP --- */
.mockup-desktop {
  width: 100%;
  max-width: 820px;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.80) 0%, rgba(8, 26, 52, 0.90) 100%);
  border-radius: 20px;
  border: 2px solid rgba(159, 109, 199, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.80), 0 0 30px rgba(159, 109, 199, 0.22);
  overflow: hidden;
  transition: all 0.3s ease;
}

.desktop-titlebar {
  background: rgba(14, 38, 72, 0.85);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(159, 109, 199, 0.25);
}

.traffic-dots {
  display: flex;
  gap: 6px;
}

.traffic-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.traffic-dot.red { background: #ef4444; }
.traffic-dot.yellow { background: #f59e0b; }
.traffic-dot.green { background: #10b981; }

.desktop-title-text {
  font-size: 0.75rem;
  color: #64748b;
  font-family: monospace;
}

/* --- MOBILE MOCKUP --- */
.mockup-mobile {
  display: none;
  width: 290px;
  height: 530px;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.85) 0%, rgba(8, 26, 52, 0.92) 100%);
  border: 8px solid rgba(22, 48, 88, 0.95);
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(159, 109, 199, 0.22);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #000000;
  border-radius: 12px;
  z-index: 100;
}

/* --- ACTIVE DISPLAY STATES --- */
.simulator-stage.mode-mobile .mockup-desktop {
  display: none;
}
.simulator-stage.mode-mobile .mockup-mobile {
  display: block;
}

/* ==========================================================================
   INSIDE THE SIMULATOR (SLIDESHOW & LIVE WIDGET)
   ========================================================================== */
.simulator-screen {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-mobile .simulator-screen {
  height: 100%;
}

.sim-slideshow-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1);
}

.sim-slideshow-layer.ken-burns {
  transform: scale(1.08);
}

.sim-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 15, 25, 0.3) 0%, rgba(11, 15, 25, 0.78) 100%);
}

/* Multi-Event Tabs Navigation */
.sim-events-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sim-event-tab {
  background: rgba(10, 30, 56, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: #94a3b8;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.sim-event-tab:hover {
  border-color: var(--labs-cyan);
  color: #ffffff;
}

.sim-event-tab.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(37, 99, 235, 0.28));
  border-color: var(--labs-cyan);
  color: var(--labs-cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

/* Photo Indicator Dots */
.sim-photo-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.photo-dots {
  display: flex;
  gap: 5px;
}

.photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.photo-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.photo-dot.active {
  background: var(--accent-theme, #38bdf8);
  box-shadow: 0 0 8px var(--accent-theme, #38bdf8);
  transform: scale(1.3);
}

.photo-counter-text {
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: monospace;
}

/* Glassmorphism Floating Widget */
.sim-floating-card {
  position: absolute;
  z-index: 10;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.70) 0%, rgba(8, 26, 52, 0.80) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(159, 109, 199, 0.40);
  border-radius: 20px;
  padding: 16px 20px;
  width: 90%;
  max-width: 370px;
  text-align: center;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.60), 0 0 25px rgba(159, 109, 199, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  scale: var(--sim-scale, 1);
  transform-origin: center center;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              scale 0.2s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  user-select: none;
  cursor: grab;
}

.sim-floating-card.is-dragging {
  transition: none !important;
  cursor: grabbing !important;
}

/* Positioning Presets (Desktop) */
.sim-floating-card.pos-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.sim-floating-card.pos-top-left {
  top: 20px;
  left: 20px;
  right: auto;
  bottom: auto;
  transform: translate(0, 0);
}

.sim-floating-card.pos-bottom-right {
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
  transform: translate(0, 0);
}

/* Positioning in Mobile Mockup */
.mockup-mobile .sim-floating-card {
  width: 86%;
  max-width: 242px;
  padding: 11px 9px;
  border-radius: 14px;
}

.mockup-mobile .sim-floating-card.pos-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.mockup-mobile .sim-floating-card.pos-top-left {
  top: 38px;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
}

.mockup-mobile .sim-floating-card.pos-bottom-right {
  bottom: 20px;
  left: 50%;
  top: auto;
  right: auto;
  transform: translateX(-50%);
}

/* Mobile widget compact elements */
.mockup-mobile .sim-events-nav {
  gap: 3px;
  margin-bottom: 6px;
}

.mockup-mobile .sim-event-tab {
  padding: 3px 8px;
  font-size: 0.68rem;
}

.mockup-mobile .sim-title-row {
  margin-bottom: 4px;
  gap: 6px;
}

.mockup-mobile .sim-event-title {
  font-size: 0.88rem;
}

.mockup-mobile .sim-countdown-grid {
  gap: 3px;
  margin: 8px 0 6px;
}

.mockup-mobile .sim-time-box {
  padding: 4px 2px;
  border-radius: 6px;
}

.mockup-mobile .sim-digit {
  font-size: 1.05rem;
}

.mockup-mobile .sim-unit {
  font-size: 0.6rem;
}

.mockup-mobile .sim-heartbeats-count {
  font-size: 0.68rem;
  margin-top: 4px;
}

.mockup-mobile .sim-photo-indicator {
  margin-top: 6px;
}

/* Dynamic Event Title Row */
.sim-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.sim-dynamic-icon-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
}

/* Heart Icon Animation */
.sim-icon-container.heart-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-heart {
  color: #fb7185;
  font-size: 1.25rem;
  animation: heartBeatPulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(251, 113, 133, 0.65));
}

@keyframes heartBeatPulse {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.28);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}

/* Plane Icon & Exhaust Jet Smoke Animation */
.sim-icon-container.plane-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 24px;
}

.icon-plane {
  color: #38bdf8;
  font-size: 1.15rem;
  display: inline-block;
  animation: planeFly 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.65));
}

@keyframes planeFly {
  0%, 100% {
    transform: translateY(0) rotate(-14deg);
  }
  50% {
    transform: translateY(-3px) rotate(-8deg);
  }
}

.jet-contrail {
  position: absolute;
  bottom: 2px;
  left: -8px;
  display: flex;
  gap: 2px;
  pointer-events: none;
}

.contrail-puff {
  width: 4px;
  height: 4px;
  background: rgba(224, 242, 254, 0.9);
  border-radius: 50%;
  opacity: 0;
  animation: jetSmoke 1.4s ease-out infinite;
}

.contrail-puff.p1 { animation-delay: 0s; }
.contrail-puff.p2 { animation-delay: 0.35s; width: 5px; height: 5px; }
.contrail-puff.p3 { animation-delay: 0.7s; width: 6px; height: 6px; }

@keyframes jetSmoke {
  0% {
    transform: scale(0.6) translateX(0);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2) translateX(-14px);
    opacity: 0;
  }
}

/* Flag Icon & Fluttering Wind Animation */
.sim-icon-container.flag-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.icon-flag {
  color: #facc15;
  font-size: 1.2rem;
  display: inline-block;
  transform-origin: 3px center;
  animation: flagFlutter 1.3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.65));
}

@keyframes flagFlutter {
  0%, 100% {
    transform: rotate(0deg) skewY(0deg) scaleX(1);
  }
  25% {
    transform: rotate(-10deg) skewY(6deg) scaleX(0.92);
  }
  50% {
    transform: rotate(7deg) skewY(-5deg) scaleX(1.06);
  }
  75% {
    transform: rotate(-6deg) skewY(3deg) scaleX(0.95);
  }
}

.sim-event-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.sim-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 14px 0 10px;
}

.sim-time-box {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 8px 4px;
}

.sim-digit {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--accent-theme, #38bdf8);
  display: block;
  line-height: 1;
}

.sim-unit {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.sim-heartbeats-count {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin-top: 6px;
}

/* Modal Bottom Action & Specs */
.modal-footer-specs {
  padding: 18px 24px;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.85) 0%, rgba(8, 26, 52, 0.90) 100%);
  border-top: 1.5px solid rgba(159, 109, 199, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.modal-specs-list {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.modal-specs-list span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-specs-list i {
  color: var(--labs-emerald);
}

.modal-action-buttons {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   PORTAL TEASER ON MAIN LANDING PAGE (Drop 01 Card Harmonization)
   ========================================================================== */
.labs-portal-teaser {
  margin: 60px 0 50px 0;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%) !important;
  border: 2.5px solid #9f6dc7 !important;
  border-radius: 28px !important;
  padding: 34px 38px !important;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(159, 109, 199, 0.22) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.labs-portal-teaser::before {
  content: '' !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px !important;
  background: linear-gradient(90deg, #9f6dc7, #38bdf8, #10b981, #fbbf24, #db33ca) !important;
  z-index: 10;
  pointer-events: none;
}

.labs-portal-teaser:hover {
  border-color: #c084fc !important;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.65), 0 0 35px rgba(159, 109, 199, 0.35) !important;
  transform: translateY(-2px);
}

.btn-portal-enter {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(245, 158, 11, 0.30) 50%, rgba(217, 119, 6, 0.20) 100%) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.50) !important;
  color: #fef3c7 !important;
  padding: 12px 30px !important;
  border-radius: 9999px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 16px rgba(245, 158, 11, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  letter-spacing: 0.02em !important;
  margin: 0 auto !important;
}

.btn-portal-enter:hover {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.45) 0%, rgba(245, 158, 11, 0.55) 50%, rgba(217, 119, 6, 0.40) 100%) !important;
  border-color: rgba(251, 191, 36, 0.85) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 24px rgba(245, 158, 11, 0.35) !important;
}

.btn-portal-enter .nav-btn-icon {
  background: rgba(245, 158, 11, 0.16) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #fcd34d !important;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-portal-enter:hover .nav-btn-icon {
  transform: translateX(3px) !important;
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #0b1329 !important;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Header & Navigation */
  .labs-navbar {
    padding: 12px 0;
    margin-bottom: 24px;
    gap: 8px;
  }
  .labs-nav-center {
    display: none !important;
  }
  .labs-brand-breadcrumb {
    padding: 5px 12px 5px 8px;
    font-size: 0.80rem;
    gap: 6px;
  }
  .breadcrumb-brand {
    display: none;
  }

  /* 2. Hero Section */
  .labs-hero {
    padding: 16px 0 10px;
  }
  .labs-hero-badge {
    padding: 7px 16px;
    font-size: 0.80rem;
    margin: 0 auto 16px auto;
    max-width: 90%;
  }
  .labs-hero h1,
  .labs-hero p {
    display: none !important;
  }
  .labs-tag-pills {
    display: none !important;
  }

  /* 3. Category Filter Tabs */
  .labs-filter-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(14, 38, 74, 0.50) !important;
    border: 1px solid rgba(122, 148, 228, 0.22) !important;
    border-radius: 16px !important;
    padding: 8px !important;
    max-width: 360px !important;
    margin: 0 auto 20px auto !important;
  }
  .filter-tab {
    padding: 6px 12px !important;
    font-size: 0.74rem !important;
    border-radius: 9999px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: #cbd5e1 !important;
    gap: 5px !important;
  }
  .filter-tab.active {
    background: rgba(56, 189, 248, 0.20) !important;
    border-color: rgba(56, 189, 248, 0.50) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  .filter-tab i {
    font-size: 0.74rem;
  }

  /* 4. Drop Cards - Only Drop 01 (Heartbeats) Visible on Mobile */
  .drops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .drop-card[data-category="voice"],
  .drop-card[data-category="academy"],
  .drop-card[data-category="probes"] {
    display: none !important;
  }
  .drop-card {
    padding: 16px !important;
    border-radius: 18px !important;
    gap: 14px;
  }
  .drop-badge-row {
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .drop-category-badge,
  .drop-num {
    padding: 3px 8px;
    font-size: 0.68rem;
    border-radius: 9999px;
  }
  .drop-card h3 {
    font-size: 1.10rem !important;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .drop-specs {
    font-size: 0.72rem;
    padding: 6px 8px;
    margin-bottom: 10px;
  }

  /* 5. Features Checklist Box & Button */
  .drop-features-box {
    padding: 12px 10px !important;
    border-radius: 14px !important;
    margin-bottom: 14px;
  }
  .drop-features-summary-grid {
    grid-template-columns: 1fr !important;
    gap: 5px;
  }
  .feat-pill {
    font-size: 0.74rem;
    gap: 6px;
  }
  .btn-features-detail-full {
    padding: 8px 12px !important;
    font-size: 0.76rem !important;
    border-radius: 10px !important;
    margin-top: 8px;
    min-height: 38px;
  }

  /* 6. Dual Action Buttons */
  .drop-interactive-dual-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
  .btn-demo-trigger,
  .btn-live-app-prominent {
    padding: 9px 12px !important;
    font-size: 0.80rem !important;
    border-radius: 10px !important;
    min-height: 38px;
    width: 100% !important;
    box-sizing: border-box;
    justify-content: center;
  }

  /* 7. Bottom Checkout Block & Webpay Button */
  .catalog-bottom-checkout,
  .drop-checkout-block {
    padding: 16px 12px !important;
    border-radius: 18px !important;
  }
  .catalog-pricing-badge {
    margin-bottom: 8px !important;
  }
  .catalog-price {
    font-size: 1.55rem !important;
  }
  .catalog-price-usd {
    font-size: 0.78rem !important;
  }
  .catalog-lifetime-pill {
    padding: 3px 8px !important;
    font-size: 0.68rem !important;
    margin-top: 4px;
    border-radius: 9999px;
  }
  .coupon-toggle-btn {
    padding: 5px 12px !important;
    font-size: 0.72rem !important;
  }
  .coupon-input-group {
    max-width: 100%;
    gap: 6px;
  }
  .coupon-input {
    padding: 6px 10px !important;
    font-size: 0.76rem !important;
  }
  .coupon-apply-btn {
    padding: 6px 12px !important;
    font-size: 0.74rem !important;
  }
  .pay-mobile-box {
    margin: 8px auto 4px auto !important;
    max-width: 100% !important;
  }
  .btn-buy-webpay {
    padding: 9px 16px !important;
    font-size: 0.84rem !important;
    min-height: 42px;
    border-radius: 9999px !important;
    gap: 8px;
    width: 100% !important;
    box-sizing: border-box;
  }
  .webpay-icon-inline {
    height: 18px !important;
    max-width: 65px !important;
  }

  /* 8. Video Quick Controls */
  .video-quick-controls {
    padding: 6px 8px !important;
    gap: 5px !important;
  }
  .vqc-btn {
    padding: 4px 7px !important;
    font-size: 0.70rem !important;
  }

  /* 9. Modal Window & Controls */
  .modal-backdrop {
    padding: 10px 8px;
  }
  .modal-window {
    max-height: 96vh;
    border-radius: 14px;
  }
  .device-controls-bar {
    padding: 8px 10px;
    gap: 8px;
  }
  .btn-device {
    padding: 5px 10px;
    font-size: 0.72rem;
    border-radius: 14px;
  }
  .pos-picker-bar {
    font-size: 0.72rem;
  }
  .pos-buttons .btn-pos {
    padding: 3px 6px;
    font-size: 0.68rem;
  }
  .simulator-stage {
    padding: 18px 8px;
    min-height: 380px;
  }
  .mockup-desktop .simulator-screen {
    height: 280px;
  }
  .mockup-desktop .sim-floating-card {
    width: 85%;
    max-width: 240px;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .mockup-desktop .sim-events-nav {
    gap: 3px;
    margin-bottom: 6px;
  }
  .mockup-desktop .sim-event-tab {
    padding: 3px 8px;
    font-size: 0.68rem;
  }
  .mockup-desktop .sim-title-row {
    margin-bottom: 4px;
    gap: 6px;
  }
  .mockup-desktop .sim-event-title {
    font-size: 0.85rem;
  }
  .mockup-desktop .sim-countdown-grid {
    gap: 3px;
    margin: 6px 0 4px;
  }
  .mockup-desktop .sim-time-box {
    padding: 3px 2px;
    border-radius: 6px;
  }
  .mockup-desktop .sim-digit {
    font-size: 0.95rem;
  }
  .mockup-desktop .sim-unit {
    font-size: 0.58rem;
  }
  .mockup-desktop .sim-heartbeats-count {
    font-size: 0.68rem;
    margin-top: 3px;
  }
  .mockup-desktop .sim-photo-indicator {
    margin-top: 5px;
  }
  .mockup-mobile {
    width: 265px;
    height: 480px;
    border-width: 6px;
    border-radius: 30px;
  }
  .mockup-mobile .sim-floating-card {
    width: 86%;
    max-width: 228px;
    padding: 9px 8px;
  }
  .mockup-mobile .sim-digit {
    font-size: 0.98rem;
  }
  .modal-footer-specs {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }
  .modal-action-buttons {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .modal-action-buttons a {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 9px 14px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 480px) {
  .simulator-stage {
    padding: 10px 4px;
  }
  .mockup-desktop .simulator-screen {
    height: 230px;
  }
  .mockup-desktop .sim-floating-card {
    width: 82%;
    max-width: 215px;
    padding: 7px 8px;
    border-radius: 10px;
  }
  .mockup-desktop .sim-events-nav {
    gap: 2px;
    margin-bottom: 4px;
  }
  .mockup-desktop .sim-event-tab {
    padding: 2px 6px;
    font-size: 0.62rem;
  }
  .mockup-desktop .sim-event-title {
    font-size: 0.78rem;
  }
  .mockup-desktop .sim-countdown-grid {
    gap: 2px;
    margin: 5px 0 3px;
  }
  .mockup-desktop .sim-time-box {
    padding: 2px 2px;
  }
  .mockup-desktop .sim-digit {
    font-size: 0.85rem;
  }
  .mockup-desktop .sim-unit {
    font-size: 0.52rem;
  }
  .mockup-desktop .sim-heartbeats-count {
    font-size: 0.62rem;
  }
  .mockup-mobile {
    width: 245px;
    height: 440px;
    border-width: 5px;
    border-radius: 26px;
  }
  .mockup-mobile .sim-floating-card {
    max-width: 205px;
    padding: 8px 6px;
  }
}

/* ==========================================================================
   PRICE BOX & HOOK CALLOUT (DROP 01)
   ========================================================================== */
.drop-price-box {
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.12) 0%, rgba(14, 40, 76, 0.70) 100%) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
  border-radius: 18px;
  padding: 14px 16px;
  margin: 12px 0 16px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 16px rgba(245, 158, 11, 0.10);
  transition: all 0.25s ease;
}

.drop-price-box:hover {
  border-color: rgba(251, 191, 36, 0.65) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 22px rgba(245, 158, 11, 0.20) !important;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 1.85rem;
  font-weight: 900;
  color: #fbbf24 !important;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.55), 0 0 8px rgba(251, 191, 36, 0.45) !important;
  letter-spacing: -0.5px;
}

.price-usd {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}

.price-pill-lifetime {
  background: linear-gradient(135deg, rgba(159, 109, 199, 0.28), rgba(122, 148, 228, 0.20));
  color: #f3e8ff;
  border: 1.5px solid rgba(159, 109, 199, 0.55);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.price-hook-badge {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.4;
  border-top: 1px dashed rgba(245, 158, 11, 0.25);
  padding-top: 6px;
  margin-top: 4px;
}

.price-hook-badge em {
  font-style: normal;
  color: #fef3c7;
}

/* ==========================================================================
   COUPON SECTION & PROMO STYLING (DROP 01)
   ========================================================================== */
.coupon-section {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(168, 85, 247, 0.25);
  text-align: center;
}

.coupon-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: #e2e8f0;
  font-size: 0.80rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 16px;
  transition: all 0.2s ease;
}

.coupon-toggle-btn:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(192, 132, 252, 0.45);
  color: #ffffff;
  text-decoration: none;
}

.coupon-toggle-icon {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.coupon-toggle-btn.open .coupon-toggle-icon {
  transform: rotate(180deg);
}

.coupon-box {
  margin-top: 10px;
  animation: couponFadeIn 0.25s ease-out;
}

@keyframes couponFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.coupon-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
}

.coupon-input {
  flex: 1;
  background: rgba(15, 15, 24, 0.90);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  border-radius: 9999px;
  color: #f8fafc;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  min-width: 0;
  text-align: center;
}

.coupon-input:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.30);
}

.coupon-input::placeholder {
  text-transform: none;
  font-weight: normal;
  color: #64748b;
  letter-spacing: normal;
}

.coupon-apply-btn {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.30);
}

.coupon-apply-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.coupon-feedback {
  margin: 8px auto 0 auto;
  max-width: 360px;
  font-size: 0.78rem;
  line-height: 1.4;
  border-radius: 12px;
  padding: 8px 12px;
}

.coupon-feedback.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.coupon-feedback.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.btn-remove-coupon {
  background: none;
  border: none;
  color: #f87171;
  text-decoration: underline;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.btn-remove-coupon:hover {
  color: #ef4444;
}

.price-original-strikethrough {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.9em;
  margin-right: 6px;
  font-weight: 500;
  opacity: 0.75;
}

.price-pill-lifetime.promo-badge,
.catalog-lifetime-pill.promo-badge {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fcd34d !important;
  border-color: rgba(245, 158, 11, 0.45) !important;
}

.drop-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.btn-buy-card-main {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 14px 24px !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.45) 0%, rgba(245, 158, 11, 0.55) 50%, rgba(217, 119, 6, 0.40) 100%) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.85) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 24px rgba(245, 158, 11, 0.35) !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-buy-card-main:hover,
.btn-buy-card-main:focus-visible {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(245, 158, 11, 0.30) 50%, rgba(217, 119, 6, 0.20) 100%) !important;
  border-color: rgba(245, 158, 11, 0.50) !important;
  color: #fef3c7 !important;
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 16px rgba(245, 158, 11, 0.16) !important;
}

.btn-buy-card-main:active {
  transform: translateY(0) scale(0.99) !important;
}

.btn-open-catalog {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.22), rgba(168, 85, 247, 0.16)) !important;
  border: 1.5px solid rgba(192, 132, 252, 0.50) !important;
  color: #f3e8ff !important;
  border-radius: 9999px !important;
  padding: 12px 20px !important;
  font-size: 0.92rem !important;
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.22);
  transition: all 0.25s ease;
}

.btn-open-catalog i {
  color: #e9d5ff;
  transition: transform 0.2s ease;
}

.btn-open-catalog:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.35), rgba(168, 85, 247, 0.28)) !important;
  border-color: rgba(216, 180, 254, 0.85) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.35);
}

.btn-open-simulator,
.btn-open-simulator-from-catalog {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  color: #f1f5f9 !important;
  border-radius: 9999px !important;
  padding: 12px 20px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.25s ease !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-open-simulator i,
.btn-open-simulator .working-dev-icon i,
.btn-open-simulator-from-catalog i {
  color: var(--labs-cyan, #38bdf8);
  transition: transform 0.2s ease;
}

.btn-open-simulator:hover,
.btn-open-simulator-from-catalog:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.40) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
}

.btn-open-simulator:hover i,
.btn-open-simulator-from-catalog:hover i {
  transform: scale(1.12);
}

.drop-secondary-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 14px 0;
}

.btn-subtle-catalog {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.35);
  color: #f3e8ff;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-subtle-catalog:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(216, 180, 254, 0.75);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.25);
}

.btn-live-app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 8px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-live-app-link:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.50);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.22);
}

/* ==========================================================================
   SIMULATOR CONTROLS ENHANCEMENTS
   ========================================================================== */
.font-picker-bar,
.slider-controls-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.sim-select {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  outline: none;
  cursor: pointer;
}

.slider-controls-bar {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.slider-unit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

.slider-unit input[type="range"] {
  width: 75px;
  accent-color: #38bdf8;
  cursor: pointer;
}

.sim-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.sim-audio-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.sim-audio-btn:hover,
.sim-audio-btn.is-playing {
  background: #38bdf8;
  color: #0b0f19;
  border-color: #38bdf8;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

.sim-alarms-badge {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
  border: 1px solid rgba(234, 179, 8, 0.35);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.sim-live-link {
  font-size: 0.65rem;
  color: #38bdf8;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ==========================================================================
   CATALOG MODAL WINDOW & CHECKLIST
   ========================================================================== */
.catalog-window {
  max-width: 860px !important;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 28px !important;
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.58) 0%, rgba(8, 26, 52, 0.68) 100%) !important;
  border: 2.5px solid #9f6dc7 !important;
  box-shadow: 0 16px 45px -10px rgba(0, 0, 0, 0.50), 0 0 25px rgba(159, 109, 199, 0.22) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  position: relative;
  overflow: hidden;
}

.catalog-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #9f6dc7, #c084fc);
  z-index: 10;
}

.catalog-window .modal-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(159, 109, 199, 0.25) !important;
  padding: 22px 28px 16px 28px;
}

.catalog-content {
  overflow-y: auto;
  padding: 24px 28px;
  background: transparent !important;
  scrollbar-width: thin;
  scrollbar-color: #9f6dc7 rgba(16, 44, 82, 0.4);
}

.catalog-pricing-hero {
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.15) 0%, rgba(14, 40, 76, 0.70) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.40);
  border-radius: 24px;
  padding: 18px 20px;
  margin-bottom: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.catalog-pricing-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.catalog-price {
  font-size: 1.85rem;
  font-weight: 900;
  color: #fbbf24 !important;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.55), 0 0 8px rgba(251, 191, 36, 0.45) !important;
  letter-spacing: -0.5px;
}

.catalog-price-usd {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
}

.catalog-lifetime-pill {
  background: linear-gradient(135deg, rgba(159, 109, 199, 0.28), rgba(122, 148, 228, 0.20));
  color: #f3e8ff;
  border: 1.5px solid rgba(159, 109, 199, 0.55);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(159, 109, 199, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   CATALOG GUARANTEE HOOK CALLOUT BOX & CHECKLIST
   ========================================================================== */
.catalog-hook-box {
  margin: 0 auto 22px auto;
  max-width: 760px;
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.10) 0%, rgba(16, 44, 82, 0.65) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-left: 4px solid #f59e0b;
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.40), 0 0 20px rgba(245, 158, 11, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}

.catalog-hook-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.25);
  color: #fef3c7;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.catalog-hook-header .catalog-hook-icon {
  color: #fbbf24;
  font-size: 0.92rem;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.40);
}

.catalog-hook-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  text-align: left;
}

@media (max-width: 680px) {
  .catalog-hook-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.catalog-hook-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 400;
}

.catalog-hook-list li span {
  color: #cbd5e1;
  font-weight: 400;
}

.catalog-hook-list li i {
  color: #11c267;
  font-size: 0.90rem;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(17, 194, 103, 0.35));
}

.catalog-hook-text {
  font-size: 0.93rem;
  color: #f8fafc;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  max-width: 700px;
  text-align: center;
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.08) 50%, rgba(14, 28, 56, 0.65) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.38);
  border-left: 4px solid #f59e0b;
  border-radius: 16px;
  padding: 15px 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 20px rgba(245, 158, 11, 0.12);
  position: relative;
  backdrop-filter: blur(10px);
}

.catalog-hook-text strong {
  color: #fef3c7;
  font-weight: 700;
}

.catalog-buy-btn {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  max-width: 440px;
  margin: 0 auto;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  border-radius: 9999px !important;
}

.features-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .features-checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Items in Catalog */
.feature-item {
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(14, 38, 74, 0.60);
  border: 1px solid rgba(122, 148, 228, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:nth-child(odd) {
  background: rgba(14, 38, 74, 0.60);
  border: 1px solid rgba(122, 148, 228, 0.25);
  border-left: 3.5px solid #9f6dc7;
}

.feature-item:nth-child(even) {
  background: rgba(14, 38, 74, 0.60);
  border: 1px solid rgba(122, 148, 228, 0.25);
  border-left: 3.5px solid #7a94e4;
}

.feature-item:hover {
  background: rgba(20, 52, 98, 0.85);
  border-color: rgba(122, 148, 228, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.50), 0 0 16px rgba(159, 109, 199, 0.20);
}

.feature-icon {
  font-size: 1.30rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 194, 103, 0.12);
  border: 1.5px solid rgba(17, 194, 103, 0.45);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(17, 194, 103, 0.18);
  color: #11c267;
  transition: all 0.25s ease;
}

.feature-icon i {
  color: #11c267;
}

.feature-item:hover .feature-icon {
  background: rgba(17, 194, 103, 0.22);
  border-color: #11c267;
  box-shadow: 0 0 16px rgba(17, 194, 103, 0.45);
  transform: scale(1.08);
}

.feature-text h4 {
  margin: 0 0 5px 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f1f5f9;
}

.feature-text p {
  margin: 0;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.catalog-footer-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(159, 109, 199, 0.25) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 640px) {
  .catalog-footer-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

.catalog-bottom-checkout {
  background: linear-gradient(165deg, rgba(16, 44, 82, 0.90) 0%, rgba(8, 26, 52, 0.95) 100%) !important;
  border: 1.5px solid rgba(159, 109, 199, 0.40) !important;
  border-radius: 24px !important;
  padding: 22px 24px !important;
  margin-top: 24px !important;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.70), 0 0 25px rgba(159, 109, 199, 0.18) !important;
}
