.landing-page {
  width: 100%;
  font-family: var(--font-sans);
  overflow-x: hidden;
  background: #ffffff;
}

/* HEADER OVERRIDE FOR LANDING */
.header {
  background: rgba(3, 7, 18, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.logo-text {
  color: #ffffff !important;
}

/* HERO SECTION */
.hero-section {
  padding: 160px 24px 120px;
  text-align: center;
  position: relative;
  background: #f8fafc;
  color: #0f172a;
  border-bottom: 1px solid #cbd5e1;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Scanlines and CRT monitor effect overlay (Midnight Theme only) */
.theme-midnight .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04));
  background-size: 100% 4px, 6px 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.15;
}

/* Synthwave Background Container */
.synthwave-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Ambient glowing circles in sky */
.synthwave-bg-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 60%, rgba(255, 0, 127, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(0, 242, 254, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 45%);
  z-index: 1;
}

/* Stars / Dust */
.stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 25% 45%, rgba(0, 242, 254, 0.8), transparent),
    radial-gradient(1px 1px at 40% 10%, #ffffff, transparent),
    radial-gradient(2.2px 2.2px at 60% 30%, rgba(255, 0, 127, 0.95), transparent),
    radial-gradient(1px 1px at 75% 70%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 85% 15%, rgba(0, 242, 254, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 90% 65%, #ffffff, transparent),
    radial-gradient(2.2px 2.2px at 5% 75%, rgba(255, 0, 127, 0.75), transparent);
  background-size: 550px 550px;
  opacity: 0.65;
  animation: starsGlow 4s infinite alternate;
  z-index: 1;
}
@keyframes starsGlow {
  0% { opacity: 0.45; }
  100% { opacity: 0.75; }
}

/* Neon Horizon Glow */
.neon-horizon-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 0, 127, 0.3) 0%, rgba(0, 242, 254, 0.2) 45%, transparent 70%);
  z-index: 2;
}

/* 3D Perspective Grid */
.synthwave-grid {
  position: absolute;
  bottom: -150px;
  left: -50%;
  width: 200%;
  height: 450px;
  background-image: 
    linear-gradient(rgba(255, 0, 127, 0.3) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 0, 127, 0.3) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  /* Transform to 3D perspective */
  transform: perspective(220px) rotateX(65deg);
  transform-origin: top center;
  animation: gridMove 20s linear infinite;
  opacity: 0.65;
  z-index: 3;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.1) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.1) 75%, transparent 100%);
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 1200px;
  }
}

/* Retro Sliced Sun */
.retro-sun {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(to top, #ff007f 0%, #ff7700 45%, #ffeb3b 95%, #ffffff 100%);
  
  /* Using standard mask-image with horizontal slices */
  mask-image: linear-gradient(to bottom, 
    black 0%, black 50%, 
    transparent 50%, transparent 54%, 
    black 54%, black 64%, 
    transparent 64%, transparent 68%, 
    black 68%, black 76%, 
    transparent 76%, transparent 80%, 
    black 80%, black 86%, 
    transparent 86%, transparent 90%, 
    black 90%, black 94%, 
    transparent 94%, transparent 97%, 
    black 97%, black 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, 
    black 0%, black 50%, 
    transparent 50%, transparent 54%, 
    black 54%, black 64%, 
    transparent 64%, transparent 68%, 
    black 68%, black 76%, 
    transparent 76%, transparent 80%, 
    black 80%, black 86%, 
    transparent 86%, transparent 90%, 
    black 90%, black 94%, 
    transparent 94%, transparent 97%, 
    black 97%, black 100%
  );
  box-shadow: 0 0 60px rgba(255, 0, 127, 0.45), 0 0 120px rgba(255, 119, 0, 0.25);
  opacity: 0.85;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #006bff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  z-index: 5;
}
.hero-badge svg {
  color: currentColor;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: #102a43;
  max-width: 1000px;
  margin: 0 auto 28px;
  letter-spacing: -1px;
  position: relative;
  z-index: 5;
}
.hero-tagline {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.4px;
  margin: 0 auto 22px;
  max-width: 800px;
  opacity: 0.88;
  position: relative;
  z-index: 5;
}
.app-purpose {
  max-width: 760px;
  margin: 0 auto 72px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-align: left;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
  position: relative;
  z-index: 5;
}
.app-purpose h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0f172a;
}
.app-purpose p,
.app-purpose ul {
  margin: 0 0 12px;
}
.app-purpose ul {
  padding-left: 20px;
}
.app-purpose code {
  font-size: 13px;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
}
.app-purpose-links {
  margin: 18px 0 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 14px;
  font-weight: 600;
}
.app-purpose-links a {
  color: #006bff;
  text-decoration: none;
}
.app-purpose-links a:hover {
  text-decoration: underline;
}
.app-purpose-bottom {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 40px 24px 24px;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border-color, #e2e8f0);
  border-radius: 0;
}
.app-purpose-bottom h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.app-purpose-bottom h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: #0f172a;
}
.neon-script {
  font-family: var(--font-sans);
  font-weight: 800;
  color: #006bff;
  display: inline-block;
  margin: 0 4px;
}
.hero-subtitle {
  font-size: 19px;
  color: #486581;
  max-width: 780px;
  margin: 0 auto 48px;
  line-height: 1.65;
  position: relative;
  z-index: 5;
}
.hero-legal {
  position: relative;
  z-index: 5;
  margin: 8px auto 36px;
  font-size: 14px;
  font-weight: 600;
  color: #006bff;
}
.hero-legal a {
  color: #006bff;
  text-decoration: none;
}
.hero-legal a:hover {
  text-decoration: underline;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
  animation: fadeUp 1.4s ease-out;
}
.hero-actions .btn-primary {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 16px 36px;
  font-weight: 600;
  background: #006bff !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 107, 255, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: #0052cc !important;
  box-shadow: 0 8px 20px rgba(0, 107, 255, 0.35) !important;
}
.hero-actions .btn-secondary {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 16px 36px;
  font-weight: 600;
  background: #ffffff !important;
  color: #102a43 !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: all 0.3s ease;
}
.hero-actions .btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  transform: translateY(-3px);
}

/* Overrides inside hero mockup to match dynamic themes */
.hero-mockup-container {
  position: relative;
  z-index: 5;
  margin-top: 60px;
}
.hero-mockup-container .mockup-frame {
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-mockup-container .mockup-frame:hover {
  border-color: #006bff;
  box-shadow: 0 35px 60px rgba(0, 107, 255, 0.08);
}
.hero-section .demo-control-btn {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
}
.hero-section .demo-control-btn:hover {
  border-color: #006bff;
  background: #f8fafc;
}
.hero-section .demo-control-btn.active {
  background: #eef5ff !important;
  border-color: #006bff !important;
  box-shadow: 0 4px 12px rgba(0, 107, 255, 0.05) !important;
}
.hero-section .demo-control-btn.active .control-text strong {
  color: #006bff !important;
  text-shadow: none !important;
}
.hero-section .demo-control-btn.active .control-icon {
  background: #eef5ff !important;
  color: #006bff !important;
  border: 1px solid rgba(0, 107, 255, 0.15);
}
.hero-section .demo-preview-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05) !important;
  border-radius: 16px;
}

