/**
 * Innovation Lab Page Styles
 * Futuristic glassmorphism design with animated effects
 */

/* ============================================
   CSS Variables
   ============================================ */
.layout-lab {
  --lab-primary: #8b5cf6;
  --lab-primary-glow: rgba(139, 92, 246, 0.5);
  --lab-accent: #06b6d4;
  --lab-accent-glow: rgba(6, 182, 212, 0.5);
  --lab-success: #10b981;
  --lab-warning: #f59e0b;
  --lab-danger: #ef4444;
  --lab-surface: rgba(15, 23, 42, 0.6);
  --lab-surface-light: rgba(30, 41, 59, 0.5);
  --lab-border: rgba(255, 255, 255, 0.1);
  --lab-text: rgba(255, 255, 255, 0.95);
  --lab-text-muted: rgba(255, 255, 255, 0.6);
  --lab-grid-color: rgba(139, 92, 246, 0.08);
}

/* ============================================
   Hero Section
   ============================================ */
.lab-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.lab-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--lab-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-grid-color) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.lab-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--lab-primary);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatParticle 15s infinite ease-in-out;
}

.particle--1 { left: 10%; top: 20%; animation-delay: 0s; }
.particle--2 { left: 80%; top: 30%; animation-delay: -3s; }
.particle--3 { left: 50%; top: 60%; animation-delay: -6s; }
.particle--4 { left: 20%; top: 70%; animation-delay: -9s; }
.particle--5 { left: 70%; top: 80%; animation-delay: -12s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(30px, -50px) scale(1.5); opacity: 0.8; }
  50% { transform: translate(-20px, -100px) scale(1); opacity: 0.4; }
  75% { transform: translate(40px, -50px) scale(1.2); opacity: 0.6; }
}

.lab-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lab-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--lab-surface);
  border: 1px solid var(--lab-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lab-accent);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  animation: badgePulse 3s ease-in-out infinite;
}

.lab-hero__badge-icon {
  display: flex;
  width: 20px;
  height: 20px;
}

.lab-hero__badge-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--lab-accent-glow); }
  50% { box-shadow: 0 0 20px 4px var(--lab-accent-glow); }
}

.lab-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.lab-hero__title-line {
  display: block;
}

.lab-hero__title-line--glow {
  background: linear-gradient(135deg, var(--lab-primary) 0%, var(--lab-accent) 50%, #fbee39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 5s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 20px var(--lab-primary-glow)); }
  50% { filter: drop-shadow(0 0 40px var(--lab-accent-glow)); }
}

.lab-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--lab-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.lab-hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lab-hero__stat {
  text-align: center;
  padding: 16px 24px;
  background: var(--lab-surface);
  border: 1px solid var(--lab-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  min-width: 120px;
}

.lab-hero__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lab-primary);
  font-variant-numeric: tabular-nums;
}

.lab-hero__stat-label {
  font-size: 12px;
  color: var(--lab-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lab-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.lab-hero__submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lab-hero__submit-wrapper button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.lab-hero__vip-hint {
  font-size: 13px;
  color: var(--lab-warning);
  text-align: center;
  max-width: 220px;
}

.btn-glow {
  position: relative;
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 20px var(--lab-primary-glow); }
  50% { box-shadow: 0 0 30px var(--lab-primary-glow), 0 0 60px var(--lab-accent-glow); }
}

.btn-glass {
  background: var(--lab-surface);
  border: 1px solid var(--lab-border);
  backdrop-filter: blur(12px);
}

/* ============================================
   Page Layout
   ============================================ */
.lab-page {
  padding-bottom: 80px;
}

/* ============================================
   Section Styles
   ============================================ */
.lab-section {
  padding: 80px 0;
}

.lab-section__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.lab-section__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
}

.lab-section__icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.lab-section__titles {
  flex: 1;
  min-width: 200px;
}

.lab-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.lab-section__subtitle {
  color: var(--lab-text-muted);
  font-size: 1rem;
}

.lab-section__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lab-filter {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--lab-border);
  border-radius: 8px;
  color: var(--lab-text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lab-filter:hover {
  border-color: var(--lab-primary);
  color: var(--lab-text);
}

.lab-filter.is-active {
  background: var(--lab-primary);
  border-color: var(--lab-primary);
  color: white;
}

/* ============================================
   Roadmap Section
   ============================================ */
.lab-roadmap__timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.lab-roadmap__timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lab-primary), var(--lab-accent), transparent);
}

