/* ==========================================================================
   1. Theme Variables & Reset
   ========================================================================== */
:root {
  --color-bg-dark: #08080c;
  --color-bg-card: #111116;
  --color-bg-card-hover: #16161f;
  --color-border: #1f1f2e;
  --color-text-primary: #ffffff;
  --color-text-secondary: #9ca3af;
  --color-text-muted: #6b7280;
  
  --color-purple-primary: #7c3aed;
  --color-purple-light: #a78bfa;
  --color-purple-dark: #6d28d9;
  --color-purple-glow: rgba(124, 58, 237, 0.15);
  
  --color-sophistication: #9061f9;
  --color-energy: #ff9000;
  --color-warmth: #10b981;
  
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-outfit: 'Outfit', var(--font-inter);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  max-width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252538;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #363652;
}

/* ==========================================================================
   2. Layout & Utility Classes (Mobile Default)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.max-w-md {
  max-width: 800px;
}

.max-w-sm {
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.w-full {
  width: 100%;
}

.bg-darker {
  background-color: #050508;
}

.section-padding {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

/* Subtle Purple Geometric Grid & Dot Pattern */
#features,
#sonic-identity,
.bottom-cta-section {
  background-image: 
    radial-gradient(circle, rgba(124, 58, 237, 0.15) 1.5px, transparent 1.5px),
    linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 40px 40px;
  background-position: center center;
}

/* Glowing Backdrops */
.glow-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.glow-hero {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
}

.glow-dna {
  bottom: 20%;
  right: -100px;
  width: 100%;
  max-width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(144, 97, 249, 0.2) 0%, transparent 70%);
}

