/* Mobile-first responsive styles */
@media (max-width: 768px) {
  /* Adjust scene navigation */
  .scene-nav {
    right: 1rem;
  }
  
  /* Stack hero content */
  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 1.1;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Adjust bento grid */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    padding-bottom: 2rem;
  }
  
  .bento-item {
    min-height: 200px;
  }
  
  /* Hide decorative elements on mobile */
  .float-circle,
  .float-square,
  .float-dots {
    display: none;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