.lab-roadmap__item {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-roadmap__item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.lab-roadmap__item--active {
  border-color: var(--lab-primary);
  box-shadow: 0 0 0 1px var(--lab-primary);
}

.lab-roadmap__status {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  display: flex;
  justify-content: center;
}

.lab-roadmap__dot {
  width: 12px;
  height: 12px;
  background: var(--lab-surface);
  border: 2px solid var(--lab-primary);
  border-radius: 50%;
  z-index: 1;
}

.lab-roadmap__item--active .lab-roadmap__dot {
  background: var(--lab-primary);
}

.lab-roadmap__pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lab-primary);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.lab-roadmap__content {
  flex: 1;
}

.lab-roadmap__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.lab-roadmap__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--cat-color) 20%, transparent);
  border-radius: 6px;
  font-size: 12px;
  color: var(--cat-color);
}

.lab-roadmap__quarter {
  font-size: 12px;
  color: var(--lab-text-muted);
  padding: 4px 10px;
  background: var(--lab-surface);
  border-radius: 6px;
}

.lab-roadmap__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lab-roadmap__desc {
  color: var(--lab-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.lab-roadmap__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.lab-roadmap__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--lab-surface);
  border-radius: 3px;
  overflow: hidden;
}

.lab-roadmap__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lab-primary), var(--lab-accent));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.lab-roadmap__progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lab-accent);
}

/* ============================================
   Ideas Section
   ============================================ */
.lab-ideas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.lab-idea {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lab-idea:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.lab-idea--in_progress {
  border: 1px solid var(--lab-accent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.lab-idea--considering {
  border: 1px solid var(--lab-warning);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.lab-idea__votes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lab-idea__vote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lab-idea__vote svg {
  width: 20px;
  height: 20px;
  stroke: var(--lab-text-muted);
  transition: stroke 0.2s ease;
}

.lab-idea__vote--up:hover svg,
.lab-idea__vote--up.is-active svg {
  stroke: var(--lab-success);
}

.lab-idea__vote--down:hover svg,
.lab-idea__vote--down.is-active svg {
  stroke: var(--lab-danger);
}

.lab-idea__vote.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lab-idea__vote.is-voted {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.lab-idea__vote.is-voted.is-active svg {
  opacity: 1;
}

.lab-idea__score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lab-primary);
  font-variant-numeric: tabular-nums;
}

.lab-idea__content {
  flex: 1;
  min-width: 0;
}

.lab-idea__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.lab-idea__category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: color-mix(in srgb, var(--cat-color) 20%, transparent);
  border-radius: 4px;
  font-size: 11px;
  color: var(--cat-color);
}

.lab-idea__author {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--lab-text-muted);
}

.lab-idea__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.lab-idea__desc {
  font-size: 14px;
  color: var(--lab-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.lab-idea__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lab-idea__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--lab-text-muted);
}

.lab-idea__badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.lab-idea__badge--considering {
  background: color-mix(in srgb, var(--lab-warning) 20%, transparent);
  color: var(--lab-warning);
}

.lab-idea__badge--progress {
  background: color-mix(in srgb, var(--lab-accent) 20%, transparent);
  color: var(--lab-accent);
}

.lab-idea__badge--completed {
  background: color-mix(in srgb, var(--lab-success) 20%, transparent);
  color: var(--lab-success);
}

.lab-ideas__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   Releases Section - Futuristic Timeline Design
   ============================================ */
.lab-releases {
  position: relative;
}

.lab-releases__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Timeline line */
.lab-releases__list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, 
    var(--lab-primary) 0%, 
    var(--lab-accent) 50%, 
    var(--lab-primary) 100%);
  opacity: 0.4;
  border-radius: 2px;
}

