/* ==========================================================================
   LÚMINA 360° | Social-First & Visual High-End Agency
   Main Stylesheet - Design System & Core Utilities
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  /* Lúmina Quiet Luxury Brand Palette */
  --bg-dark: #FAF8F5;          /* Warm Soft Ivory Lino */
  --bg-surface: #ffffff;       /* Pure White */
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-elevated: #F4F0E8;
  --bg-muted: #EAE5DD;         /* Soft warm neutral */

  --border-subtle: #EAE5DD;
  --border-hover: #D0C9BE;
  
  /* Lúmina Signature Brand Accents (Brushed Gold & Editorial Tones) */
  --dextra-orange: #C5A059;       /* Lúmina Signature Brushed Gold */
  --dextra-orange-glow: rgba(197, 160, 89, 0.25);
  --gold-primary: #C5A059;        /* Lúmina Primary Gold */
  --gold-classic: #B88A3A;
  --gold-light: #FBF8F1;
  --gold-dark: #8C6621;
  --gold-glow: rgba(197, 160, 89, 0.2);

  --pink-social: #B86B5A;         /* Warm Terracotta / Rose Gold */
  --coral-social: #B86B5A;
  --coral-glow: rgba(184, 107, 90, 0.2);

  --blue-paid: #335C8D;           /* Deep Slate Cobalt / Sapphire */
  --cyan-paid: #335C8D;
  --cyan-glow: rgba(51, 92, 141, 0.2);

  /* Category Pastel Tints */
  --pink-tint: #F7EBE8;
  --orange-tint: #F9F3E8;
  --blue-tint: #EBF1F7;

  --text-primary: #1A1A1A;        /* Deep Charcoal Black (crisp & high contrast) */
  --text-secondary: #5A5854;      /* Warm Graphite Body text */
  --text-tertiary: #7D7A73;       /* Muted Warm Gray */
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max-w: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-dark);
}

/* Pastel Tint Utilities */
.bg-tint-pink { background-color: var(--pink-tint) !important; }
.bg-tint-orange { background-color: var(--orange-tint) !important; }
.bg-tint-blue { background-color: var(--blue-tint) !important; }

.cap-social { background-color: var(--pink-social) !important; color: #ffffff !important; }
.cap-content { background-color: var(--gold-primary) !important; color: #ffffff !important; }
.cap-paid { background-color: var(--blue-paid) !important; color: #ffffff !important; }

/* Noise overlay */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding: 8.5rem 0;
  }
}

/* Typography styles */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.serif-italic {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold-primary);
}

.text-outline {
  color: var(--gold-primary) !important;
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  -webkit-text-stroke: 0 !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(229, 195, 120, 0.08);
  border: 1px solid rgba(229, 195, 120, 0.25);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.section-tag.tag-social {
  background: rgba(255, 96, 61, 0.08);
  border-color: rgba(255, 96, 61, 0.25);
  color: var(--coral-social);
}

.section-tag.tag-paid {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.25);
  color: var(--cyan-paid);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.section-tag.tag-pulse .tag-dot {
  box-shadow: 0 0 10px currentColor;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-panel:hover {
  border-color: var(--border-hover);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  background: var(--gold-primary);
  color: #07080b;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 4px 20px rgba(229, 195, 120, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(229, 195, 120, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral-social);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 96, 61, 0.3);
}

.btn-coral:hover {
  background: #ff7555;
  box-shadow: 0 6px 28px rgba(255, 96, 61, 0.45);
}

/* Rolling Text Effect for Luxury Buttons */
.btn-roll {
  position: relative;
  overflow: hidden;
  display: inline-flex;
}

.btn-roll .roll-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-roll:hover .roll-track {
  transform: translateY(-50%);
}

.roll-text {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Badges & Pills */
.pill-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-gold {
  background: rgba(229, 195, 120, 0.12);
  color: var(--gold-primary);
  border: 1px solid rgba(229, 195, 120, 0.2);
}

.pill-coral {
  background: rgba(255, 96, 61, 0.12);
  color: var(--coral-social);
  border: 1px solid rgba(255, 96, 61, 0.2);
}

.pill-cyan {
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan-paid);
  border: 1px solid rgba(56, 189, 248, 0.2);
}


/* Continuous Horizontal Marquee Strip (Single Line, Never Wraps) */
.hero-marquee-strip {
  width: 100%;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.95rem 0;
  white-space: nowrap;
}

.hero-marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  animation: heroMarqueeLoop 36s linear infinite;
}

@keyframes heroMarqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.hero-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-marquee-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.hero-marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-marquee-dot.dot-pink { background: var(--pink-social); box-shadow: 0 0 8px rgba(184, 107, 90, 0.4); }
.hero-marquee-dot.dot-orange { background: var(--gold-primary); box-shadow: 0 0 8px rgba(197, 160, 89, 0.4); }
.hero-marquee-dot.dot-blue { background: var(--blue-paid); box-shadow: 0 0 8px rgba(51, 92, 141, 0.4); }


   NEW ARCHITECTURAL HERO REDESIGN (ZERO-FLAW RESPONSIVE LAYOUT)
   ========================================================================== */
.hero-clean-section {
  position: relative;
  background: var(--bg-dark, #FAF8F5);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle, #EAE5DD);
}

.hero-clean-ambient-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(250, 248, 245, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-clean-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-clean-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 3.5rem;
    padding: 1.5rem 0;
  }
}

/* Left Column Styling */
.hero-clean-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-clean-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-full, 9999px);
  color: var(--gold-primary, #C5A059);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-badge-sparkle {
  color: var(--gold-primary, #C5A059);
  font-size: 0.8rem;
}

.hero-clean-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2.2rem, 4.3vw, 3.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary, #1A1A1A);
  text-transform: uppercase;
  margin: 0;
}

