/* General Reset & Core Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #060608;
  --panel-bg: rgba(18, 18, 22, 0.65);
  --panel-border: rgba(212, 175, 55, 0.15);
  --panel-border-hover: rgba(212, 175, 55, 0.4);
  
  --gold-primary: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --gold-dark: #8b6928;
  --gold-light: #fff3b0;
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a5;
  --text-muted: #6e6e73;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Background Glows */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.6;
}

.glow-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
}

.glow-2 {
  bottom: 20%;
  left: -200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0) 70%);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0b0e;
}
::-webkit-scrollbar-thumb {
  background: #1f1f26;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Header & Nav */
.main-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(6, 6, 8, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-top: -1px;
}

.rh-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
}

.rh-text {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.2;
}

.rh-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* Content Layout Wrapper */
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 5% 5rem;
  z-index: 10;
  position: relative;
}

/* HERO SECTION */
.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 6rem;
}

.hero-title-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-large-logo {
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold-light) 10%, var(--gold-primary) 50%, var(--gold-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Feature Grid inside Hero */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-badge {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(8px);
}

.feature-badge:hover {
  transform: translateY(-3px);
  border-color: var(--panel-border-hover);
  background: rgba(18, 18, 22, 0.85);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.05);
}

.badge-icon {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-badge:hover .badge-icon {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

.badge-text h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.badge-text p {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Vision Banner */
.vision-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.03), rgba(0,0,0,0));
  border-left: 3px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  max-width: 550px;
}

.vision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-text h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.vision-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Hero Visual & Floating 3D Cube */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.abstract-cube-network {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.wire-cube {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin-wire 20s linear infinite;
}

.wire-cube .face {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(6, 6, 8, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) inset, 0 0 10px rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.2);
  user-select: none;
  backdrop-filter: blur(2px);
}

.wire-cube .front  { transform: rotateY(0deg) translateZ(80px); }
.wire-cube .back   { transform: rotateY(180deg) translateZ(80px); }
.wire-cube .right  { transform: rotateY(90deg) translateZ(80px); border-color: rgba(212, 175, 55, 0.15); }
.wire-cube .left   { transform: rotateY(-90deg) translateZ(80px); border-color: rgba(212, 175, 55, 0.15); }
.wire-cube .top    { transform: rotateX(90deg) translateZ(80px); }
.wire-cube .bottom { transform: rotateX(-90deg) translateZ(80px); }

@keyframes spin-wire {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* UNIFIED ECOSYSTEM SECTION */
.ecosystem-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 5rem 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.ecosystem-narrative .highlight-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.ecosystem-narrative .body-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.stat-box:hover {
  border-color: var(--panel-border-hover);
  transform: translateX(4px);
}

.stat-icon {
  display: flex;
  align-items: center;
  height: 32px;
  margin-bottom: 0.2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 3D Asset Cube Container */
.cube-container-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 450px;
}

.scene-3d {
  width: 250px;
  height: 250px;
  perspective: 1000px;
  position: relative;
  margin-bottom: 2rem;
}

.interactive-cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: rotateX(-30deg) rotateY(45deg);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: grab;
}

.interactive-cube:active {
  cursor: grabbing;
}

.cube-face {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: #0b0b0f;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.08) inset;
  overflow: hidden;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

/* 3D Face Positions */
.cube-face-real_estate        { transform: rotateY(0deg) translateZ(125px); }
.cube-face-commodities        { transform: rotateY(90deg) translateZ(125px); }
.cube-face-infrastructure     { transform: rotateY(180deg) translateZ(125px); }
.cube-face-renewable_energy   { transform: rotateY(-90deg) translateZ(125px); }
.cube-face-intellectual_property { transform: rotateX(90deg) translateZ(125px); }
.cube-face-luxury_collectibles { transform: rotateX(-90deg) translateZ(125px); }

/* Face Highlights when Selected */
.cube-face.highlight-face {
  border-color: var(--gold-primary);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.25) inset, 0 0 20px rgba(212, 175, 55, 0.15);
}

.face-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.face-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cube-face.highlight-face img {
  opacity: 0.9;
  transform: scale(1.03);
}

.face-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 6, 8, 0.9) 20%, rgba(6, 6, 8, 0));
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 40%;
}

.face-overlay span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.cube-instructions {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.02);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Asset Selector List (Right) */
.asset-selector-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.asset-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(18, 18, 22, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.asset-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.asset-item:hover {
  background: rgba(18, 18, 22, 0.65);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(4px);
}

.asset-item.active {
  background: var(--panel-bg);
  border-color: var(--panel-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(212, 175, 55, 0.03);
}

.asset-item.active::before {
  transform: scaleY(1);
}

.asset-item-icon {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.asset-item.active .asset-item-icon,
.asset-item:hover .asset-item-icon {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.asset-item-details h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.asset-item.active .asset-item-details h4 {
  color: var(--gold-primary);
}

.asset-item-details p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.asset-item-more {
  cursor: default;
}
.asset-item-more:hover {
  transform: none;
  background: rgba(18, 18, 22, 0.3);
  border-color: rgba(255, 255, 255, 0.02);
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 5rem 0;
}

.how-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.how-title-container h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.how-title-container p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 300;
}

.how-filters {
  display: flex;
  gap: 0.5rem;
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.4rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

/* Timeline Components */
.timeline-container {
  position: relative;
  padding: 2rem 0;
  margin-top: 1rem;
}

.timeline-progress-line {
  position: absolute;
  top: 98px; /* Alignment with center of node */
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.timeline-active-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%; /* JS driven active width */
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), var(--gold-primary));
  box-shadow: 0 0 8px var(--gold-glow);
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.step-num-bubble {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(18, 18, 22, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.step-node {
  background: #0b0b0f;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 0px rgba(212, 175, 55, 0);
}

.step-node svg {
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-content {
  padding: 0 1rem;
  transition: all 0.4s ease;
  opacity: 0.6;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

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

/* Timeline Step States */
.timeline-step.active .step-num-bubble {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.timeline-step.active .step-node {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), 0 0 0 6px rgba(212, 175, 55, 0.03);
}

.timeline-step.active .step-node svg {
  opacity: 1;
  transform: scale(1.05);
}

.timeline-step.active .step-content {
  opacity: 1;
}

.timeline-step.active .step-content h3 {
  color: var(--gold-primary);
}

.timeline-step.active .step-content p {
  color: var(--text-secondary);
}

.timeline-step:hover:not(.active) .step-node {
  border-color: var(--panel-border-hover);
  transform: translateY(-2px);
}

.timeline-step:hover:not(.active) .step-node svg {
  opacity: 0.7;
}

/* FOOTER styling */
.main-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030304;
  margin-top: 4rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-title-group {
    justify-content: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-grid {
    max-width: 700px;
    margin: 0 auto 2.5rem;
  }
  
  .vision-banner {
    margin: 0 auto;
    text-align: left;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .stats-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .stat-box {
    flex: 1;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .timeline-progress-line {
    display: none;
  }
  
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .step-num-bubble {
    margin-bottom: 0;
  }
  
  .step-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .step-content {
    padding: 0;
  }
  
  .how-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .how-filters {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .brand-subtitle {
    display: none;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .main-footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-left {
    align-items: center;
  }
}