.lab-release {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  padding: 32px 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-release:last-child {
  border-bottom: none;
}

.lab-release:hover {
  background: linear-gradient(90deg, 
    rgba(139, 92, 246, 0.05) 0%, 
    transparent 100%);
}

/* Timeline node */
.lab-release__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.lab-release__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

.lab-release__dot i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.lab-release__dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.lab-release__dot--major {
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.lab-release__dot--minor {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.lab-release__dot--patch {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.lab-release__dot--hotfix {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.lab-release:hover .lab-release__dot {
  transform: scale(1.1);
}

/* Main content */
.lab-release__main {
  flex: 1;
  min-width: 0;
}

.lab-release__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lab-release__version {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lab-release__version-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lab-release__version h3 {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.lab-release__tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
}

.lab-release__tag--major {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
  border-color: var(--lab-primary);
  color: var(--lab-primary);
}

.lab-release__tag--minor {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

.lab-release__tag--patch {
  background: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
  color: #f59e0b;
}

.lab-release__tag--hotfix {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
}

.lab-release__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.lab-release__date {
  font-size: 13px;
  color: var(--lab-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lab-release__date svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.lab-release__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.lab-release__desc {
  color: var(--lab-text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Changes Grid - Three column layout */
.lab-release__changes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .lab-release__changes {
    grid-template-columns: 1fr;
  }
}

.lab-release__group {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.lab-release__group:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.lab-release__group--features {
  border-left: 3px solid var(--lab-primary);
}

.lab-release__group--improvements {
  border-left: 3px solid #10b981;
}

.lab-release__group--fixes {
  border-left: 3px solid #f59e0b;
}

.lab-release__group h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lab-release__group--features h5 { color: var(--lab-primary); }
.lab-release__group--improvements h5 { color: #10b981; }
.lab-release__group--fixes h5 { color: #f59e0b; }

.lab-release__icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.lab-release__group--features .lab-release__icon {
  background: rgba(139, 92, 246, 0.15);
}

.lab-release__group--improvements .lab-release__icon {
  background: rgba(16, 185, 129, 0.15);
}

.lab-release__group--fixes .lab-release__icon {
  background: rgba(245, 158, 11, 0.15);
}

.lab-release__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lab-release__group li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.lab-release__group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.lab-release__group--features li::before {
  background: var(--lab-primary);
  box-shadow: 0 0 6px var(--lab-primary);
}

.lab-release__group--improvements li::before {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.lab-release__group--fixes li::before {
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lab-releases__list::before {
    left: 20px;
  }
  
  .lab-release {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  
  .lab-release__dot {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .lab-release__version h3 {
    font-size: 1.5rem;
  }
  
  .lab-release__header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lab-release__meta {
    align-items: flex-start;
    flex-direction: row;
    gap: 16px;
  }
}

/* ============================================
   VIP Info Card
   ============================================ */
.lab-vip-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lab-surface), var(--lab-surface-light));
  border: 1px solid var(--lab-border);
}

.lab-vip-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  border-radius: 20px;
}

.lab-vip-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.lab-vip-card__content {
  flex: 1;
}

.lab-vip-card__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lab-vip-card__content p {
  color: var(--lab-text-muted);
  margin-bottom: 20px;
}

.lab-vip-card__levels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lab-vip-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--lab-surface);
  border-radius: 12px;
  min-width: 70px;
}

.lab-vip-level__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--lab-primary);
}

.lab-vip-level__points {
  font-size: 11px;
  color: var(--lab-text-muted);
}

.lab-vip-level--active {
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  border: none;
}

.lab-vip-level--active .lab-vip-level__badge {
  color: white;
}

.lab-vip-level--active .lab-vip-level__points {
  color: rgba(255, 255, 255, 0.85);
}

.lab-vip-card__status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: color-mix(in srgb, var(--lab-success) 15%, transparent);
  border: 1px solid var(--lab-success);
  border-radius: 12px;
  color: var(--lab-success);
  font-weight: 500;
}

.lab-vip-card__check svg {
  stroke: var(--lab-success);
}

/* ============================================
   Empty State
   ============================================ */
.lab-empty {
  text-align: center;
  padding: 60px 40px;
  border-radius: 16px;
}

.lab-empty--wide {
  grid-column: 1 / -1;
}

.lab-empty svg {
  margin-bottom: 16px;
  stroke: var(--lab-text-muted);
}

.lab-empty p {
  color: var(--lab-text-muted);
  margin-bottom: 20px;
}

/* ============================================
   Modal
   ============================================ */
.lab-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lab-modal[hidden] {
  display: none;
}

.lab-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lab-modal__container {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 24px;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lab-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lab-surface);
  border: 1px solid var(--lab-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lab-modal__close:hover {
  background: var(--lab-danger);
  border-color: var(--lab-danger);
}

.lab-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--lab-text);
}

.lab-modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.lab-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  border-radius: 16px;
}

.lab-modal__icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.lab-modal__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lab-modal__header p {
  color: var(--lab-text-muted);
  font-size: 14px;
}

/* ============================================
   Form
   ============================================ */
.lab-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lab-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lab-form__field label {
  font-size: 14px;
  font-weight: 500;
}

.lab-form__field input,
.lab-form__field select,
.lab-form__field textarea {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: var(--lab-text);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lab-form__field input:focus,
.lab-form__field select:focus,
.lab-form__field textarea:focus {
  outline: none;
  border-color: var(--lab-primary);
  box-shadow: 0 0 0 3px var(--lab-primary-glow);
}

/* Custom select dropdown styling */
.lab-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.lab-form__field select option {
  background: rgb(15, 23, 42);
  color: var(--lab-text);
  padding: 12px 16px;
}

.lab-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.lab-form__hint {
  font-size: 12px;
  color: var(--lab-text-muted);
}

.lab-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.lab-form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lab-form__submit-loading .spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   Success State
   ============================================ */
.lab-modal__success {
  text-align: center;
  padding: 20px 0;
}

.lab-modal__success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--lab-success) 20%, transparent);
  border-radius: 50%;
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.lab-modal__success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--lab-success);
}

.lab-modal__success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lab-modal__success p {
  color: var(--lab-text-muted);
  margin-bottom: 24px;
}

/* ============================================
   Idea Cost Notice
   ============================================ */
.lab-cost-notice {
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lab-cost-notice__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.lab-cost-notice__badge--free {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.lab-cost-notice__badge--free svg {
  stroke: #10b981;
}

.lab-cost-notice__badge--vip {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1));
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.lab-cost-notice__badge--vip svg {
  stroke: #a78bfa;
}

.lab-cost-notice__badge--cost {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.lab-cost-notice__badge--cost svg {
  stroke: #fbbf24;
}

.lab-cost-notice__equivalent {
  font-size: 13px;
  color: var(--lab-text);
  margin: 4px 0 8px;
  opacity: 0.8;
}

.lab-cost-notice__hint {
  font-size: 12px;
  color: var(--lab-text-muted);
  margin: 0;
  line-height: 1.5;
}

.lab-cost-notice__hint strong {
  color: #a78bfa;
}

.lab-cost-notice__warning {
  color: #f87171;
  font-weight: 500;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .lab-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .lab-hero__stats {
    gap: 16px;
  }
  
  .lab-hero__stat {
    min-width: 100px;
    padding: 12px 16px;
  }
  
  .lab-hero__stat-value {
    font-size: 1.5rem;
  }
  
  .lab-section {
    padding: 60px 0;
  }
  
  .lab-section__header {
    flex-direction: column;
  }
  
  .lab-roadmap__timeline::before {
    left: 15px;
  }
  
  .lab-roadmap__item {
    padding: 16px;
  }
  
  .lab-roadmap__status {
    width: 16px;
  }
  
  .lab-ideas__grid {
    grid-template-columns: 1fr;
  }
  
  .lab-vip-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  
  .lab-vip-card__levels {
    justify-content: center;
  }
  
  .lab-modal__container {
    padding: 24px;
  }
  
  .lab-form__actions {
    flex-direction: column;
  }
  
  .lab-form__actions .btn {
    width: 100%;
  }
}

/* ============================================
   Form Submit Button States
   ============================================ */
.lab-form__submit-text,
.lab-form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lab-form__submit-text[hidden],
.lab-form__submit-loading[hidden] {
  display: none !important;
}

.lab-form__submit-loading .spinner {
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   Custom Select Dropdown
   ============================================ */
.lab-select {
  position: relative;
}

.lab-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: var(--lab-text);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lab-select__trigger:hover {
  border-color: var(--lab-primary);
}

.lab-select__trigger:focus {
  outline: none;
  border-color: var(--lab-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.lab-select__arrow {
  transition: transform 0.2s ease;
}

.lab-select.is-open .lab-select__arrow {
  transform: rotate(180deg);
}

.lab-select__value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lab-select__value i {
  font-size: 16px;
  color: var(--lab-primary);
}

.lab-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0f172a;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lab-select.is-open .lab-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lab-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lab-select__option:hover {
  background: rgba(139, 92, 246, 0.1);
}

.lab-select__option.is-selected {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.lab-select__option i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 8px;
  font-size: 14px;
  color: var(--cat-color, var(--lab-primary));
}

.lab-select__option span {
  flex: 1;
  font-size: 14px;
}

/* ============================================
   Horizontal Timeline Roadmap
   ============================================ */
.lab-timeline {
  position: relative;
  margin: 0 -20px;
  padding: 20px 0 20px;
  overflow: visible;
}

.lab-timeline__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 60px 40px 40px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--lab-primary) transparent;
}

.lab-timeline__track::-webkit-scrollbar {
  height: 6px;
}

.lab-timeline__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.lab-timeline__track::-webkit-scrollbar-thumb {
  background: var(--lab-primary);
  border-radius: 3px;
}

/* Start/End points */
.lab-timeline__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 30px;
}

.lab-timeline__beacon,
.lab-timeline__destination {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  position: relative;
}

.lab-timeline__beacon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.lab-timeline__destination {
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.lab-timeline__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--lab-text-muted);
  text-transform: uppercase;
}

/* Segments */
.lab-timeline__segment {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  animation: segmentAppear 0.5s ease backwards;
  animation-delay: calc(var(--seg-index) * 0.1s);
}

@keyframes segmentAppear {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Connector lines */
.lab-timeline__connector {
  width: 60px;
  display: flex;
  align-items: center;
  padding-top: 55px;
  flex-shrink: 0;
}

.lab-timeline__line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 2px;
}

.lab-timeline__line--done {
  background: linear-gradient(90deg, #10b981, #059669);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.lab-timeline__line--active {
  background: linear-gradient(90deg, var(--lab-primary), var(--lab-accent));
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.lab-timeline__line--active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--lab-accent), transparent);
  animation: lineGlow 1.5s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.lab-timeline__line--fade {
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}

/* Cards */
.lab-timeline__card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  padding-top: 35px;
  margin-top: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.lab-timeline__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.lab-timeline__card--active {
  border-color: var(--lab-primary);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.lab-timeline__card--completed {
  border-color: rgba(16, 185, 129, 0.3);
}

/* Status indicator */
.lab-timeline__indicator {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.lab-timeline__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lab-surface);
  border: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--lab-text-muted);
  transition: all 0.3s ease;
}

.lab-timeline__card--active .lab-timeline__dot {
  background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
  border-color: var(--lab-primary);
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.lab-timeline__card--completed .lab-timeline__dot {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  color: white;
}

.lab-timeline__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--lab-primary);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Card content */
.lab-timeline__content {
  padding-top: 0;
}

.lab-timeline__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lab-timeline__quarter {
  padding: 5px 10px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lab-primary);
}

.lab-timeline__cat {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  color: var(--cat-color, var(--lab-primary));
}

.lab-timeline__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.3;
}

