@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');
@import 'cursor.css';
@import 'footer.css';
@import 'accordion.css';

/* --- AURORA BACKGROUND SYSTEM --- */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-primary);
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatAurora 20s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, #4c1d95 0%, transparent 70%);
  /* Purple */
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, #be123c 0%, transparent 70%);
  /* Red/Orange */
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 40%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #0f766e 0%, transparent 70%);
  /* Teal */
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes floatAurora {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

:root {
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;

  /* Tuono High-Contrast Dark Theme with Brand Accents */
  --bg-primary: #050505;
  --bg-secondary: #111111;
  --text-primary: #ffffff;
  --text-muted: #888888;
  --border-color: #222222;
  --border: 1px solid var(--border-color);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-studio: 'Fraunces', serif;

  /* Multidot Brand Colors (Mono-Green Enforced) */
  --m-yellow: #22c55e;
  --m-orange: #22c55e;
  --m-blue: #22c55e;
  --m-green: #22c55e;
  /* Futuristic Green Gradient */
  --m-gradient: linear-gradient(135deg, #22c55e 0%, #14532d 100%);

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(40px);
  /* Updated to 40px */

  --container: 1200px;
  --section-padding: 120px;
  --radius-btn: 100px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  /* Subtle Grid Pattern to make Glass visible */
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--text-primary);
  line-height: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: none;
}

.display-1 {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.9;
  color: #fff;
  /* Solid white */
}

.display-2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

section {
  padding: var(--section-padding) 0;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

/* Header - Luxury Floating Navigation */
.header {
  height: 90px;
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2000;
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  height: 90px;
  align-items: center;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.7;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.4;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link {
  opacity: 1;
  color: var(--m-green);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Menu Panels */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: clamp(600px, 85vw, 1100px);
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.menu-section h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-link {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.menu-link .link-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-link .link-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.tag-new {
  font-size: 0.6rem;
  background: var(--m-green);
  color: #000;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Container refinement for Header */
.header .container {
  max-width: 1400px;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .header .container {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    padding: 100px 40px;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-item {
    height: auto;
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 0;
  }

  .mega-menu {
    display: none !important;
    /* Simplified for mobile for now */
  }

  .header-actions {
    display: none;
    /* Hide Start Project button on mobile to save space, or move into menu */
  }
}

/* Navigation Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2005;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Icon Only Style */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  /* Standard badge size restored for text */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
  color: var(--m-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* Specific fix for the hero icon badge (which has no text) */
.hero .badge {
  padding: 0;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
}

.badge-icon {
  height: 32px;
  width: auto;
  display: block;
  -webkit-text-fill-color: initial;
  filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.4));
  /* Green glow */
}

/* Removed legacy color badges */

/* Buttons */
/* Buttons */
.btn {
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smooth spread */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer !important;
  /* Restore normal mouse */
  text-decoration: none;
  font-size: 0.9rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #000;
  background-clip: padding-box;
}

/* Rainbow Background Layer */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  background: conic-gradient(from 0deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3, #ff0000);
  /* Soft blob shape */
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;

  /* SMOKE PROPERTIES - REFINED for TRUE COLORS */
  filter: blur(8px) brightness(1.2);
  /* Reduced blur to keep colors vivid */
  transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
  opacity: 0;

  transition:
    transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease-out;
  /* Fade in quickly to show color */

  z-index: -1;
}

.btn:hover::before {
  /* Expand like gas */
  transform: translate(-50%, -50%) scale(3) rotate(120deg);
  opacity: 1;
  /* Full vibrancy */
}

.btn:hover {
  color: #fff;
  border-color: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  /* Legibility on bright colors */
}

/* Specific button overrides */
.btn-black {
  background-color: #ffffff;
  color: #000000;
}

.btn-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 140px 0;
  border: none;
  position: relative;
  overflow: hidden;
  /* Contain the glow */
}

/* Mouse Interactive Glow */
.hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  /* Large orb */
  height: 600px;
  /* M-Blue glow REMOVED */
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 0;
  filter: blur(80px);
  /* Soften the edges */
  opacity: 0.6;
  transform: translate(-50%, -50%);
  /* Centered on coordinates */
  will-change: transform;
  /* Performance optimization */
  transition: opacity 0.5s ease;
}

.hero .container {
  position: relative;
  z-index: 1;
  /* Keep content on top */
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 24px auto 40px;
  line-height: 1.4;
}

/* Grid System - Futuristic Glass Card (Profico Style) */
.tuono-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
  overflow: visible;
}

/* Note: .grid-item is defined above with Glassmorphism... Wait, actually redefining it here to enforce transparency */
.grid-item {
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  /* PROFICO GLASS */
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.step-num {
  font-size: 2rem;
  /* Reduced to be significantly smaller */
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  opacity: 1;
  color: inherit;
  /* Colors are set inline in HTML */
  -webkit-text-stroke: 0;
}


.grid-item h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}

.grid-item p.text-muted {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #888;
}

.process-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 100px;
  color: #fff;
  transition: all 0.3s ease;
}

.grid-item:hover .process-tag {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Process Grid (Design & Print) - Full Width Glass Rows */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

.process-step {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  /* Internal Layout: Number - Title - Description */
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr;
  align-items: center;
  gap: 40px;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(10px);
  /* Slide right instead of up for rows */
}

.process-step .step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
  line-height: 1;
}

.process-step:hover .step-num {
  color: var(--m-green);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #fff;
}

.process-step p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .process-step .step-num {
    margin-bottom: 8px;
  }
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Note: .product-card is defined above with Glassmorphism */

.product-img-wrap {
  width: 100%;
  height: 450px;
  background: #0a0a0a;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Why Section */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-dot {
  width: 12px;
  height: 12px;
  background: var(--m-green);
  margin-top: 6px;
  flex-shrink: 0;
}

/* Scroll Reveal Animation - DISABLED */
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

[data-reveal].active {
  opacity: 1 !important;
  transform: none !important;
}

/* CRITICAL: Ensure footer legal links are always visible, regardless of reveal state */
.footer-legal-links,
.footer-legal-links a {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (max-width: 900px) {

  .tuono-grid,
  .benefit-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .display-1 {
    font-size: 3rem;
  }
}

/* Override product-card to restore glass consistency */
.product-card {
  border: 1px solid var(--glass-border);
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--m-green);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

/* Keyword Switcher Rolling Animation */
.roll-container {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  height: 1.4em;
  width: auto;
  text-align: left;
  perspective: 2000px;
  position: relative;
  top: -0.1em;
  padding: 0 10px;
  transition: width 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.roll-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.roll-item {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  align-items: center;
  -webkit-text-fill-color: initial;
}

.roll-item:nth-child(1) {
  transform: rotateX(0deg) translateZ(1.1em);
}

.roll-item:nth-child(2) {
  transform: rotateX(-72deg) translateZ(1.1em);
}

.roll-item:nth-child(3) {
  transform: rotateX(-144deg) translateZ(1.1em);
}

.roll-item:nth-child(4) {
  transform: rotateX(-216deg) translateZ(1.1em);
}

.roll-item:nth-child(5) {
  transform: rotateX(-288deg) translateZ(1.1em);
}

.studio-text {
  font-family: var(--font-studio);
  font-style: italic;
  font-weight: 300;
}

/* CTA Section Glow */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: conic-gradient(from 0deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3, #ff0000);
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  animation: ctaSpin 20s linear infinite;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}

@keyframes ctaSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Make the CTA text pop more */
#start .display-1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  /* Lift off the glow */
}

/* --- DESIGN SERVICES GRID --- */
.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.design-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.design-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.design-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
  /* Green Tint Border */
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.design-card:hover::before {
  opacity: 1;
}

.card-arrow {
  margin-top: auto;
  padding-top: 20px;
  color: var(--m-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.design-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.design-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
}

.design-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--m-green);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.design-icon svg path,
.design-icon svg line,
.design-icon svg polyline,
.design-icon svg rect,
.design-icon svg circle {
  stroke: var(--m-green) !important;
}

.design-card:hover .design-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.design-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.design-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design Grid */
@media (max-width: 1024px) {
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SHARED STUDIO STYLES (Printing & Design Hubs) --- */

/* Split Hero Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Glass Image Frame */
.glass-frame {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
}

/* Studio Product Card (Staggered Grid) */
.studio-grid-staggered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.studio-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.studio-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stagger-1 {
  transform: translateY(0);
}

.stagger-2 {
  transform: translateY(40px);
}

@media (max-width: 900px) {
  .stagger-2 {
    transform: translateY(0);
  }
}