/* DYNAMIC SHOWCASE SECTION */
.showcase-section {
  padding: 100px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.showcase-header {
  max-width: 800px;
  margin: 0 auto 60px;
}
.showcase-subtitle {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.showcase-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}
.showcase-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Interactive Switcher */
.theme-switcher-tabs {
  display: inline-flex;
  background: rgba(0,0,0,0.03);
  padding: 6px;
  border-radius: 100px;
  gap: 4px;
  margin-bottom: 48px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.theme-demo-btn {
  border: none;
  background: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-demo-btn:hover {
  color: var(--text-primary);
}
.theme-demo-btn.active {
  background: white;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.02);
}

/* Showcase Preview Container */
.showcase-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fafbfc;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  padding: 48px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}

/* Mockup Base Structure */
.mockup-card {
  width: 100%;
  max-width: 500px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}
.mockup-header {
  background: #fafafa;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 18px;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: all 0.4s ease;
}
.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}
.mockup-body {
  padding: 32px 28px;
  transition: all 0.4s ease;
}
.mockup-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.mockup-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
  font-size: 20px;
  transition: all 0.4s ease;
}
.mockup-details {
  flex: 1;
}
.mockup-name {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: all 0.4s ease;
}
.mockup-title {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 3px 0 0 0;
  transition: all 0.4s ease;
}
.mockup-bio {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 24px 0;
  transition: all 0.4s ease;
}
.mockup-slots-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #71717a;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}
.mockup-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transition: all 0.4s ease;
}
.mockup-slot {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #006bff;
  background: #eef5ff;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Mockup Themes Variables & Styles */
/* Luxcall */
.preview-luxcall .mockup-card {
  font-family: 'Inter', sans-serif;
  border-radius: 16px;
  border-color: #cbd5e1;
}
.preview-luxcall .mockup-title {
  color: var(--custom-color, #006bff);
}
.preview-luxcall .mockup-slot {
  color: var(--custom-color, #006bff);
  background: var(--custom-color-light, #eef5ff);
  border-color: var(--custom-color, #006bff);
  border-radius: 20px;
}
.preview-luxcall .mockup-slot:hover {
  background: var(--custom-color, #006bff);
  color: white;
}

/* Material (Android) */
.preview-material .showcase-container {
  background-color: #f7f2fa;
}
.preview-material .mockup-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 28px;
  border-color: #eaddff;
  background: #fffbfe;
  box-shadow: 0 10px 30px rgba(103, 80, 164, 0.05);
}
.preview-material .mockup-header {
  border-bottom: 1px solid #eaddff;
  background: #f3edf7;
}
.preview-material .mockup-avatar {
  border-radius: 16px;
  background: var(--custom-color-light, #eaddff);
  color: var(--custom-color, #6750A4);
}
.preview-material .mockup-title {
  color: var(--custom-color, #6750A4);
}
.preview-material .mockup-slot {
  border-radius: 100px;
  border-color: #79747e;
  background: transparent;
  color: var(--custom-color, #6750A4);
}
.preview-material .mockup-slot:hover {
  background: var(--custom-color-light, rgba(103, 80, 164, 0.08));
  border-color: var(--custom-color, #6750A4);
}

/* Néo-Brutalist */
.preview-brutalist .showcase-container {
  background-color: #fffae5;
}
.preview-brutalist .mockup-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 4px;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 #1a1a1a;
  background: #ffffff;
}
.preview-brutalist .mockup-header {
  border-bottom: 3px solid #1a1a1a;
  background: #ffffff;
}
.preview-brutalist .mockup-avatar {
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  background: var(--custom-color, #ffde4d);
  color: #1a1a1a;
}
.preview-brutalist .mockup-name {
  font-weight: 800;
}
.preview-brutalist .mockup-title {
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.preview-brutalist .mockup-slot {
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 3px 3px 0 #1a1a1a;
  font-weight: 800;
}
.preview-brutalist .mockup-slot:hover {
  background: var(--custom-color, #ffde4d);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #1a1a1a;
}

/* Midnight (Sombre & Néon) */
.preview-midnight .showcase-container {
  background: radial-gradient(circle at 50% -20%, color-mix(in srgb, var(--custom-color, #00f2fe) 12%, transparent) 0%, #020617 80%) !important;
  position: relative;
}
.preview-midnight .mockup-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--custom-color, #00f2fe) 40%, transparent) !important;
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--custom-color, #00f2fe) 15%, transparent), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
  color: #f8fafc !important;
}
.preview-midnight .mockup-header {
  border-bottom: 1px solid color-mix(in srgb, var(--custom-color, #00f2fe) 25%, transparent) !important;
  background: rgba(9, 13, 31, 0.5) !important;
}
.preview-midnight .mockup-dot {
  background: var(--custom-color, #00f2fe) !important;
}
.preview-midnight .mockup-avatar {
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--custom-color, #00f2fe) 0%, #8b5cf6 100%) !important;
  color: #020617 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 15px color-mix(in srgb, var(--custom-color, #00f2fe) 50%, transparent) !important;
}
.preview-midnight .mockup-name {
  color: #ffffff !important;
  text-shadow: 0 0 8px color-mix(in srgb, var(--custom-color, #00f2fe) 40%, transparent) !important;
}
.preview-midnight .mockup-title {
  color: var(--custom-color, #00f2fe) !important;
  font-weight: 700 !important;
  text-shadow: 0 0 5px color-mix(in srgb, var(--custom-color, #00f2fe) 30%, transparent) !important;
}
.preview-midnight .mockup-bio {
  color: #94a3b8 !important;
}
.preview-midnight .mockup-slots-title {
  color: #94a3b8 !important;
}
.preview-midnight .mockup-slot {
  border-radius: 100px !important;
  border: 1px solid color-mix(in srgb, var(--custom-color, #00f2fe) 50%, transparent) !important;
  background: rgba(15, 23, 42, 0.6) !important;
  color: var(--custom-color, #00f2fe) !important;
  text-shadow: 0 0 5px color-mix(in srgb, var(--custom-color, #00f2fe) 20%, transparent) !important;
  transition: all 0.3s ease !important;
}
.preview-midnight .mockup-slot:hover {
  background: linear-gradient(135deg, var(--custom-color, #00f2fe) 0%, #8b5cf6 100%) !important;
  color: #020617 !important;
  box-shadow: 0 0 15px color-mix(in srgb, var(--custom-color, #00f2fe) 60%, transparent) !important;
  border-color: transparent !important;
  text-shadow: none !important;
  transform: translateY(-2px) !important;
}

/* Glamour (Chic & Rose Pétale) */
.preview-glamour .showcase-container {
  background: radial-gradient(circle at 0% 0%, #fff0f3 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, #ffe3e8 0%, transparent 60%),
              radial-gradient(circle at 50% 50%, #ffffff 0%, #fff0f3 100%) !important;
}
.preview-glamour .mockup-card {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 24px;
  border: 1px solid rgba(255, 42, 122, 0.1);
  background: #ffffff !important;
  box-shadow: 0 15px 40px rgba(224, 27, 99, 0.05);
}
.preview-glamour .mockup-avatar {
  border-radius: 50%;
  background: #fff0f5;
  color: var(--custom-color, #ff2a7a);
  font-weight: 700;
}
.preview-glamour .mockup-name {
  color: #3c091a !important;
}
.preview-glamour .mockup-title {
  color: var(--custom-color, #ff2a7a);
}
.preview-glamour .mockup-slot {
  border-radius: 100px;
  border-color: rgba(255, 42, 122, 0.2);
  background: #ffffff;
  color: var(--custom-color, #ff2a7a);
}
.preview-glamour .mockup-slot:hover {
  background: linear-gradient(135deg, #ff2a7a 0%, #e01b63 100%);
  color: white;
  border-color: transparent;
}

/* Arcane (Mystique & Grimoire) */
.preview-arcane .showcase-container {
  background: 
    radial-gradient(circle at 25% 25%, rgba(197, 155, 39, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.07) 0%, transparent 50%),
    #fdfaf2 !important;
}
.preview-arcane .mockup-card {
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 18px 4px 18px 4px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #faf5e8 100%) !important;
  color: #322013 !important;
  box-shadow: 
    0 15px 35px rgba(197, 155, 39, 0.08), 
    inset 0 0 20px rgba(197, 155, 39, 0.02) !important;
}
.preview-arcane .mockup-header {
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  background: #faf5e8 !important;
}
.preview-arcane .mockup-dot {
  background: var(--custom-color, #dfb15b) !important;
}
.preview-arcane .mockup-avatar {
  border-radius: 10px 2px 10px 2px;
  background: #faf5e8;
  border: 1px solid var(--custom-color, #dfb15b);
  color: var(--custom-color, #dfb15b);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.15);
}
.preview-arcane .mockup-name {
  color: #322013 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  text-shadow: 0 1px 2px rgba(197, 155, 39, 0.1) !important;
}
.preview-arcane .mockup-title {
  color: #b8862d !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  text-shadow: none !important;
}
.preview-arcane .mockup-bio {
  color: #5c4636 !important;
}
.preview-arcane .mockup-slots-title {
  color: #8c7665 !important;
}
.preview-arcane .mockup-slot {
  border-radius: 8px 2px 8px 2px;
  border: 1px solid rgba(197, 155, 39, 0.25);
  background: rgba(255, 255, 255, 0.8);
  color: #b8862d;
}
.preview-arcane .mockup-slot:hover {
  background: var(--custom-color, #dfb15b) !important;
  color: #322013 !important;
  box-shadow: 
    0 0 15px rgba(197, 155, 39, 0.4), 
    0 5px 10px rgba(168, 85, 247, 0.1) !important;
  border-color: var(--custom-color, #dfb15b) !important;
}

/* Solaris (E-Ink & Minimaliste) */
.preview-solaris .showcase-container {
  background-color: #fbf9f4 !important;
}
.preview-solaris .mockup-card {
  font-family: 'Courier New', Courier, monospace;
  border-radius: 0px;
  border: 1px solid #1c1c1c;
  background: #fbf9f4 !important;
  color: #1c1c1c !important;
  box-shadow: none !important;
}
.preview-solaris .mockup-header {
  border-bottom: 1px solid #1c1c1c;
  background: #f5f3ed !important;
}
.preview-solaris .mockup-dot {
  background: #1c1c1c !important;
  border-radius: 0px !important;
}
.preview-solaris .mockup-avatar {
  border-radius: 0px;
  border: 1px solid #1c1c1c;
  background: #f5f3ed;
  color: #1c1c1c;
}
.preview-solaris .mockup-name {
  font-weight: bold;
}
.preview-solaris .mockup-title {
  color: #1c1c1c;
  font-weight: bold;
}
.preview-solaris .mockup-slot {
  border-radius: 0px;
  border: 1px dashed #1c1c1c;
  background: transparent;
  color: #1c1c1c;
  transition: none !important;
}
.preview-solaris .mockup-slot:hover {
  background: #1c1c1c;
  color: #fbf9f4;
  border-style: solid;
}

/* COMPARE SECTION */
.compare-section {
  padding: 100px 24px;
  background: var(--bg-neutral);
}
.compare-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.02);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-col {
  padding: 60px 48px;
}
.compare-col.generic {
  background: #fafbfc;
  border-right: 1px solid var(--border-color);
}
.compare-col.luxcall {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 107, 255, 0.02) 100%);
}
.compare-col-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}
.compare-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-item-title {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* HOW IT WORKS */
.how-section {
  padding: 96px 24px 72px;
  background: var(--bg-white);
}
.how-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  counter-reset: none;
}
.how-step {
  text-align: left;
}
.how-step-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.how-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.cap-section {
  padding: 40px 24px 96px;
  background: var(--bg-white);
}
.cap-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  padding: 28px 26px;
  background: var(--bg-neutral, #fafafa);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.cap-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.cap-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* FEATURES (BENTO GRID) */
.features-section {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.015);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(0, 107, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.bento-card:hover::before {
  opacity: 1;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 107, 255, 0.07);
  border-color: rgba(0, 107, 255, 0.15);
}
.bento-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-neutral) 100%);
}

/* Bento Visuals & CSS Components */
.bento-visual {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  width: 100%;
}
.mini-card-stripe {
  width: 220px;
  height: 120px;
  background: linear-gradient(135deg, #635bff 0%, #00a2ff 100%);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  color: white;
  font-family: monospace;
  box-shadow: 0 15px 30px rgba(99, 91, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}
.bento-card:hover .mini-card-stripe {
  transform: translateY(-5px) rotate(-3deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 91, 255, 0.4);
}
.mini-card-chip {
  width: 28px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-bottom: 12px;
}
.mini-card-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: bold;
  font-size: 14px;
  font-family: var(--font-sans);
  letter-spacing: -0.5px;
}
.mini-card-number {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.mini-card-status {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-green-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.mini-slots-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 180px;
}
.mini-slot {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-neutral);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s ease;
}
.mini-slot.active {
  border-color: rgba(0, 107, 255, 0.3);
  background: rgba(0, 107, 255, 0.03);
  color: var(--primary-color);
}
.bento-card:hover .mini-slot.active {
  background: var(--primary-color);
  color: white;
  transform: scale(1.02);
}
.mini-slot-break {
  padding: 6px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  background: #fafafa;
}

.mini-calendar {
  width: 100%;
  max-width: 180px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.bento-card:hover .mini-calendar {
  transform: translateY(-3px) rotate(1deg);
}
.mini-cal-header {
  background: #f8fafc;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}
.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
}
.mini-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-neutral);
  border-radius: 6px;
  position: relative;
}
.mini-cal-day.blocked {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.abs-badge {
  position: absolute;
  bottom: 2px;
  font-size: 6px;
  font-weight: 700;
  text-transform: uppercase;
  background: #ef4444;
  color: white;
  padding: 1px 3px;
  border-radius: 2px;
}

.mini-phone-frame {
  width: 100px;
  height: 140px;
  border: 3px solid #1a1a1a;
  border-bottom-width: 8px;
  border-radius: 16px;
  background: white;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bento-card:hover .mini-phone-frame {
  transform: translateY(-8px) scale(1.08) rotate(-2deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.mini-phone-screen {
  width: 100%;
  height: 100%;
  background: #fafafa;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  position: relative;
}
.mini-phone-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00a2ff 100%);
  margin-bottom: 8px;
}
.mini-phone-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mini-phone-btn {
  width: calc(100% - 12px);
  padding: 4px;
  background: var(--primary-color);
  color: white;
  font-size: 6px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  bottom: 12px;
}

.bento-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-neutral) 100%);
}
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.bento-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14.5px;
  margin: 0;
}

/* PRICING SECTION */
.pricing-section {
  padding: 120px 24px;
  background: #fafbfc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.access-panel {
  max-width: 520px;
  margin: 0 auto;
}
.access-lead {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 28px;
}
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 48px 32px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}
.pricing-card.popular {
  border: 2px solid var(--primary-color);
  box-shadow: 0 24px 48px rgba(0, 107, 255, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, rgba(0, 107, 255, 0.02) 100%);
}
.pricing-card.popular::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00f2fe 100%);
  z-index: -1;
  opacity: 0.15;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
}
.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-primary);
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
}
.pricing-features li svg {
  color: #10b981;
  flex-shrink: 0;
}
.btn-pricing {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
  display: block;
  cursor: pointer;
}
.btn-pricing.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.btn-pricing.primary:hover {
  background: var(--primary-hover);
}
.btn-pricing.outline:hover {
  background: var(--bg-neutral);
  border-color: #cbd5e1;
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}

/* CTA SECTION */
.cta-section {
  background: var(--text-primary);
  color: white;
  padding: 110px 24px;
  text-align: center;
  position: relative;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -1px;
}
.btn-white {
  background: white;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-white:hover {
  transform: scale(1.04);
}
.cta-description {
  font-size: 19px;
  color: var(--lp-cta-text, rgba(255,255,255,0.85));
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Floating panel button text */
.btn-text {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Pulse animation for reschedule demo */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Hero Mockup Preview & Custom Frame */
.hero-mockup-container {
  margin-top: 60px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  animation: fadeUp 1.6s ease-out;
}
.mockup-frame {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 107, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
}
.mockup-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.mockup-frame:hover::after {
  left: 150%;
  transition: left 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-frame:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 107, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Light variant for client sections */
.client-mockup-frame {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06), 0 0 20px rgba(0, 107, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
}
.client-mockup-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 107, 255, 0.05),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.client-mockup-frame:hover::after {
  left: 150%;
  transition: left 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.client-mockup-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.09), 0 0 30px rgba(0, 107, 255, 0.05);
  border-color: rgba(0, 107, 255, 0.15);
}

/* Customizer Tool Bar */
.customizer-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: #fafbfc;
  border: 1px solid var(--border-color);
  padding: 16px 28px;
  border-radius: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.customizer-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.customizer-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-secondary);
}
.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-color-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: none;
  padding: 0;
  flex-shrink: 0;
}
.custom-color-input::-webkit-color-swatch-wrapper {
  padding: 0;
}
.custom-color-input::-webkit-color-swatch {
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.color-presets {
  display: flex;
  gap: 6px;
}
.color-preset {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.color-preset:hover {
  transform: scale(1.15);
}
.color-preset.active {
  border-color: #1a1a1a;
  transform: scale(1.1);
}

.bg-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bg-preset-btn {
  border: 1px solid var(--border-color);
  background: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.bg-preset-btn:hover {
  border-color: #cbd5e1;
  color: var(--text-primary);
}
.bg-preset-btn.active {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

/* INTERACTIVE SHOWCASE FOR FEATURES */
.interactive-demo-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: left;
}
.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-control-btn {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 20px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  width: 100%;
}
.demo-control-btn:hover {
  transform: translateX(4px);
  border-color: rgba(0, 107, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.demo-control-btn.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 107, 255, 0.05) 100%);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 107, 255, 0.15), inset 0 1px 1px rgba(255,255,255,0.05);
}
.control-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.demo-control-btn.active .control-icon {
  background: var(--primary-light);
  color: var(--primary-color);
}
.control-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.control-text strong {
  font-size: 14.5px;
  color: #ffffff;
}
.control-label-short {
  display: none;
}
.theme-btn-short {
  display: none;
}
.control-text span {
  font-size: 12px;
  color: #94a3b8;
}

.demo-preview-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  color: #f8fafc;
}
.demo-tab-content {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: fadeUp 0.5s ease-out;
}
.demo-tab-content.active {
  display: flex;
}
.preview-mockup-header-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--demo-text-main, #ffffff);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
  padding-bottom: 12px;
}
.demo-explain-text {
  font-size: 14.5px;
  color: var(--demo-text-muted, #94a3b8);
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 0;
}

/* 1. Media visual layout */
.video-preview-player {
  width: 100%;
  height: 200px;
  background: var(--demo-player-bg, #0b0f19);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800&fit=crop');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
}
.player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.player-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
  cursor: pointer;
}
.player-play-btn:hover {
  transform: scale(1.1);
}
.player-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(3, 7, 18, 0.7);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.audio-preview-player {
  margin-top: 16px;
  background: var(--demo-input-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.audio-icon {
  font-size: 16px;
}
.audio-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
}
.audio-waveform .bar {
  flex: 1;
  background: var(--primary-color);
  border-radius: 2px;
  transition: height 0.3s ease;
  animation: audioWave 1.2s infinite ease-in-out alternate;
}
.audio-waveform .bar:nth-child(2) { animation-delay: 0.1s; }
.audio-waveform .bar:nth-child(3) { animation-delay: 0.2s; }
.audio-waveform .bar:nth-child(4) { animation-delay: 0.3s; }
.audio-waveform .bar:nth-child(5) { animation-delay: 0.4s; }
.audio-waveform .bar:nth-child(6) { animation-delay: 0.5s; }
.audio-waveform .bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes audioWave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}
.audio-duration {
  font-size: 12px;
  color: var(--demo-text-muted, #94a3b8);
  font-weight: 600;
}

/* 2. Agenda Sync */
.agenda-sync-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 24px;
  background: var(--demo-bg-alt, rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  border: 1px dashed var(--demo-border, rgba(255, 255, 255, 0.1));
}
.agenda-card {
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--demo-shadow, 0 4px 12px rgba(0,0,0,0.2));
  width: 180px;
  text-align: left;
}
.agenda-card.cal-luxcall {
  background: var(--demo-card-bg, rgba(15, 23, 42, 0.9));
  border: 1px solid var(--demo-card-border-active, rgba(0, 107, 255, 0.3));
}
.agenda-card.cal-luxcall .agenda-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}
.agenda-card.cal-luxcall .agenda-time {
  font-size: 11px;
  color: var(--demo-text-muted, #94a3b8);
}
.agenda-card.cal-google {
  background: var(--demo-google-bg, rgba(67, 56, 202, 0.2));
  border: 1px solid var(--demo-google-border, rgba(99, 102, 241, 0.3));
}
.agenda-card.cal-google .agenda-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--demo-google-text, #a5b4fc);
  margin-bottom: 6px;
}
.agenda-card.cal-google .agenda-status {
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
}
.sync-arrows {
  animation: spinSync 6s infinite linear;
  color: var(--primary-color);
}
@keyframes spinSync {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 3. Form fields */
.form-builder-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--demo-bg-alt, rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
}
.form-field-row {
  background: var(--demo-card-bg, rgba(15, 23, 42, 0.8));
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.form-field-row.highlight {
  border-color: var(--primary-color);
  background: var(--primary-light);
}
.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--demo-text-main, #ffffff);
}
.field-input-mock {
  font-size: 11px;
  color: var(--demo-text-muted, #64748b);
  background: var(--demo-input-bg, rgba(3, 7, 18, 0.5));
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
  min-width: 120px;
  text-align: left;
}
.field-input-mock.text-area {
  height: 24px;
}
.field-tag {
  font-size: 8px;
  font-weight: 700;
  color: white;
  background: var(--primary-color);
  padding: 2px 6px;
  border-radius: 4px;
  position: absolute;
  top: -6px;
  right: 12px;
}

/* 4. Reschedule */
.reschedule-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--demo-bg-alt, rgba(255, 255, 255, 0.02));
  border-radius: 16px;
}
.reschedule-step {
  background: var(--demo-card-bg, rgba(15, 23, 42, 0.8));
  border: 1px solid var(--demo-border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 12px 20px;
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--demo-shadow, 0 4px 10px rgba(0,0,0,0.3));
}
.reschedule-step.step-target {
  border-color: #059669;
  background: rgba(16, 185, 129, 0.05);
}
.step-label {
  font-size: 10px;
  color: var(--demo-text-muted, #64748b);
  font-weight: 600;
  text-transform: uppercase;
}
.step-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--demo-text-main, #ffffff);
}
.reschedule-step.step-target .step-val {
  color: #34d399;
}
.reschedule-transition-arrow {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  animation: bounceArrow 1.5s infinite alternate ease-in-out;
}
@keyframes bounceArrow {
  0% { transform: translateY(-2px); }
  100% { transform: translateY(2px); }
}

/* ========================================================
   RESPONSIVE MOBILE STYLES & INTERACTION LAYOUTS
   ======================================================== */
@media (max-width: 900px) {
  .interactive-demo-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .demo-controls {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .demo-controls::-webkit-scrollbar {
    display: none;
  }
  .demo-controls {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .demo-control-btn {
    flex-shrink: 0;
    width: 260px;
  }

  .hero-title { font-size: 40px; }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .hero-tagline { font-size: 22px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col.generic { 
    border-right: none !important; 
    border-bottom: var(--lp-card-border, 1px solid var(--border-color)) !important; 
  }
  .showcase-container { padding: 24px 12px; }
  
  .theme-switcher-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    border-radius: 16px;
    padding: 8px;
    gap: 8px;
    margin-bottom: 24px;
  }
  .theme-demo-btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 20px 80px !important;
  }
  .showcase-section,
  .compare-section,
  .features-section,
  .pricing-section,
  .faq-section,
  .cta-section,
  .how-section,
  .cap-section {
    padding: 60px 16px !important;
  }
  .how-steps,
  .cap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-header,
  .showcase-header {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 600px) {
  /* Tighten bento cards on small devices for screen economy */
  .bento-card {
    padding: 24px 16px !important;
  }
  /* Stack agenda sync mockup vertically */
  .agenda-sync-visual {
    flex-direction: column;
    gap: 12px;
  }
  .agenda-card {
    width: 100% !important;
  }
  .sync-arrows {
    transform: rotate(90deg);
  }
  /* Customizer bar stacked layouts */
  .customizer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px !important;
    border-radius: 16px;
  }
  .customizer-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .color-picker-wrapper, .bg-presets {
    width: 100%;
  }
  .bg-presets {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .bg-presets::-webkit-scrollbar {
    display: none;
  }
  .bg-presets {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .bg-preset-btn {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px !important; }
  .hero-tagline { font-size: 18px !important; }
  .mockup-body {
    padding: 20px 16px !important;
  }
  .mockup-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ========================================================
   7-THEMES LANDING PAGE DYNAMIC DESIGN SYSTEM 
   ======================================================== */

/* 1. Theme Configuration Classes */
.landing-page {
  background: var(--lp-bg, #ffffff);
  color: var(--lp-text, #1f2937);
  font-family: var(--lp-font, var(--font-sans));
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.4s ease, 
              font-family 0.4s ease;
}

/* Transition for all interactive layout blocks */
.header, .main-footer, .bento-card, .pricing-card, .faq-item, .compare-container, .btn-primary, .btn-secondary {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* --- THEME 1: LUXCALL (DEFAULT LIGHT TECH) --- */
.landing-page.theme-luxcall {
  --lp-bg: #ffffff;
  --lp-bg-alt: #fafbfc;
  --lp-text: #102a43;
  --lp-text-muted: #627d98;
  --lp-card-bg: #ffffff;
  --lp-card-border: 1px solid #cbd5e1;
  --lp-shadow: 0 10px 30px rgba(0,0,0,0.015);
  --lp-radius: 16px;
  --lp-font: 'Inter', sans-serif;
  --lp-heading-font: 'Inter', sans-serif;
  /* Demo skinning variables */
  --demo-bg-alt: #f8fafc;
  --demo-border: 1px solid #cbd5e1;
  --demo-card-bg: #ffffff;
  --demo-card-border-active: 1px solid #006bff;
  --demo-text-main: #102a43;
  --demo-text-muted: #627d98;
  --demo-input-bg: #fafbfc;
  --demo-player-bg: #f0f4f8;
  --demo-google-bg: #eef2ff;
  --demo-google-border: 1px solid #cbd5e1;
  --demo-google-text: #4338ca;
  --demo-shadow: 0 4px 12px rgba(0,0,0,0.03);
  --lp-cta-bg: #0f172a;
  --lp-cta-text: #ffffff;
}
.theme-luxcall .hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  color: #102a43 !important;
  border-bottom: 1px solid #cbd5e1 !important;
}
.theme-luxcall .hero-title {
  color: #102a43 !important;
  text-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
}
.theme-luxcall .neon-script {
  font-family: 'Inter', sans-serif !important;
  background: linear-gradient(135deg, #006bff 0%, #00a2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: none !important;
  transform: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-luxcall .hero-subtitle {
  color: #486581 !important;
  text-shadow: none !important;
}
.theme-luxcall .hero-badge {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #006bff !important;
  text-shadow: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}
.theme-luxcall .hero-actions .btn-primary {
  background: #006bff !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(0, 107, 255, 0.25) !important;
}
.theme-luxcall .hero-actions .btn-secondary {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #102a43 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
}
.theme-luxcall .demo-control-btn {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}
.theme-luxcall .demo-control-btn:hover {
  background: #f0f4f8 !important;
  border-color: #006bff !important;
}
.theme-luxcall .demo-control-btn.active {
  background: #eef5ff !important;
  border-color: #006bff !important;
}
.theme-luxcall .demo-control-btn .control-text strong {
  color: #102a43 !important;
  text-shadow: none !important;
}
.theme-luxcall .demo-control-btn .control-text span {
  color: #627d98 !important;
}
.theme-luxcall .demo-control-btn.active .control-icon {
  background: #eef5ff !important;
  color: #006bff !important;
  border-color: #006bff !important;
}
.theme-luxcall .demo-preview-card {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #102a43 !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}
.theme-luxcall .preview-mockup-header-title {
  color: #102a43 !important;
  border-bottom-color: #cbd5e1 !important;
}
.theme-luxcall .demo-explain-text {
  color: #627d98 !important;
}

/* --- THEME 2: MATERIAL (MD3 STYLE) --- */
.landing-page.theme-material {
  --lp-bg: #fffbfe;
  --lp-bg-alt: #f3edf7;
  --lp-text: #1c1b1f;
  --lp-text-muted: #49454f;
  --lp-card-bg: #ffffff;
  --lp-card-border: 1px solid #eaddff;
  --lp-shadow: 0 4px 20px rgba(103, 80, 164, 0.05);
  --lp-radius: 28px;
  --lp-font: 'Plus Jakarta Sans', sans-serif;
  --lp-heading-font: 'Plus Jakarta Sans', sans-serif;
  --lp-popular-card-border: 2px solid #6750A4;
  --lp-popular-card-shadow: 0 16px 32px rgba(103, 80, 164, 0.12);
  /* Demo components skinning variables */
  --demo-bg-alt: #f3edf7;
  --demo-border: 1px solid #eaddff;
  --demo-card-bg: #ffffff;
  --demo-card-border-active: 1px solid #6750A4;
  --demo-text-main: #1c1b1f;
  --demo-text-muted: #49454f;
  --demo-input-bg: #f3edf7;
  --demo-player-bg: #f3edf7;
  --demo-google-bg: #eaddff;
  --demo-google-border: 1px solid #eaddff;
  --demo-google-text: #21005d;
  --demo-shadow: 0 4px 12px rgba(103, 80, 164, 0.05);
  --lp-cta-bg: #1c1b1f;
  --lp-cta-text: #ffffff;
}
.theme-material .hero-section {
  background: linear-gradient(135deg, #f7f2fa 0%, #eaddff 100%) !important;
  color: #1c1b1f !important;
  border-bottom: 1px solid #eaddff !important;
}
.theme-material .hero-title {
  color: #1c1b1f !important;
  text-shadow: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.theme-material .neon-script {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  background: #eaddff !important;
  color: #21005d !important;
  padding: 4px 16px !important;
  border-radius: 100px !important;
  font-weight: 700;
  font-size: 0.85em !important;
  box-shadow: 0 4px 10px rgba(103, 80, 164, 0.08) !important;
  text-shadow: none !important;
  transform: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-material .hero-subtitle {
  color: #49454f !important;
  text-shadow: none !important;
}
.theme-material .hero-badge {
  background: #eaddff !important;
  border-color: #eaddff !important;
  color: #21005d !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.theme-material .hero-actions .btn-primary {
  background: #6750A4 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(103, 80, 164, 0.15) !important;
  border-radius: 100px !important;
}
.theme-material .hero-actions .btn-secondary {
  background: #fffbfe !important;
  border-color: #79747e !important;
  color: #6750A4 !important;
  border-radius: 100px !important;
  box-shadow: none !important;
}
.theme-material .demo-control-btn {
  background: #fffbfe !important;
  border-color: #cbd5e1 !important;
  border-radius: 20px !important;
}
.theme-material .demo-control-btn:hover {
  background: #f3edf7 !important;
  border-color: #6750A4 !important;
}
.theme-material .demo-control-btn.active {
  background: #eaddff !important;
  border-color: #6750A4 !important;
  border-radius: 20px !important;
}
.theme-material .demo-control-btn .control-text strong {
  color: #1c1b1f !important;
  text-shadow: none !important;
}
.theme-material .demo-control-btn .control-text span {
  color: #49454f !important;
}
.theme-material .demo-control-btn.active .control-icon {
  background: #6750A4 !important;
  color: white !important;
  border-color: #6750A4 !important;
}
.theme-material .demo-preview-card {
  background: #ffffff !important;
  border-color: #eaddff !important;
  color: #1c1b1f !important;
  border-radius: 28px !important;
  box-shadow: 0 10px 30px rgba(103, 80, 164, 0.05) !important;
}
.theme-material .preview-mockup-header-title {
  color: #1c1b1f !important;
  border-bottom-color: #eaddff !important;
}
.theme-material .demo-explain-text {
  color: #49454f !important;
}

/* --- THEME 3: BRUTALIST (NEO-BRUTALISM) --- */
.landing-page.theme-brutalist {
  --lp-bg: #ffffff;
  --lp-bg-alt: #fffdec;
  --lp-text: #1a1a1a;
  --lp-text-muted: #333333;
  --lp-card-bg: #ffffff;
  --lp-card-border: 3px solid #1a1a1a;
  --lp-shadow: 8px 8px 0 #1a1a1a;
  --lp-radius: 0px;
  --lp-font: 'Plus Jakarta Sans', sans-serif;
  --lp-heading-font: 'Plus Jakarta Sans', sans-serif;
  --lp-popular-card-border: 3px solid #1a1a1a;
  --lp-popular-card-shadow: 12px 12px 0 #1a1a1a;
  /* Demo components skinning variables */
  --demo-bg-alt: #fffdec;
  --demo-border: 2px solid #1a1a1a;
  --demo-card-bg: #ffffff;
  --demo-card-border-active: 3px solid #1a1a1a;
  --demo-text-main: #1a1a1a;
  --demo-text-muted: #333333;
  --demo-input-bg: #ffffff;
  --demo-player-bg: #ffde4d;
  --demo-google-bg: #ffde4d;
  --demo-google-border: 2px solid #1a1a1a;
  --demo-google-text: #1a1a1a;
  --demo-shadow: 4px 4px 0 #1a1a1a;
  --lp-cta-bg: #1a1a1a;
  --lp-cta-text: #ffde4d;
}
.theme-brutalist .hero-section {
  background: #ffde4d !important;
  color: #1a1a1a !important;
  border-bottom: 5px solid #1a1a1a !important;
}
.theme-brutalist .hero-title {
  color: #1a1a1a !important;
  text-shadow: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900 !important;
}
.theme-brutalist .neon-script {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 900;
  text-transform: uppercase !important;
  background: #1a1a1a !important;
  color: #ffde4d !important;
  padding: 6px 18px !important;
  transform: rotate(-2deg) translateY(4px) !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
  border: 2px solid #1a1a1a !important;
  text-shadow: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-brutalist .hero-subtitle {
  color: #1a1a1a !important;
  text-shadow: none !important;
}
.theme-brutalist .hero-badge {
  background: #ffffff !important;
  border: 3px solid #1a1a1a !important;
  color: #1a1a1a !important;
  text-shadow: none !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
  border-radius: 0 !important;
}
.theme-brutalist .hero-actions .btn-primary {
  background: #ffffff !important;
  border: 3px solid #1a1a1a !important;
  color: #1a1a1a !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
  border-radius: 0 !important;
}
.theme-brutalist .hero-actions .btn-primary:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #1a1a1a !important;
}
.theme-brutalist .hero-actions .btn-secondary {
  background: #ffde4d !important;
  border: 3px solid #1a1a1a !important;
  color: #1a1a1a !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
  border-radius: 0 !important;
}
.theme-brutalist .hero-actions .btn-secondary:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #1a1a1a !important;
}
.theme-brutalist .demo-control-btn {
  background: #ffffff !important;
  border: 2px solid #1a1a1a !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 #1a1a1a !important;
}
.theme-brutalist .demo-control-btn:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 5px 5px 0 #1a1a1a !important;
}
.theme-brutalist .demo-control-btn.active {
  background: #ffde4d !important;
  border: 3px solid #1a1a1a !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
}
.theme-brutalist .demo-control-btn .control-text strong {
  color: #1a1a1a !important;
  text-shadow: none !important;
}
.theme-brutalist .demo-control-btn .control-text span {
  color: #333333 !important;
}
.theme-brutalist .demo-control-btn.active .control-icon {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 2px solid #1a1a1a !important;
}
.theme-brutalist .demo-preview-card {
  background: #ffffff !important;
  border: 3px solid #1a1a1a !important;
  color: #1a1a1a !important;
  border-radius: 0px !important;
  box-shadow: 8px 8px 0 #1a1a1a !important;
}
.theme-brutalist .preview-mockup-header-title {
  color: #1a1a1a !important;
  border-bottom: 2px solid #1a1a1a !important;
}
.theme-brutalist .demo-explain-text {
  color: #333333 !important;
}
.theme-brutalist .bento-card:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0 #1a1a1a !important;
}

/* Showcase switcher and customizer overrides for Brutalist */
.theme-brutalist .theme-switcher-tabs {
  border-radius: 0px !important;
  border: 2px solid #1a1a1a !important;
  box-shadow: none !important;
  background: #ffffff !important;
}
.theme-brutalist .theme-demo-btn {
  border-radius: 0px !important;
  border: none !important;
  color: #1a1a1a !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
}
.theme-brutalist .theme-demo-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05) !important;
}
.theme-brutalist .theme-demo-btn.active {
  background: #1a1a1a !important;
  color: #ffde4d !important;
  border-radius: 0px !important;
}
.theme-brutalist .customizer-bar {
  border-radius: 0px !important;
  border: 2px solid #1a1a1a !important;
  box-shadow: none !important;
  background: #ffffff !important;
}
.theme-brutalist .customizer-label {
  color: #1a1a1a !important;
  font-weight: 800 !important;
}
.theme-brutalist .bg-preset-btn {
  border-radius: 0px !important;
  border: 2px solid #1a1a1a !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-weight: 800 !important;
  box-shadow: 2px 2px 0 #1a1a1a !important;
}
.theme-brutalist .bg-preset-btn:hover {
  transform: translate(-1px, -1px) !important;
  box-shadow: 3px 3px 0 #1a1a1a !important;
}
.theme-brutalist .bg-preset-btn.active {
  background: #1a1a1a !important;
  color: #ffde4d !important;
  border-color: #1a1a1a !important;
  box-shadow: none !important;
  transform: none !important;
}
.theme-brutalist .color-preset {
  border-radius: 0px !important;
  border: 2px solid #1a1a1a !important;
}
.theme-brutalist .color-preset.active {
  transform: scale(1.1) !important;
  border-color: #1a1a1a !important;
}
.theme-brutalist .custom-color-input {
  border-radius: 0px !important;
}
.theme-brutalist .custom-color-input::-webkit-color-swatch {
  border-radius: 0px !important;
  border: 2px solid #1a1a1a !important;
}

/* --- THEME 4: MIDNIGHT (SOMBRE & NÉON SYNTHWAVE) --- */
.landing-page.theme-midnight {
  --lp-bg: #090d1f;
  --lp-bg-alt: #030712;
  --lp-text: #f8fafc;
  --lp-text-muted: #94a3b8;
  --lp-card-bg: rgba(15, 23, 42, 0.7);
  --lp-card-border: 1px solid rgba(0, 242, 254, 0.2);
  --lp-shadow: 0 15px 40px rgba(0, 242, 254, 0.08);
  --lp-radius: 20px;
  --lp-font: 'Plus Jakarta Sans', sans-serif;
  --lp-heading-font: 'Plus Jakarta Sans', sans-serif;
  --lp-popular-card-border: 2px solid #00f2fe;
  --lp-popular-card-shadow: 0 20px 40px rgba(0, 242, 254, 0.25);
  --lp-cta-bg: #020617;
  --lp-cta-text: #ffffff;
  /* Demo components skinning variables */
  --demo-bg-alt: rgba(255, 255, 255, 0.02);
  --demo-border: 1px solid rgba(255, 255, 255, 0.08);
  --demo-card-bg: rgba(15, 23, 42, 0.8);
  --demo-card-border-active: 1px solid rgba(255, 0, 127, 0.3);
  --demo-text-main: #ffffff;
  --demo-text-muted: #94a3b8;
  --demo-input-bg: rgba(3, 7, 18, 0.5);
  --demo-player-bg: #0b0f19;
  --demo-google-bg: rgba(67, 56, 202, 0.2);
  --demo-google-border: 1px solid rgba(99, 102, 241, 0.3);
  --demo-google-text: #a5b4fc;
  --demo-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.theme-midnight .hero-section {
  background: #0b0521 !important;
  color: #ffffff;
  border-bottom: 2px solid #ff007f !important;
}
.theme-midnight .hero-title {
  font-family: 'Audiowide', sans-serif !important;
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.6), 0 0 20px rgba(255, 0, 127, 0.3) !important;
}
.theme-midnight .neon-script {
  font-family: 'Mr Dafoe', cursive !important;
  color: #00f2fe !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.9), 0 0 25px rgba(0, 242, 254, 0.6) !important;
  transform: rotate(-4deg) translateY(8px) !important;
  text-transform: none !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  display: inline-block;
}
.theme-midnight .hero-subtitle {
  color: #e2e8f0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}
.theme-midnight .hero-badge {
  background: rgba(12, 5, 36, 0.85) !important;
  border: 1px solid rgba(255, 0, 127, 0.5) !important;
  color: #00f2fe !important;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.15) !important;
}
/* Midnight demo control buttons overrides */
.theme-midnight .demo-control-btn {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(0, 242, 254, 0.2) !important;
  color: #ffffff !important;
}
.theme-midnight .demo-control-btn:hover {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: #00f2fe !important;
}
.theme-midnight .demo-control-btn .control-text strong {
  color: #ffffff !important;
  text-shadow: none !important;
}
.theme-midnight .demo-control-btn .control-text span {
  color: #94a3b8 !important;
}
.theme-midnight .demo-control-btn.active {
  background: rgba(0, 242, 254, 0.1) !important;
  border-color: #00f2fe !important;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15) !important;
}
.theme-midnight .demo-control-btn.active .control-text strong {
  color: #00f2fe !important;
}
.theme-midnight .demo-control-btn.active .control-icon {
  background: rgba(0, 242, 254, 0.2) !important;
  color: #00f2fe !important;
  border-color: #00f2fe !important;
}

/* --- THEME 5: GLAMOUR (CHIC & GLOSSY ROSE) --- */
.landing-page.theme-glamour {
  --lp-bg: #fff9fa;
  --lp-bg-alt: #fff0f3;
  --lp-text: #4a1224;
  --lp-text-muted: #702038;
  --lp-card-bg: #ffffff;
  --lp-card-border: 1px solid rgba(255, 42, 122, 0.1);
  --lp-shadow: 0 15px 35px rgba(255, 42, 122, 0.05);
  --lp-radius: 24px;
  --lp-font: 'Plus Jakarta Sans', sans-serif;
  --lp-heading-font: 'Plus Jakarta Sans', sans-serif;
  --lp-popular-card-border: 2px solid #ff2a7a;
  --lp-popular-card-shadow: 0 20px 40px rgba(255, 42, 122, 0.15);
  --lp-cta-bg: #fff0f3;
  --lp-cta-text: #4a1224;
  /* Demo components skinning variables */
  --demo-bg-alt: rgba(255, 240, 243, 0.5);
  --demo-border: 1px solid rgba(255, 42, 122, 0.1);
  --demo-card-bg: #ffffff;
  --demo-card-border-active: 1px solid #ff2a7a;
  --demo-text-main: #4a1224;
  --demo-text-muted: #702038;
  --demo-input-bg: #fff0f3;
  --demo-player-bg: #ffeef2;
  --demo-google-bg: #ffeef2;
  --demo-google-border: 1px solid rgba(255, 42, 122, 0.1);
  --demo-google-text: #ff2a7a;
  --demo-shadow: 0 10px 25px rgba(255, 42, 122, 0.03);
}
.theme-glamour .hero-section {
  background: linear-gradient(135deg, #ffeef2 0%, #ffd6e0 100%) !important;
  color: #4a1224 !important;
  border-bottom: 1px solid rgba(255, 42, 122, 0.1) !important;
}
.theme-glamour .hero-title {
  color: #4a1224 !important;
  text-shadow: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.theme-glamour .neon-script {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  color: #ff2a7a !important;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 42, 122, 0.3) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
  transform: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-glamour .hero-subtitle {
  color: #702038 !important;
  text-shadow: none !important;
}
.theme-glamour .hero-badge {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 42, 122, 0.2) !important;
  color: #ff2a7a !important;
  text-shadow: none !important;
  box-shadow: 0 4px 15px rgba(255, 42, 122, 0.05) !important;
}
.theme-glamour .hero-actions .btn-primary {
  background: linear-gradient(135deg, #ff2a7a 0%, #e01b63 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 42, 122, 0.25) !important;
  border-radius: 100px !important;
}
.theme-glamour .hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(255, 42, 122, 0.3) !important;
  color: #ff2a7a !important;
  border-radius: 100px !important;
  box-shadow: none !important;
}
.theme-glamour .demo-control-btn {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(255, 42, 122, 0.1) !important;
  border-radius: 20px !important;
}
.theme-glamour .demo-control-btn:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: #ff2a7a !important;
}
.theme-glamour .demo-control-btn.active {
  background: #ffffff !important;
  border-color: #ff2a7a !important;
  box-shadow: 0 4px 15px rgba(255, 42, 122, 0.05) !important;
  border-radius: 20px !important;
}
.theme-glamour .demo-control-btn .control-text strong {
  color: #4a1224 !important;
  text-shadow: none !important;
}
.theme-glamour .demo-control-btn .control-text span {
  color: #702038 !important;
}
.theme-glamour .demo-control-btn.active .control-icon {
  background: #ff2a7a !important;
  color: white !important;
  border-color: #ff2a7a !important;
}
.theme-glamour .demo-preview-card {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 42, 122, 0.15) !important;
  color: #4a1224 !important;
  border-radius: 24px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 45px rgba(255, 42, 122, 0.06) !important;
}
.theme-glamour .preview-mockup-header-title {
  color: #4a1224 !important;
  border-bottom-color: rgba(255, 42, 122, 0.15) !important;
}
.theme-glamour .demo-explain-text {
  color: #702038 !important;
}

/* --- THEME 6: ARCANE (MYSTIQUE & GRIMOIRE PARCHMENT) --- */
.landing-page.theme-arcane {
  --lp-bg: #fdfaf2;
  --lp-bg-alt: #faf5e8;
  --lp-text: #322013;
  --lp-text-muted: #5c4636;
  --lp-card-bg: #ffffff;
  --lp-card-border: 1px solid rgba(197, 155, 39, 0.3);
  --lp-shadow: 0 12px 30px rgba(197, 155, 39, 0.08);
  --lp-radius: 18px 4px 18px 4px;
  --lp-font: 'Playfair Display', Georgia, serif;
  --lp-heading-font: 'Playfair Display', Georgia, serif;
  --lp-popular-card-border: 2px solid #dfb15b;
  --lp-popular-card-shadow: 0 20px 40px rgba(197, 155, 39, 0.15);
  --lp-cta-bg: #1c130d;
  --lp-cta-text: #faf5e8;
  /* Demo components skinning variables */
  --demo-bg-alt: rgba(35, 23, 14, 0.2);
  --demo-border: 1px solid rgba(197, 155, 39, 0.2);
  --demo-card-bg: #faf5e8;
  --demo-card-border-active: 1px solid #dfb15b;
  --demo-text-main: #322013;
  --demo-text-muted: #5c4636;
  --demo-input-bg: #fdfaf2;
  --demo-player-bg: #faf5e8;
  --demo-google-bg: #fdfaf2;
  --demo-google-border: 1px solid rgba(197, 155, 39, 0.2);
  --demo-google-text: #b8862d;
  --demo-shadow: 0 4px 15px rgba(197, 155, 39, 0.05);
}
.theme-arcane .hero-section {
  background: linear-gradient(135deg, #18110b 0%, #301e12 100%) !important;
  color: #faf5e8 !important;
  border-bottom: 1px solid rgba(223, 177, 91, 0.3) !important;
}
.theme-arcane .hero-title {
  color: #faf5e8 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}
.theme-arcane .neon-script {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  color: #dfb15b !important;
  text-shadow: 0 0 12px rgba(223, 177, 91, 0.6) !important;
  font-weight: 700;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  transform: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-arcane .hero-subtitle {
  color: #e2d2c2 !important;
  text-shadow: none !important;
}
.theme-arcane .hero-badge {
  background: #23170e !important;
  border-color: #dfb15b !important;
  color: #dfb15b !important;
  text-shadow: none !important;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.1) !important;
  border-radius: 8px 2px 8px 2px !important;
}
.theme-arcane .hero-actions .btn-primary {
  background: linear-gradient(135deg, #dfb15b 0%, #b8862d 100%) !important;
  color: #322013 !important;
  border: 1px solid rgba(197, 155, 39, 0.4) !important;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25) !important;
  border-radius: 8px 2px 8px 2px !important;
}
.theme-arcane .hero-actions .btn-secondary {
  background: rgba(35, 23, 14, 0.5) !important;
  border-color: rgba(223, 177, 91, 0.5) !important;
  color: #dfb15b !important;
  border-radius: 8px 2px 8px 2px !important;
  box-shadow: none !important;
}
.theme-arcane .demo-control-btn {
  background: rgba(35, 23, 14, 0.6) !important;
  border-color: rgba(223, 177, 91, 0.25) !important;
  border-radius: 8px 2px 8px 2px !important;
}
.theme-arcane .demo-control-btn:hover {
  background: rgba(35, 23, 14, 0.8) !important;
  border-color: #dfb15b !important;
}
.theme-arcane .demo-control-btn.active {
  background: #dfb15b !important;
  border-color: #dfb15b !important;
  border-radius: 8px 2px 8px 2px !important;
}
.theme-arcane .demo-control-btn .control-text strong {
  color: #faf5e8 !important;
  text-shadow: none !important;
}
.theme-arcane .demo-control-btn.active .control-text strong {
  color: #322013 !important;
}
.theme-arcane .demo-control-btn .control-text span {
  color: #c4b3a3 !important;
}
.theme-arcane .demo-control-btn.active .control-text span {
  color: #5c4636 !important;
}
.theme-arcane .demo-control-btn.active .control-icon {
  background: #23170e !important;
  color: #dfb15b !important;
  border-color: #dfb15b !important;
}
.theme-arcane .demo-preview-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf5e8 100%) !important;
  border: 1px solid rgba(197, 155, 39, 0.4) !important;
  color: #322013 !important;
  border-radius: 18px 4px 18px 4px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}
.theme-arcane .preview-mockup-header-title {
  color: #322013 !important;
  border-bottom-color: rgba(197, 155, 39, 0.2) !important;
}
.theme-arcane .demo-explain-text {
  color: #5c4636 !important;
}

/* --- THEME 7: SOLARIS (ZEN MINIMALIST E-INK) --- */
.landing-page.theme-solaris {
  --lp-bg: #fbf9f4;
  --lp-bg-alt: #f5f3ed;
  --lp-text: #1c1c1c;
  --lp-text-muted: #4a4a4a;
  --lp-card-bg: #fbf9f4;
  --lp-card-border: 1px solid #1c1c1c;
  --lp-shadow: none;
  --lp-radius: 0px;
  --lp-font: 'Courier New', Courier, monospace;
  --lp-heading-font: 'Courier New', Courier, monospace;
  --lp-popular-card-border: 2px solid #1c1c1c;
  --lp-popular-card-shadow: none;
  --lp-cta-bg: #f5f3ed;
  --lp-cta-text: #1c1c1c;
  /* Demo components skinning variables */
  --demo-bg-alt: #f5f3ed;
  --demo-border: 1px dashed #1c1c1c;
  --demo-card-bg: #fbf9f4;
  --demo-card-border-active: 1px solid #1c1c1c;
  --demo-text-main: #1c1c1c;
  --demo-text-muted: #4a4a4a;
  --demo-input-bg: #fbf9f4;
  --demo-player-bg: #f5f3ed;
  --demo-google-bg: #fbf9f4;
  --demo-google-border: 1px dashed #1c1c1c;
  --demo-google-text: #1c1c1c;
  --demo-shadow: none;
}
.theme-solaris .hero-section {
  background: #fbf9f4 !important;
  color: #1c1c1c !important;
  border-bottom: 1px solid #1c1c1c !important;
}
.theme-solaris .hero-title {
  color: #1c1c1c !important;
  text-shadow: none !important;
  font-family: 'Courier New', Courier, monospace !important;
}
.theme-solaris .neon-script {
  font-family: 'Courier New', Courier, monospace !important;
  color: #1c1c1c !important;
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
  font-weight: bold;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
  transform: none !important;
  margin: 0 4px !important;
  display: inline-block;
}
.theme-solaris .hero-subtitle {
  color: #4a4a4a !important;
  text-shadow: none !important;
}
.theme-solaris .hero-badge {
  background: #fbf9f4 !important;
  border: 1px solid #1c1c1c !important;
  color: #1c1c1c !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.theme-solaris .hero-actions .btn-primary {
  background: #1c1c1c !important;
  border: 1px solid #1c1c1c !important;
  color: #fbf9f4 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.theme-solaris .hero-actions .btn-primary:hover {
  background: #f5f3ed !important;
  color: #1c1c1c !important;
}
.theme-solaris .hero-actions .btn-secondary {
  background: transparent !important;
  border: 1px solid #1c1c1c !important;
  color: #1c1c1c !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.theme-solaris .hero-actions .btn-secondary:hover {
  background: #f5f3ed !important;
}
.theme-solaris .demo-control-btn {
  background: #fbf9f4 !important;
  border: 1px dashed #1c1c1c !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.theme-solaris .demo-control-btn:hover {
  background: #f5f3ed !important;
}
.theme-solaris .demo-control-btn.active {
  background: #1c1c1c !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 0 !important;
}
.theme-solaris .demo-control-btn .control-text strong {
  color: #1c1c1c !important;
  text-shadow: none !important;
}
.theme-solaris .demo-control-btn.active .control-text strong {
  color: #fbf9f4 !important;
}
.theme-solaris .demo-control-btn .control-text span {
  color: #4a4a4a !important;
}
.theme-solaris .demo-control-btn.active .control-text span {
  color: #fafafa !important;
}
.theme-solaris .demo-control-btn.active .control-icon {
  background: #fbf9f4 !important;
  color: #1c1c1c !important;
  border: 1px solid #1c1c1c !important;
}
.theme-solaris .demo-preview-card {
  background: #fbf9f4 !important;
  border: 1px solid #1c1c1c !important;
  color: #1c1c1c !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}
.theme-solaris .preview-mockup-header-title {
  color: #1c1c1c !important;
  border-bottom: 1px solid #1c1c1c !important;
}
.theme-solaris .demo-explain-text {
  color: #4a4a4a !important;
}

/* 2. Structured Sections Refactoring using Variables */
.trusted-by {
  background: var(--lp-bg) !important;
  border-top: var(--lp-card-border) !important;
  border-bottom: var(--lp-card-border) !important;
}
.trusted-title {
  color: var(--lp-text-muted) !important;
}
.showcase-section {
  background: var(--lp-bg) !important;
  border-top: var(--lp-card-border) !important;
  border-bottom: var(--lp-card-border) !important;
}
.showcase-title {
  color: var(--lp-text) !important;
}
.showcase-desc {
  color: var(--lp-text-muted) !important;
}
.theme-switcher-tabs {
  background: var(--lp-bg-alt, rgba(0,0,0,0.03)) !important;
  border: var(--lp-card-border, none) !important;
}
.theme-demo-btn {
  color: var(--lp-text-muted, var(--text-secondary)) !important;
}
.theme-demo-btn:hover {
  color: var(--lp-text, var(--text-primary)) !important;
}
.theme-demo-btn.active {
  background: var(--lp-text, white) !important;
  color: var(--lp-bg, var(--text-primary)) !important;
  box-shadow: var(--lp-shadow) !important;
}
.customizer-bar {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  box-shadow: var(--lp-shadow) !important;
}
.customizer-label {
  color: var(--lp-text-muted) !important;
}
.bg-preset-btn {
  background: var(--lp-bg) !important;
  color: var(--lp-text-muted) !important;
  border: var(--lp-card-border) !important;
}
.bg-preset-btn:hover {
  color: var(--lp-text) !important;
  border-color: var(--lp-text) !important;
}
.bg-preset-btn.active {
  background: var(--lp-text) !important;
  color: var(--lp-bg) !important;
  border-color: var(--lp-text) !important;
}

.how-section,
.cap-section {
  background: var(--lp-bg) !important;
}
.how-step h3,
.cap-card h3 {
  font-family: var(--lp-heading-font) !important;
  color: var(--lp-text) !important;
}
.how-step p,
.cap-card p {
  color: var(--lp-text-muted, var(--text-secondary)) !important;
}
.cap-card {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  border-radius: var(--lp-radius) !important;
  box-shadow: var(--lp-shadow) !important;
}

.compare-section {
  background: var(--lp-bg-alt) !important;
}
.compare-container {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  border-radius: var(--lp-radius) !important;
  box-shadow: var(--lp-shadow) !important;
}
.compare-col.generic {
  background: var(--lp-bg-alt) !important;
  border-right: var(--lp-card-border) !important;
}
.compare-col.luxcall {
  background: var(--lp-card-bg) !important;
}
.compare-col-title {
  font-family: var(--lp-heading-font) !important;
}
.compare-item {
  color: var(--lp-text) !important;
}
.compare-item-title {
  color: var(--lp-text) !important;
}

.features-section {
  background: var(--lp-bg) !important;
}
.bento-card {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  border-radius: var(--lp-radius) !important;
  box-shadow: var(--lp-shadow) !important;
  color: var(--lp-text) !important;
}
.bento-card.large {
  background: linear-gradient(135deg, var(--lp-card-bg) 0%, var(--lp-bg-alt) 100%) !important;
}
.bento-title {
  color: var(--lp-text) !important;
  font-family: var(--lp-heading-font) !important;
}
.bento-desc {
  color: var(--lp-text-muted) !important;
}

.pricing-section {
  background: var(--lp-bg-alt) !important;
  border-top: var(--lp-card-border) !important;
  border-bottom: var(--lp-card-border) !important;
}
.pricing-card {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  border-radius: var(--lp-radius) !important;
  box-shadow: var(--lp-shadow) !important;
  color: var(--lp-text) !important;
}
.pricing-card.popular {
  border: var(--lp-popular-card-border, 2px solid var(--primary-color)) !important;
  box-shadow: var(--lp-popular-card-shadow, var(--lp-shadow)) !important;
}
.pricing-name {
  font-family: var(--lp-heading-font) !important;
}
.pricing-price {
  color: var(--lp-text) !important;
}
.pricing-features li {
  color: var(--lp-text-muted) !important;
}

.faq-section {
  background: var(--lp-bg) !important;
}
.faq-item {
  background: var(--lp-card-bg) !important;
  border: var(--lp-card-border) !important;
  border-radius: var(--lp-radius) !important;
}
.faq-question {
  color: var(--lp-text) !important;
  font-family: var(--lp-heading-font) !important;
}
.faq-answer {
  color: var(--lp-text-muted) !important;
}

.cta-section {
  background: var(--lp-cta-bg, var(--text-primary)) !important;
  color: var(--lp-cta-text, white) !important;
}
.landing-page .cta-section .cta-title {
  color: var(--lp-cta-text, white) !important;
  font-family: var(--lp-heading-font) !important;
}
.landing-page .cta-section .btn-white {
  background: var(--lp-cta-text, white) !important;
  color: var(--lp-cta-bg, var(--text-primary)) !important;
}

/* 3. Button Styles Overrides based on Active Theme */
/* Luxcall & Default */
.landing-page.theme-luxcall .btn-primary {
  background: #006bff !important;
  border-radius: 100px !important;
  color: white !important;
}
/* Material */
.landing-page.theme-material .btn-primary {
  background: #6750A4 !important;
  border-radius: 100px !important;
  color: white !important;
}
/* Brutalist */
.landing-page.theme-brutalist .btn-primary {
  background: #ffde4d !important;
  border: 3px solid #1a1a1a !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
}
.landing-page.theme-brutalist .btn-primary:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #1a1a1a !important;
}
.landing-page.theme-brutalist .btn-secondary {
  background: #ffffff !important;
  border: 3px solid #1a1a1a !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
  box-shadow: 4px 4px 0 #1a1a1a !important;
}
.landing-page.theme-brutalist .btn-secondary:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #1a1a1a !important;
}
/* Midnight */
.landing-page.theme-midnight .btn-primary {
  background: linear-gradient(135deg, #ff007f 0%, #8b5cf6 50%, #00f2fe 100%) !important;
  border-radius: 100px !important;
  color: white !important;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4) !important;
}
.landing-page.theme-midnight .btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6) !important;
}
/* Glamour */
.landing-page.theme-glamour .btn-primary {
  background: linear-gradient(135deg, #ff2a7a 0%, #e01b63 100%) !important;
  border-radius: 100px !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 42, 122, 0.3) !important;
}
/* Arcane */
.landing-page.theme-arcane .btn-primary {
  background: linear-gradient(135deg, #dfb15b 0%, #b8862d 100%) !important;
  border-radius: 8px 2px 8px 2px !important;
  color: #322013 !important;
  border: 1px solid rgba(197, 155, 39, 0.4) !important;
  box-shadow: 0 4px 10px rgba(197, 155, 39, 0.2) !important;
  font-weight: 700 !important;
}
/* Solaris */
.landing-page.theme-solaris .btn-primary {
  background: #1c1c1c !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 0 !important;
  color: #fbf9f4 !important;
}
.landing-page.theme-solaris .btn-primary:hover {
  background: #f5f3ed !important;
  color: #1c1c1c !important;
}

/* 4. Floating Switcher — discreet color dots, bottom-right */
.landing-theme-switcher-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  transform: none;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  opacity: 0.72;
  transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.landing-theme-switcher-panel:hover,
.landing-theme-switcher-panel:focus-within {
  opacity: 1;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.panel-header { display: none; }
.panel-buttons {
  display: flex;
  gap: 2px;
  align-items: center;
}
.panel-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  color: rgba(255, 255, 255, 0.85);
}
.panel-btn .btn-text {
  display: none;
}
.panel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
}
.panel-btn.active {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.panel-btn.active .color-dot {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .landing-theme-switcher-panel {
    bottom: 12px;
    right: 12px;
    padding: 5px 6px;
    opacity: 0.85;
  }
  .color-dot {
    width: 11px;
    height: 11px;
  }
}

.theme-solaris .landing-theme-switcher-panel {
  background: rgba(245, 243, 237, 0.92);
  border: 1px solid #1c1c1c;
  box-shadow: none;
}
.theme-solaris .panel-btn.active { background: #1c1c1c; }
.theme-solaris .panel-btn.active .color-dot { outline-color: #fbf9f4; }

.theme-brutalist .landing-theme-switcher-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #1a1a1a;
  border-radius: 0;
  box-shadow: 3px 3px 0 #1a1a1a;
}
.theme-brutalist .panel-btn { border-radius: 0; }
.theme-brutalist .panel-btn.active { background: #ffde4d; }

.theme-arcane .landing-theme-switcher-panel {
  background: rgba(250, 245, 232, 0.92);
  border: 1px solid rgba(197, 155, 39, 0.4);
}
.theme-arcane .panel-btn.active { background: rgba(223, 177, 91, 0.45); }

.theme-glamour .landing-theme-switcher-panel {
  background: rgba(255, 240, 243, 0.9);
  border: 1px solid rgba(255, 42, 122, 0.2);
}
.theme-glamour .panel-btn.active { background: rgba(255, 42, 122, 0.2); }

/* 5. Header Dynamic Styling Overrides on Landing Page */
body.theme-luxcall .header {
  background: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}
body.theme-luxcall .logo-text { color: #1a1a1a !important; }
body.theme-luxcall .nav-link { color: #4b5563 !important; }

body.theme-material .header {
  background: rgba(247, 242, 254, 0.8) !important;
  border-bottom: 1px solid rgba(103, 80, 164, 0.1) !important;
}
body.theme-material .logo-text { color: #1c1b1f !important; }
body.theme-material .nav-link { color: #49454f !important; }

body.theme-brutalist .header {
  background: #ffffff !important;
  border-bottom: 3px solid #1a1a1a !important;
}
body.theme-brutalist .logo-text { color: #1a1a1a !important; }
body.theme-brutalist .nav-link { color: #1a1a1a !important; font-weight: 700; }

body.theme-midnight .header {
  background: rgba(3, 7, 18, 0.8) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.theme-midnight .logo-text { color: #ffffff !important; }
body.theme-midnight .nav-link { color: #94a3b8 !important; }

body.theme-glamour .header {
  background: rgba(255, 240, 243, 0.8) !important;
  border-bottom: 1px solid rgba(255, 42, 122, 0.1) !important;
}
body.theme-glamour .logo-text { color: #4a1224 !important; }
body.theme-glamour .nav-link { color: #702038 !important; }

body.theme-arcane .header {
  background: rgba(253, 250, 242, 0.85) !important;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2) !important;
}
body.theme-arcane .logo-text { color: #322013 !important; font-family: 'Playfair Display', serif; }
body.theme-arcane .nav-link { color: #5c4636 !important; font-family: 'Playfair Display', serif; }

body.theme-solaris .header {
  background: #fbf9f4 !important;
  border-bottom: 1px solid #1c1c1c !important;
}
body.theme-solaris .logo-text { color: #1c1c1c !important; font-family: monospace; }
body.theme-solaris .nav-link { color: #4a4a4a !important; font-family: monospace; }

/* 6. Dynamic Hero Background System */
.hero-section {
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-dynamic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  z-index: 0;
}

/* Activate correct background layer based on active theme class */
.theme-luxcall .hero-bg-layer.bg-luxcall,
.theme-material .hero-bg-layer.bg-material,
.theme-brutalist .hero-bg-layer.bg-brutalist,
.theme-midnight .hero-bg-layer.bg-midnight,
.theme-glamour .hero-bg-layer.bg-glamour,
.theme-arcane .hero-bg-layer.bg-arcane,
.theme-solaris .hero-bg-layer.bg-solaris {
  opacity: 1;
  visibility: visible;
}

/* Luxcall background */
.hero-bg-layer.bg-luxcall {
  background: radial-gradient(circle at 80% 20%, rgba(0, 107, 255, 0.12), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(0, 162, 255, 0.08), transparent 50%),
              #f8fafc;
}

/* Material blobs animate */
.hero-bg-layer.bg-material .blob-1,
.hero-bg-layer.bg-material .blob-2 {
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(103, 80, 164, 0.12);
  filter: blur(80px);
  border-radius: 50%;
  animation: floatBlob 12s infinite alternate ease-in-out;
}
.hero-bg-layer.bg-material .blob-1 { top: -10%; left: 5%; }
.hero-bg-layer.bg-material .blob-2 { bottom: -10%; right: 5%; animation-delay: -6s; }

/* Glamour silk glowing blobs */
.hero-bg-layer.bg-glamour .silk-glow-1,
.hero-bg-layer.bg-glamour .silk-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 42, 122, 0.15);
  filter: blur(80px);
  border-radius: 50%;
  animation: floatBlob 10s infinite alternate ease-in-out;
}
.hero-bg-layer.bg-glamour .silk-glow-1 { top: -50px; right: 10%; }
.hero-bg-layer.bg-glamour .silk-glow-2 { bottom: -50px; left: 10%; animation-delay: -5s; }

/* Arcane mystic orbs */
.hero-bg-layer.bg-arcane .mystic-orb-1,
.hero-bg-layer.bg-arcane .mystic-orb-2,
.hero-bg-layer.bg-arcane .mystic-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: floatBlob 14s infinite alternate ease-in-out;
  mix-blend-mode: screen;
}
.hero-bg-layer.bg-arcane .mystic-orb-1 { width: 320px; height: 320px; background: rgba(223, 177, 91, 0.22); top: 5%; left: 10%; }
.hero-bg-layer.bg-arcane .mystic-orb-2 { width: 350px; height: 350px; background: rgba(168, 85, 247, 0.12); bottom: 5%; right: 10%; animation-delay: -4s; }
.hero-bg-layer.bg-arcane .mystic-orb-3 { width: 280px; height: 280px; background: rgba(236, 72, 153, 0.08); top: 35%; left: 45%; animation-delay: -8s; }

/* Solaris dots */
.hero-bg-layer.bg-solaris .solaris-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#1c1c1c 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.06;
}

/* Brutalist stripes grid */
.hero-bg-layer.bg-brutalist .brutalist-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(26,26,26,0.03) 2px, transparent 2px), linear-gradient(90deg, rgba(26,26,26,0.03) 2px, transparent 2px);
  background-size: 40px 40px;
}

/* Demo Inner Components Overrides */
/* Brutalist inner cards */
.theme-brutalist .agenda-card, 
.theme-brutalist .form-field-row,
.theme-brutalist .reschedule-step,
.theme-brutalist .mini-phone-frame {
  border: 2px solid #1a1a1a !important;
  box-shadow: 3px 3px 0 #1a1a1a !important;
  border-radius: 0px !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
}
.theme-brutalist .agenda-card.cal-luxcall {
  background: #ffde4d !important;
}
.theme-brutalist .form-field-row.highlight {
  background: #ffde4d !important;
}
.theme-brutalist .reschedule-step.step-target {
  background: #ffde4d !important;
}

/* Solaris inner cards */
.theme-solaris .agenda-card, 
.theme-solaris .form-field-row,
.theme-solaris .reschedule-step,
.theme-solaris .mini-phone-frame {
  border: 1px solid #1c1c1c !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  background: #fbf9f4 !important;
  color: #1c1c1c !important;
}
.theme-solaris .agenda-card.cal-luxcall {
  background: #f5f3ed !important;
}
.theme-solaris .form-field-row.highlight {
  background: #f5f3ed !important;
  border: 1px dashed #1c1c1c !important;
}
.theme-solaris .reschedule-step.step-target {
  background: #1c1c1c !important;
  color: #fbf9f4 !important;
}
.theme-solaris .reschedule-step.step-target .step-val {
  color: #fbf9f4 !important;
}

/* Arcane inner cards */
.theme-arcane .agenda-card, 
.theme-arcane .form-field-row,
.theme-arcane .reschedule-step,
.theme-arcane .mini-phone-frame {
  border: 1px solid rgba(197, 155, 39, 0.3) !important;
  box-shadow: 0 4px 10px rgba(197, 155, 39, 0.05) !important;
  border-radius: 8px 2px 8px 2px !important;
  background: #ffffff !important;
  color: #322013 !important;
}
.theme-arcane .agenda-card.cal-luxcall {
  background: #faf5e8 !important;
  border: 1px solid #dfb15b !important;
}
.theme-arcane .form-field-row.highlight {
  background: #faf5e8 !important;
  border: 1px solid #dfb15b !important;
}
.theme-arcane .reschedule-step.step-target {
  background: #faf5e8 !important;
  border: 1px solid #dfb15b !important;
}
.theme-arcane .reschedule-step.step-target .step-val {
  color: #b8862d !important;
}
.theme-arcane .browser-header {
  background: #faf5e8 !important;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2) !important;
}

@keyframes floatBlob {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
  100% { transform: translateY(15px) scale(0.96); }
}

.landing-mobile-cta {
  display: none;
}

/* ========================================================
   MOBILE-FIRST LANDING EXPERIENCE
   ======================================================== */
@media (max-width: 900px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .landing-page {
    overflow-x: clip;
  }

  .hero-section {
    padding: 88px 18px 48px !important;
    padding-top: max(88px, calc(56px + env(safe-area-inset-top) + 28px)) !important;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
    max-width: 100%;
    padding: 0 2px;
  }

  .hero-subtitle {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    margin: 0 auto 24px !important;
    padding: 0 2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    padding: 14px 18px !important;
    font-size: 15px !important;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
  }

  .hero-mockup-container {
    margin-top: 28px;
  }

  .interactive-demo-container {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
    width: 100%;
  }

  .demo-controls {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    width: 100%;
  }

  .demo-control-btn {
    width: 100% !important;
    min-width: 0;
    flex-shrink: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 8px;
    min-height: 72px;
  }

  .demo-control-btn:hover {
    transform: none;
  }

  .control-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
  }

  .control-label-full {
    display: none;
  }

  .control-label-short {
    display: block;
    font-size: 13px !important;
    font-weight: 700;
  }

  .control-text {
    align-items: center;
    gap: 0;
  }

  .control-text span {
    display: none;
  }

  .demo-preview-card {
    padding: 14px !important;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .preview-mockup-header-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .demo-explain-text {
    font-size: 13.5px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .showcase-section {
    overflow: visible;
  }

  .theme-switcher-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    border-radius: 16px !important;
    gap: 8px;
    padding: 8px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 16px !important;
  }

  .theme-demo-btn {
    width: 100%;
    min-width: 0;
    flex-shrink: 1;
    padding: 12px 8px !important;
    min-height: 44px;
    font-size: 13px;
    border-radius: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .theme-demo-btn:nth-child(7) {
    grid-column: 1 / -1;
  }

  .theme-btn-full {
    display: none;
  }

  .theme-btn-short {
    display: inline;
  }

  .landing-page .section-title,
  .landing-page .showcase-title,
  .landing-page .cta-title {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .section-header,
  .showcase-header {
    margin-bottom: 28px !important;
    padding: 0 4px;
  }

  .showcase-desc {
    font-size: 15px !important;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .how-section,
  .cap-section,
  .showcase-section,
  .compare-section,
  .features-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .how-section {
    padding-top: 48px !important;
    padding-bottom: 36px !important;
  }

  .cap-section {
    padding-top: 8px !important;
    padding-bottom: 48px !important;
  }

  .trusted-by {
    padding: 32px 16px !important;
  }

  .trusted-pills {
    gap: 10px 12px !important;
    font-size: 12px !important;
    letter-spacing: 0.04em;
  }

  .how-steps {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .how-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-card-border, var(--border-color));
  }

  .how-step:last-child {
    border-bottom: none;
  }

  .how-step-num {
    grid-row: 1 / span 2;
    font-size: 15px;
    padding-top: 2px;
  }

  .how-step h3 {
    font-size: 16.5px;
    margin-bottom: 6px;
  }

  .how-step p {
    font-size: 14px;
    grid-column: 2;
  }

  .cap-grid {
    gap: 12px !important;
  }

  .cap-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .cap-card h3 {
    font-size: 16px;
  }

  .cap-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .customizer-bar {
    width: 100%;
    box-sizing: border-box;
  }

  .customizer-label {
    font-size: 12px;
    font-weight: 700;
  }

  .color-picker-wrapper,
  .bg-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible !important;
    white-space: normal !important;
  }

  .bg-preset-btn {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .color-preset {
    width: 28px;
    height: 28px;
  }

  .custom-color-input {
    width: 36px;
    height: 36px;
  }

  .mockup-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mockup-slot {
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .compare-container {
    border-radius: 16px;
    overflow: hidden;
  }

  .compare-col {
    padding: 20px 16px !important;
  }

  .compare-item {
    align-items: flex-start;
    gap: 10px;
  }

  .compare-item-title {
    display: block;
    margin-bottom: 4px;
  }

  .bento-card {
    padding: 20px 16px !important;
    border-radius: 18px;
  }

  .bento-title {
    font-size: 17px;
  }

  .bento-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .bento-visual {
    margin-top: 12px;
    overflow: hidden;
  }

  .access-panel,
  .pricing-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pricing-card {
    padding: 24px 18px !important;
  }

  .btn-pricing {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }

  .faq-section {
    max-width: 100%;
    padding-top: 48px !important;
    padding-bottom: 40px !important;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    padding: 16px 14px 16px 16px;
    font-size: 15px;
    min-height: 48px;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }

  .cta-section {
    padding: 48px 16px 88px !important;
  }

  .cta-description {
    font-size: 15.5px !important;
    margin-bottom: 24px !important;
  }

  .cta-section .btn-white {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    min-height: 48px;
    box-sizing: border-box;
  }

  .landing-theme-switcher-panel {
    display: none !important;
  }

  .landing-mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--lp-bg, #fff) 86%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--lp-card-border, rgba(0, 0, 0, 0.08));
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  }

  .landing-mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--primary-contrast, #fff);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: inherit;
  }

  .landing-page.theme-brutalist .landing-mobile-cta-btn {
    border-radius: 0;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
  }

  .main-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
    margin-bottom: 72px;
  }

  .footer-links-minimal {
    justify-content: center;
    gap: 16px 20px !important;
  }

  .footer-links-minimal a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 76px 14px 36px !important;
  }

  .hero-title br {
    display: none;
  }

  .form-field-row {
    flex-wrap: wrap;
  }

  .field-tag {
    margin-left: 0;
  }

  .video-preview-player {
    min-height: 140px;
  }

  .audio-preview-player {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions,
  .stars-container,
  .synthwave-grid,
  .landing-page * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-actions .btn-primary:hover,
  .hero-actions .btn-secondary:hover,
  .btn-white:hover,
  .demo-control-btn:hover {
    transform: none !important;
  }
}