.lab-timeline__desc {
  font-size: 13px;
  color: var(--lab-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* View More Button */
.lab-timeline__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-bottom: 14px;
  background: none;
  border: none;
  color: var(--lab-primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lab-timeline__more:hover {
  color: var(--lab-accent);
}

.lab-timeline__more:hover i {
  transform: translateX(3px);
}

.lab-timeline__more i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

/* Progress */
.lab-timeline__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lab-timeline__bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.lab-timeline__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lab-primary), var(--lab-accent));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.lab-timeline__progress span {
  font-size: 12px;
  font-weight: 700;
  color: var(--lab-primary);
  min-width: 35px;
}

/* Badges */
.lab-timeline__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.lab-timeline__badge--done {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.lab-timeline__badge--soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--lab-text-muted);
}

/* Scroll hint */
.lab-timeline__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--lab-text-muted);
  animation: hintPulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.lab-timeline__hint i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .lab-timeline {
    margin: 0 -16px;
  }
  
  .lab-timeline__track {
    padding: 50px 20px 30px;
  }
  
  .lab-timeline__card {
    width: 220px;
    padding: 16px;
    padding-top: 30px;
  }
  
  .lab-timeline__connector {
    width: 30px;
  }
  
  .lab-timeline__beacon,
  .lab-timeline__destination {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  
  .lab-timeline__dot {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .lab-timeline__indicator {
    top: -20px;
  }
  
  .lab-timeline__title {
    font-size: 0.9rem;
  }
  
  .lab-timeline__desc {
    font-size: 12px;
  }
  
  .lab-timeline__point {
    padding-top: 20px;
  }
  
  .lab-timeline__label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .lab-timeline__card {
    width: 200px;
  }
  
  .lab-timeline__connector {
    width: 20px;
  }
  
  .lab-timeline__hint {
    font-size: 11px;
  }
}

/* ============================================
   Roadmap Detail Modal
   ============================================ */
.lab-modal--roadmap .lab-modal__container {
  max-width: 540px;
}

.lab-modal__header--roadmap {
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-modal__header--roadmap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.lab-roadmap-modal__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lab-roadmap-modal__status--in_progress {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
  color: var(--lab-primary);
}

.lab-roadmap-modal__status--completed {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.lab-roadmap-modal__status--planned {
  background: rgba(255, 255, 255, 0.05);
  color: var(--lab-text-muted);
}

.lab-roadmap-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lab-roadmap-modal__quarter {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lab-text);
}

.lab-roadmap-modal__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 14px;
}

.lab-modal__body {
  padding: 24px 0;
}

.lab-roadmap-modal__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lab-text-muted);
  white-space: pre-wrap;
}

.lab-roadmap-modal__progress {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-roadmap-modal__progress-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--lab-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lab-roadmap-modal__progress .lab-timeline__progress {
  margin-bottom: 0;
}

.lab-modal__footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}