.glow-cta {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #4c1d95 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-purple-primary) 0%, var(--color-purple-dark) 100%);
  color: var(--color-text-primary);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(167, 139, 250, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #8b5cf6 0%, var(--color-purple-primary) 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-primary);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--color-text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-text {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

.btn-large {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--border-radius-md);
  width: 100%;
}

.icon-play {
  margin-right: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   3. Header Navigation (Mobile-First Styles)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(8, 8, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(5, 5, 8, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-outfit);
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
  position: relative;
  z-index: 1001; /* Keep logo above menu overlay */
}

.logo-icon {
  color: #8b5cf6;
}

/* Hide desktop navigation by default */
.nav-links, 
.header-actions {
  display: none;
}

/* Mobile Toggle Hamburger Icon */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1001; /* Must sit above mobile menu */
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Transform Hamburger to 'X' Close icon */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Slide-out Menu Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%; /* Fully offscreen on the right */
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(11, 11, 16, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1000;
  padding: 100px 24px 40px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block; /* Always render layout, control entry with transform */
}

.mobile-nav-overlay.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

.mobile-nav-links a:hover {
  color: var(--color-text-primary);
  padding-left: 4px;
}

.mobile-nav-links hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 10px 0;
}

.mobile-nav-links .btn-primary {
  margin-top: 10px;
}

/* ==========================================================================
   4. Hero Section & Logo Wall (Mobile-First)
   ========================================================================== */
.hero-section {
  padding-top: 110px;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Fast GPU-Accelerated Background Soundwave Bars */
.hero-bg-bars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  padding: 0 4%;
}

.hero-bg-bar {
  flex: 1;
  max-width: 6px;
  height: 90%;
  margin: 0 3px;
  background: linear-gradient(to bottom, transparent, var(--color-purple-primary) 30%, var(--color-purple-light) 50%, var(--color-purple-dark) 70%, transparent);
  border-radius: 100px;
  transform: scaleY(0.45);
  transform-origin: center;
  animation: bg-bar-pulse 3s ease-in-out infinite;
}

/* organic wave delays using small number of selectors */
.hero-bg-bar:nth-child(2n) { animation-duration: 2.5s; animation-delay: -0.4s; }
.hero-bg-bar:nth-child(3n) { animation-duration: 1.8s; animation-delay: -1.1s; }
.hero-bg-bar:nth-child(5n) { animation-duration: 4.2s; animation-delay: -2.3s; }
.hero-bg-bar:nth-child(7n) { animation-duration: 3.5s; animation-delay: -0.9s; }
.hero-bg-bar:nth-child(11n) { animation-duration: 2.1s; animation-delay: -1.6s; }

@keyframes bg-bar-pulse {
  0% { transform: scaleY(0.3); }
  50% { transform: scaleY(0.85); }
  100% { transform: scaleY(0.3); }
}

/* AuraFlow Brand DNA Showcase Cards (Mobile scroll snap) */
/* AuraFlow Brand DNA Showcase Cards (Coverflow Carousel Layout) */
.brand-dna-showcase {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 1200px;
  margin: 36px auto 48px auto;
  display: block;
  overflow: hidden; /* Prevent horizontal page scrolling on mobile */
  user-select: none;
  cursor: grab;
}

.brand-dna-showcase:active {
  cursor: grabbing;
}

/* AuraFlow Brand DNA Showcase Cards */
.mock-window-card {
  background: rgba(17, 17, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 35px rgba(124, 58, 237, 0.08);
  height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 320px;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, left 0.5s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.5s ease, height 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Static Player Card Override */
.mock-window-card.static-player-card {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 10 !important;
  margin: 0 auto;
  height: 480px !important;
}

/* Carousel Coverflow Positions */
.mock-window-card.pos-center {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.0);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.mock-window-card.pos-left {
  left: calc(50% - 360px);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.7;
  z-index: 2;
  pointer-events: auto;
}

.mock-window-card.pos-right {
  left: calc(50% + 360px);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.7;
  z-index: 2;
  pointer-events: auto;
}

.mock-window-card.pos-hidden-left {
  left: calc(50% - 600px);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.mock-window-card.pos-hidden-right {
  left: calc(50% + 600px);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Card hover effects for carousel positions */
.mock-window-card.pos-center:hover {
  transform: translate(-50%, -52%) scale(1.02);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(124, 58, 237, 0.15);
}

.mock-window-card.pos-left:hover {
  transform: translate(-50%, -52%) scale(0.92);
  opacity: 0.9;
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(124, 58, 237, 0.15);
}

.mock-window-card.pos-right:hover {
  transform: translate(-50%, -52%) scale(0.92);
  opacity: 0.9;
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(124, 58, 237, 0.15);
}

/* Tablet sizing and positioning */
@media (max-width: 1024px) {
  .brand-dna-showcase {
    height: 580px;
  }
  .mock-window-card.pos-left {
    left: calc(50% - 220px);
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.65;
  }
  .mock-window-card.pos-right {
    left: calc(50% + 220px);
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.65;
  }
  .mock-window-card.pos-hidden-left {
    left: calc(50% - 440px);
  }
  .mock-window-card.pos-hidden-right {
    left: calc(50% + 440px);
  }
}

/* Mobile sizing and positioning */
@media (max-width: 768px) {
  .brand-dna-showcase {
    height: 560px;
  }
  .mock-window-card {
    width: 290px;
  }
  .mock-window-card.pos-center {
    transform: translate(-50%, -50%) scale(1.0);
  }
  .mock-window-card.pos-left {
    left: calc(50% - 130px);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.45;
  }
  .mock-window-card.pos-right {
    left: calc(50% + 130px);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.45;
  }
  .mock-window-card.pos-hidden-left {
    left: calc(50% - 260px);
  }
  .mock-window-card.pos-hidden-right {
    left: calc(50% + 260px);
  }
}

.mock-window-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.mock-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-window-dots {
  display: flex;
  gap: 6px;
}

.mock-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.mock-window-title {
  font-family: var(--font-outfit);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

/* Brand Image & Floating Play button styling */
.brand-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mock-window-card:hover .brand-cover-image {
  transform: scale(1.05);
}

.btn-brand-play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-purple-primary);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
  border: 1px solid rgba(167, 139, 250, 0.2);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s, box-shadow 0.2s;
  z-index: 10;
  padding: 0;
}

.btn-brand-play:hover {
  background-color: var(--color-purple-light);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.6);
}

.btn-brand-play.playing {
  background: #dc2626;
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.icon-play-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
  padding: 20px 20px 72px 20px;
  box-sizing: border-box;
}

.brand-info {
  text-align: left;
  max-width: 100%;
}

.brand-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.brand-title {
  font-family: var(--font-outfit);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.brand-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.brand-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.brand-metrics span {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--color-text-secondary);
}

/* Visualizer (aligned at the bottom of each card) */
.mock-window-visualizer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2px;
  padding: 0 16px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.vis-bar {
  flex: 1;
  height: 100%;
  background: linear-gradient(to top, rgba(124, 58, 237, 0.15), var(--color-purple-light));
  border-radius: 4px 4px 0 0;
  transform: scaleY(0.12);
  transform-origin: bottom;
}

/* Spotify Canvas-style card styles (Nike card default canvas look) */
.brand-cover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.canvas-card {
  height: 540px !important;
  background: transparent !important;
  border-color: rgba(124, 58, 237, 0.15) !important; /* Subtle Cady purple border */
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 35px rgba(124, 58, 237, 0.05) !important;
}

.canvas-card.side-card {
  height: 480px !important; /* Smaller height for Starbucks and Apple side cards */
}

.canvas-card.canvas-active {
  border-color: rgba(124, 58, 237, 0.45) !important; /* Bright Cady purple glow border */
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.6), 0 0 45px rgba(124, 58, 237, 0.25) !important;
}

/* Glassmorphic dark overlay for readability */
.canvas-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Darker overlay by default for higher text contrast */
  transition: background 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.canvas-card.canvas-active::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%); /* Darker top/bottom gradient overlay when active video plays */
}

