:root {
  --primary: #153160;
  --primary-light: #1e468a;
  --accent: #2563eb;
  --bg: #0b0f19;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.03);
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: 'Inter';
  src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradients removed as requested */

/* Button Magnet Transition */
.download-btn, .company-link {
  transition: transform 0.1s ease-out, background-color 0.3s ease, box-shadow 0.3s ease !important;
  will-change: transform;
}

/* Header & Logo */
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  text-align: left;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 0 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .hero-main-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

.hero-header {
  flex: 1;
}

.hero-illustration-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  overflow: visible;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Drawing Animations */
.float-card-1 {
  animation: float 6s ease-in-out infinite;
}

.float-card-2 {
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@media (max-width: 992px) {
  .hero-main-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-header {
    text-align: center;
  }
  
  .hero .tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-illustration {
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-illustration {
    max-width: 260px;
  }
}

/* Split Layout */
.hero-split {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column !important;
    gap: 2rem;
  }
}

.hero-left {
  flex: 1;
  width: 100%;
}

.hero-right {
  flex: 1;
  width: 100%;
}

.app-info-card {
  background: var(--card-bg) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Spotlight Effect Card */
.app-info-card::before, .feature-card::before, .workflow-step .step-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--x, 0) var(--y, 0),
    rgba(255, 255, 255, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.app-info-card:hover::before, .feature-card:hover::before, .workflow-step:hover .step-icon-wrapper::before {
  opacity: 1;
}

.app-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
}

.info-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
}

.info-list li {
  margin-bottom: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  text-align: left !important;
}

.info-list li strong {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
}

.info-list li span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  color: #3b82f6;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Download Button Container */
.download-action {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--accent);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 25px 30px -5px rgba(37, 99, 235, 0.4);
}

.version-info {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.version-highlight {
  color: var(--text);
  font-weight: 500;
}

/* Mockup Img */
.mockup-container {
  margin-top: 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.mockup-img {
  width: 100%;
  height: auto;
  max-width: 600px; 
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mockup-container {
    justify-content: center;
  }
}

.mockup-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.03), transparent 80%);
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
}

.modern-title {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}



/* Gallery Section */
.gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Auto Slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 70px 70px;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.slider-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11; /* Increased to accommodate full image + caption */
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slider-slide.prev {
  transform: translateX(-100%);
}

.slider-slide img {
  width: 100%;
  flex: 1;
  object-fit: contain;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.slider-caption {
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.slider-slide.active .slider-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slider-slide.active .slider-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: -20px;
}

.slider-next {
  right: -20px;
}

@media (max-width: 1100px) {
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

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

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0;
  transition: width 0.1s linear;
  z-index: 10;
}

/* Responsive */
@media (max-width: 900px) {
  .slider-container {
    padding: 0 55px 60px;
  }
  
  .slider-wrapper {
    aspect-ratio: 4 / 3;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-prev {
    left: -50px;
  }
  
  .slider-next {
    right: -50px;
  }
  
  .slider-dots {
    bottom: -40px;
  }
  
  .slider-caption {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 600px) {
  .slider-container {
    padding: 0 45px 50px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .slider-prev {
    left: -40px;
  }
  
  .slider-next {
    right: -40px;
  }
  
  .slider-dots {
    bottom: -35px;
  }
}

/* Workflow Section */
.workflow {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05), transparent 80%);
}

.workflow-container {
  margin-top: 2rem;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible; /* Prevent any clipping of badges */
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  overflow: visible; /* Ensure badge isn't cut */
}

.workflow-step:hover .step-icon-wrapper {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.4);
}

.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  z-index: 10;
}

.step-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.workflow-line {
  flex: 0.5;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  margin-top: 40px;
  opacity: 0.3;
  position: relative;
}

/* Animations for workflow */
@media (max-width: 992px) {
  .workflow-steps {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  
  .workflow-line {
    width: 2px;
    height: 60px;
    margin-top: -2rem;
    margin-bottom: -2rem;
    background: linear-gradient(to bottom, var(--border), var(--accent), var(--border));
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Animation Utilities (Inspired by React Bits) */
.animate-on-scroll {
  /* Default visible state for reliability */
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* We hide them ONLY if JS is active by using a body class or specific utility */
.js-enabled .animate-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(10px);
}

.animate-on-scroll.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* About Nexurah Section */
.about-nexurah {
  padding: 6rem 2rem;
  background: radial-gradient(circle at 50% 10%, rgba(21, 49, 96, 0.2), transparent 70%);
  position: relative;
}

.features::before, .about-nexurah::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    opacity: 0.5;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.about-content .modern-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.about-content .tagline {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.company-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}



.about-actions {
  margin-bottom: 4rem;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.company-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
  background: #1d4ed8;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-tag {
  padding: 0.6rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.service-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-content .modern-title {
    font-size: 2.25rem;
  }
  
  .about-content .tagline {
    font-size: 1.1rem;
  }
}
footer {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .mockup-container {
    padding: 0;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features, .gallery, .workflow, .user-journey, .about-nexurah, footer {
    padding: 3rem 1.5rem;
  }

  .app-info-card {
    padding: 1.5rem;
  }

  .feature-card, .journey-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .slider-container {
    padding: 0 0 50px;
  }

  .slider-btn {
    display: none;
  }

  .slider-wrapper {
    aspect-ratio: 1 / 1;
  }
}

/* Mermaid Container */
.mermaid-container {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.diagram-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}

.mermaid {
    background: transparent !important;
}

/* User Journey Section */
.user-journey {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(21, 49, 96, 0.1), transparent 80%);
}

/* Eliminate horizontal cut lines between sections */
.workflow, .user-journey, .features, .about-nexurah {
    border: none !important;
    position: relative;
}

.workflow::before, .user-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    opacity: 0.5;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.journey-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.journey-phase {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.journey-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.journey-card ul {
    list-style: none;
    padding: 0;
}

.journey-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-card li::before {
    content: "→";
    color: var(--accent);
}

/* Feature Categories */
.feature-category {
    text-align: center;
    margin: 4rem 0 2rem;
}

.category-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 50px;
}

.mt-4 { margin-top: 4rem; }