.hero-title-line-solid {
  color: var(--text-primary, #1A1A1A);
}

.hero-title-line-serif {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold-primary, #C5A059);
}

.hero-title-line-gold {
  color: var(--gold-primary, #C5A059);
  font-weight: 800;
}

.hero-clean-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: var(--text-secondary, #5A5854);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.hero-clean-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero-clean-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  background: var(--gold-primary, #C5A059);
  color: #0C0D0F !important;
  border: 1px solid var(--gold-classic, #B88A3A);
  border-radius: var(--radius-full, 9999px);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.28);
  transition: all 0.25s ease;
}

.hero-clean-btn-primary:hover {
  background: #D4AF67;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(197, 160, 89, 0.4);
}

.hero-clean-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  background: var(--bg-surface, #ffffff);
  color: var(--text-primary, #1A1A1A) !important;
  border: 1px solid var(--border-subtle, #EAE5DD);
  border-radius: var(--radius-full, 9999px);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 14, 19, 0.04);
}

.hero-clean-btn-secondary:hover {
  border-color: var(--gold-primary, #C5A059);
  color: var(--gold-primary, #C5A059) !important;
  transform: translateY(-2px);
}

.hero-btn-arrow {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.hero-clean-btn-secondary:hover .hero-btn-arrow {
  transform: translateY(2px);
}

/* Stats Row */
.hero-clean-stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle, #EAE5DD);
  max-width: 520px;
}

.hero-clean-stat-box {
  display: flex;
  flex-direction: column;
}

.stat-big-num {
  font-family: var(--font-sans, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary, #1A1A1A);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-tertiary, #7D7A73);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero-clean-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle, #EAE5DD);
}

/* Right Column: Studio Showcase Card */
.hero-clean-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-showcase-card {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
}

/* 16:9 Director 4K Monitor */
.hero-stage-monitor {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0B0C0E;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 234, 0.12);
  box-shadow: 0 24px 55px rgba(12, 13, 15, 0.16), 0 0 0 1px rgba(197, 160, 89, 0.2);
}

.stage-hud-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 0.8rem 1.1rem;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0.88) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.stage-hud-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

.stage-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
  animation: stageRecBlink 1.4s infinite;
}

@keyframes stageRecBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.stage-hud-specs {
  display: flex;
  gap: 0.65rem;
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.stage-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage-hud-crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-crosshair-center {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.stage-hud-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1.1rem;
  background: linear-gradient(0deg, rgba(11, 12, 14, 0.92) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.stage-timecode {
  font-family: monospace;
  font-size: 0.7rem;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

.stage-vumeters {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
}

.stage-vumeters span {
  width: 3px;
  background: var(--gold-primary, #C5A059);
  border-radius: 1px;
}

.stage-badge-tag {
  font-family: monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-primary, #C5A059);
  letter-spacing: 0.1em;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* Overlapping 9:16 Reel Smartphone Frame */
.hero-stage-phone {
  position: absolute;
  bottom: -24px;
  right: -10px;
  width: 180px;
  aspect-ratio: 9 / 16;
  background: #0B0C0E;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #1A1B20;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(197, 160, 89, 0.25);
  z-index: 4;
}

@media (min-width: 1100px) {
  .hero-stage-phone {
    width: 200px;
    bottom: -28px;
    right: -18px;
  }
}

.stage-phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 35%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  pointer-events: none;
}

.phone-pill-top {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.55rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.phone-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary, #C5A059);
}

.phone-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.phone-creator-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #FFFFFF;
}

.phone-format-desc {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Floating Live Simulator Pill */
.hero-stage-live-pill {
  position: absolute;
  top: -16px;
  left: -12px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle, #EAE5DD);
  box-shadow: 0 12px 30px rgba(15, 14, 19, 0.09);
  border-radius: 12px;
  padding: 0.6rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 5;
  max-width: 320px;
}

@media (min-width: 1100px) {
  .hero-stage-live-pill {
    top: -20px;
    left: -20px;
  }
}

.live-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  flex-shrink: 0;
}

.live-pill-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.live-pill-sub {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--text-tertiary, #7D7A73);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill-msg {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary, #1A1A1A);
  line-height: 1.25;
  transition: opacity 0.25s, transform 0.25s;
}