.canvas-card .mock-window-header {
  background-color: transparent;
  border-bottom: none;
  position: relative;
  z-index: 5;
}

.canvas-card .mock-window-title {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.canvas-card .brand-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: none;
  z-index: 1;
}

.canvas-card .brand-cover-image {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.canvas-card.canvas-active.has-video .brand-cover-image {
  opacity: 0;
}

.canvas-card.canvas-active.has-video .brand-cover-video {
  opacity: 1;
}

.canvas-card .slide-content {
  position: relative;
  z-index: 5;
  justify-content: flex-end !important;
  padding: 20px 20px 70px 20px !important;
}

.canvas-card .brand-info {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  padding: 0 !important;
  padding-right: 64px !important; /* Make room for the play button on the right */
  box-shadow: none !important;
  margin-bottom: 20px !important; /* Space above visualizer */
}

.canvas-card .brand-title {
  font-size: 1.8rem !important; /* Larger title like "Lay Low" */
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.canvas-card .brand-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  margin-bottom: 12px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
  max-width: 90%;
}

.canvas-card .brand-tag {
  color: rgba(255, 255, 255, 0.6) !important; /* Muted white tag */
  font-size: 0.7rem !important;
  letter-spacing: 1.5px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.canvas-card .brand-metrics span {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-size: 0.7rem !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.canvas-card .btn-brand-play {
  position: absolute;
  bottom: 72px !important;
  right: 20px !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 48px !important;
  height: 48px !important;
  background-color: var(--color-purple-primary) !important;
  border-color: rgba(167, 139, 250, 0.2) !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4) !important;
  z-index: 10;
  opacity: 1 !important;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s, box-shadow 0.2s !important;
}

.canvas-card .btn-brand-play:hover {
  background-color: var(--color-purple-light) !important;
  transform: scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.6) !important;
}

.canvas-card .btn-brand-play.playing {
  background-color: #dc2626 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4) !important;
  opacity: 1 !important;
}

.canvas-card .mock-window-visualizer {
  z-index: 5;
  opacity: 0.95;
}

.canvas-card .vis-bar {
  background: linear-gradient(to top, rgba(124, 58, 237, 0.15), var(--color-purple-light)); /* Cady purple visualizer */
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

/* Track Progress Bar Styles */
.track-progress-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.progress-bar-rail {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-purple-light);
  border-radius: 2px;
  transition: width 0.25s linear; /* Smooth progress update transition */
}

.progress-time {
  user-select: none;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}



.badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--color-purple-light);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 8px #8b5cf6;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

.btn-coming-soon-wrapper {
  position: relative;
  display: inline-block;
}

.badge-coming-soon {
  position: absolute;
  top: -10px;
  right: -8px;
  background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-purple-primary) 100%);
  color: var(--color-text-primary);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
  pointer-events: none;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-outfit);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 100%;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  flex: 1;
  width: auto;
  padding: 14px 16px;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

/* Trusted Brands */
.trusted-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.trusted-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.logo-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.logo-marquee-container:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.brand-logo {
  font-family: var(--font-outfit);
  font-size: 1.1rem;
  font-weight: 600;
  color: #4b5563;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  cursor: default;
  user-select: none;
  transform-origin: center;
}

.brand-logo:hover {
  color: var(--color-text-secondary);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-25%, 0, 0);
  }
}

/* ==========================================================================
   5. Features Grid (Mobile Default)
   ========================================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-outfit);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.section-header {
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 32px 28px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 280px;
  max-width: 360px;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background-color: var(--color-bg-card-hover);
  transform: translateY(-2px);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(124, 58, 237, 0.1);
  color: var(--color-purple-light);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   6. How It Works Timeline (Mobile Default)
   ========================================================================== */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: -28px;
  top: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  border: 2px solid var(--color-purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-purple-light);
  z-index: 2;
}

.timeline-content {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ==========================================================================
   7. Sonic Identity Grid & Sliders (Mobile Default)
   ========================================================================== */
.dna-grid-layout {
  display: grid;
  grid-template-columns: 1fr; /* Stack layout on mobile */
  gap: 40px;
}

.dna-details, 
.dna-details h2, 
.dna-details p {
  text-align: center;
}

.dna-bullets {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dna-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.icon-check {
  color: var(--color-purple-light);
  flex-shrink: 0;
}

.dna-card {
  background: rgba(17, 17, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dna-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dna-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 1.05rem;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
}

.pulse-dot {
  width: 4px;
  height: 4px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-dot-green 1.8s infinite;
}

@keyframes pulse-dot-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  77% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dna-sliders-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.dna-slider-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slider-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.slider-name {
  color: var(--color-text-secondary);
}

.slider-percentage {
  font-weight: 600;
}

.slider-track-wrapper {
  position: relative;
  width: 100%;
}

.dna-range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #1c1c24;
  outline: none;
  cursor: pointer;
}

.dna-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-text-primary);
  border: 2px solid;
  transition: transform 0.15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.dna-range-input.accent-sophistication::-webkit-slider-thumb {
  border-color: var(--color-sophistication);
}
.dna-range-input.accent-sophistication {
  background: linear-gradient(to right, var(--color-sophistication) var(--value, 85%), #1c1c24 var(--value, 85%));
}

.dna-range-input.accent-energy::-webkit-slider-thumb {
  border-color: var(--color-energy);
}
.dna-range-input.accent-energy {
  background: linear-gradient(to right, var(--color-energy) var(--value, 62%), #1c1c24 var(--value, 62%));
}

.dna-range-input.accent-warmth::-webkit-slider-thumb {
  border-color: var(--color-warmth);
}
.dna-range-input.accent-warmth {
  background: linear-gradient(to right, var(--color-warmth) var(--value, 78%), #1c1c24 var(--value, 78%));
}

.dna-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.dna-tag {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.synthesizer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.btn-synth-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-purple-primary);
  color: var(--color-text-primary);
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-synth-play:hover {
  background-color: var(--color-purple-light);
}

.btn-synth-play.playing {
  background-color: #dc2626;
}

.audio-wave-anim {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.audio-wave-anim.hidden {
  display: none;
}

.audio-wave-anim span {
  width: 3px;
  height: 100%;
  background-color: var(--color-purple-light);
  border-radius: 2px;
  animation: bounce-wave 0.8s ease-in-out infinite alternate;
}

.audio-wave-anim span:nth-child(2) { animation-delay: 0.15s; background-color: var(--color-sophistication); }
.audio-wave-anim span:nth-child(3) { animation-delay: 0.3s; background-color: var(--color-energy); }
.audio-wave-anim span:nth-child(4) { animation-delay: 0.45s; background-color: var(--color-warmth); }
.audio-wave-anim span:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce-wave {
  0% { height: 4px; }
  100% { height: 16px; }
}

/* ==========================================================================
   8. Pricing Cards (Mobile Default)
   ========================================================================== */
.pricing-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pricing-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 480px; /* Wider cards on mobile screen widths */
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.premium {
  background-color: #0b0b12;
  border: 2px solid var(--color-purple-primary);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.pricing-card.premium::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-purple-primary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-purple-primary);
  color: var(--color-text-primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.pricing-header h3 {
  font-family: var(--font-outfit);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.tier-desc {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 2px;
}

.price-value {
  font-family: var(--font-outfit);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.price-value.custom-price {
  font-size: 2.5rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-left: 4px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.pricing-cta {
  margin-top: auto;
}

/* ==========================================================================
   9. CTA & Footer (Mobile Default)
   ========================================================================== */
.bottom-cta-section .section-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.bottom-cta-section .section-desc {
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px 0;
  background-color: #050508;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 100%;
}

.brand-bio {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 12px;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Viewports (under 768px) */
@media (max-width: 767px) {
  .feature-card {
    max-width: 100%;
  }
}


/* ==========================================================================
   10. Progressive Enhancements (Min-Width Media Queries)
   ========================================================================== */

/* Tablet Viewports (768px and up) */
@media (min-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
  }
  
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto 16px auto;
  }
  
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: auto;
    flex: 1;
    padding: 14px 28px;
  }

  .features-grid {
    gap: 24px;
  }
  
  .pricing-grid {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-card {
    max-width: 540px; /* Wider cards on tablet screens */
  }
  
  .cta-actions {
    flex-direction: row;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto 12px auto;
  }

  .footer-links-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop Viewports (1024px and up) */
@media (min-width: 1024px) {
  .section-padding {
    padding: 100px 0;
  }

  /* Header - Show desktop links and hide hamburger toggle */
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-nav-overlay {
    display: none;
  }
  
  .header-container {
    height: 76px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
    position: relative;
  }

  .nav-links a:hover {
    color: var(--color-text-primary);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-purple-primary);
    transition: var(--transition-smooth);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  /* Hero & Glow Sizing updates */
  .hero-section {
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .brand-dna-showcase {
    display: block;
    height: 600px;
    margin-top: 56px;
    margin-bottom: 64px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .mock-window-card.side-card {
    flex: none;
    max-width: none;
    scroll-snap-align: none;
  }

  .mock-window-card.center-card {
    flex: none;
    max-width: none;
    scroll-snap-align: none;
  }

  .mock-window-card.side-card:hover {
    transform: translate(-50%, -52%) scale(0.92);
    opacity: 0.9;
    border-color: rgba(124, 58, 237, 0.25);
  }

  .mock-window-card.center-card:hover {
    transform: translate(-50%, -52%) scale(1.02);
    border-color: rgba(124, 58, 237, 0.35);
  }

  .mock-window-visualizer {
    height: 50px;
    padding: 0 16px;
  }



  .hero-title {
    font-size: 5rem;
    letter-spacing: -2px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .glow-hero {
    max-width: 800px;
    height: 600px;
  }

  .logo-marquee-content {
    gap: 120px;
    padding-right: 120px;
  }
  
  /* Features grid */
  .features-grid {
    gap: 28px;
  }

  .section-header {
    margin-bottom: 64px;
  }

  .feature-card {
    padding: 36px 28px;
  }
  
  /* DNA Section - 2 columns side-by-side */
  .dna-grid-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  
  .dna-details, 
  .dna-details h2, 
  .dna-details p {
    text-align: left;
  }
  
  .dna-bullets {
    align-items: flex-start;
  }
  
  /* Pricing Grid - 3 columns side-by-side */
  .pricing-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    gap: 28px;
  }
  
  .pricing-card {
    max-width: 360px; /* Reset width to standard columns on desktop */
  }
  
  /* Footer layout */
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-brand {
    max-width: 320px;
  }
  
  .footer-links-grid {
    gap: 80px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 32px;
  }
}
