/* ==========================================================================
   LAUNCHDESK — ₹73 LAKH ENTERPRISE MASTER STYLESHEET (200+ ENGINEER TEAM)
   ========================================================================== */

:root {
  /* Default Luxury Palette: Gold Obsidian */
  --bg: #060813;
  --bg-subtle: #0d1222;
  --card-bg: rgba(15, 22, 38, 0.85);
  --card-border: rgba(245, 158, 11, 0.25);
  --card-border-hover: rgba(245, 158, 11, 0.6);
  
  --text: #fef3c7;
  --text-muted: #e2e8f0;
  --text-dim: #cbd5e1;

  /* Accents */
  --mint: #f59e0b;
  --mint-glow: rgba(245, 158, 11, 0.4);
  --mint-dark: #d97706;
  
  --indigo: #8b5cf6;
  --indigo-glow: rgba(139, 92, 246, 0.4);
  --violet: #d97706;
  
  --amber: #fbbf24;
  --amber-glow: rgba(251, 191, 36, 0.4);
  
  --cyan: #f59e0b;
  --cyan-glow: rgba(245, 158, 11, 0.3);
  --rose: #f43f5e;

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Playfair Display', serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --tr-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing System */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
}

/* Sapphire Cyber Theme */
[data-theme="sapphire"] {
  --bg: #040914;
  --bg-subtle: #091329;
  --card-bg: rgba(10, 20, 42, 0.85);
  --card-border: rgba(59, 130, 246, 0.3);
  --card-border-hover: rgba(59, 130, 246, 0.7);
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --mint: #3b82f6;
  --mint-glow: rgba(59, 130, 246, 0.4);
  --mint-dark: #2563eb;
  --cyan: #06b6d4;
  --amber: #60a5fa;
}

/* Emerald Regal Theme */
[data-theme="emerald"] {
  --bg: #04100c;
  --bg-subtle: #081e17;
  --card-bg: rgba(9, 32, 24, 0.85);
  --card-border: rgba(16, 185, 129, 0.3);
  --card-border-hover: rgba(16, 185, 129, 0.7);
  --text: #ecfdf5;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --mint: #10b981;
  --mint-glow: rgba(16, 185, 129, 0.4);
  --mint-dark: #059669;
  --cyan: #34d399;
  --amber: #f59e0b;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Visibility Utilities */
.desktop-only { display: flex !important; }
.mobile-only { display: none !important; }

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Custom Magnetic Glow Cursor (Desktop) */
#customCursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--mint);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

#cursorFollower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--card-border-hover);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s cubic-bezier(0.1, 1, 0.1, 1), width 0.2s, height 0.2s;
}

/* Interactive Particle Canvas */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.75;
}

/* Background Glowing Mesh */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.bg-glow-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  bottom: 5%;
  left: -150px;
}

.bg-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -6s;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}

/* Palette Switcher */
.palette-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 3px;
  border-radius: 20px;
  gap: 4px;
}

.palette-btn {
  background: none;
  border: none;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--tr-fast);
}

.palette-btn.active, .palette-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

/* Enterprise Status & Team Capacity Bar */
.enterprise-bar {
  background: #030408;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-dim);
  padding: 6px 0;
}

.e-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-capacity-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  padding: 2px 10px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
}

.t-sep { color: var(--text-dim); }

.e-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SECTION 1: ₹73 LAKH VALUATION STYLES */
.valuation-card {
  background: linear-gradient(135deg, rgba(22, 18, 8, 0.9) 0%, rgba(13, 18, 34, 0.9) 100%);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245, 158, 11, 0.2);
}

.val-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--card-border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.val-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fbbf24;
  letter-spacing: 0.12em;
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.val-amount {
  font-size: 42px;
  font-family: var(--font-display);
  margin-top: 8px;
}

.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.val-box {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.val-icon { font-size: 32px; margin-bottom: 14px; }
.val-box h4 { font-size: 18px; margin-bottom: 8px; }
.val-box p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.val-cost { font-family: var(--font-mono); font-size: 13px; color: #fbbf24; background: rgba(245,158,11,0.1); padding: 6px 12px; border-radius: 6px; border: 1px solid rgba(245,158,11,0.2); }

/* SECTION 2: 200+ SQUAD DIRECTORY STYLES */
.team-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.t-tab {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.t-tab.active, .t-tab:hover {
  background: #f59e0b;
  color: #1a0c00;
  border-color: #f59e0b;
}

.squads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.squad-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.squad-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  border: 1px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.squad-info h4 { font-size: 16px; margin-bottom: 2px; }
.squad-info span { font-size: 12px; color: #fbbf24; font-family: var(--font-mono); display: block; margin-bottom: 6px; }
.squad-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }

.squad-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.s-tag { background: rgba(255,255,255,0.05); font-size: 11px; padding: 2px 8px; border-radius: 4px; color: var(--text-dim); }

/* SECTION 3: LIVE SERVER TELEMETRY */
.telemetry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.tel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tel-node-box {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  padding: 20px;
  border-radius: var(--radius-md);
}

.node-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); margin-bottom: 8px; }
.tel-node-box strong { font-size: 22px; display: block; margin-bottom: 4px; }
.tel-node-box small { font-size: 12px; color: var(--text-muted); }

/* Global Office Tabs Showcase */
.offices-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.office-tab {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.office-tab.active, .office-tab:hover {
  background: #f59e0b;
  color: #1a0c00;
  border-color: #f59e0b;
}

.office-display-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.o-box {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  padding: 20px;
  border-radius: var(--radius-md);
}

.o-box span { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); display: block; }
.o-box strong { font-size: 18px; margin-top: 4px; display: block; }

/* Radar Canvas Widget */
.radar-widget {
  background: #090d16;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Typography Utilities */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.gold-text { color: #fbbf24 !important; }
.gold-sub { color: #d97706 !important; }

.grad-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shimmer-text {
  background-size: 200% auto;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText { to { background-position: 200% center; } }

.mono { font-family: var(--font-mono); }

/* Container */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-space { padding: 48px 24px; }
section[id] { scroll-margin-top: 90px; }
.hidden { display: none !important; }

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--tr-smooth);
  text-decoration: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.gold-shimmer-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #1a0c00 !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.gold-shimmer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.55);
  filter: brightness(1.1);
}

.btn.primary-btn {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  color: #042f2e;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--mint-glow);
}

.btn.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--mint-glow);
  filter: brightness(1.1);
}

.btn.line-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--card-border);
  color: var(--text);
}

.btn.line-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
}

.btn.sm { padding: 9px 16px; font-size: 13.5px; border-radius: var(--radius-sm); }
.btn.lg { padding: 16px 32px; font-size: 16px; }
.btn.full-width { width: 100%; }

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}
.icon-btn:hover { border-color: var(--mint); background: rgba(245, 158, 11, 0.1); }

/* Hover Lift Effect */
.hover-lift {
  transition: transform var(--tr-smooth), border-color var(--tr-smooth), box-shadow var(--tr-smooth);
}
.hover-lift:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* Header */
header.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 19, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}

.topbar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }

.logo-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.logo-box.sm { width: 32px; height: 32px; border-radius: 8px; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #1a0c00; }
.brand-text { display: flex; flex-direction: column; }
#brandName { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
#brandTag { font-size: 11px; font-weight: 400; }

.navlinks { display: flex; align-items: center; gap: 24px; }
.navlinks a { color: var(--text-muted); font-size: 14px; font-weight: 500; cursor: pointer; transition: color var(--tr-fast); text-decoration: none; }
.navlinks a:hover { color: var(--amber); }

.nav-track-btn { background: rgba(245, 158, 11, 0.12); color: #fbbf24 !important; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(245, 158, 11, 0.3); }
.nav-admin-btn { background: rgba(139, 92, 246, 0.12); color: var(--indigo) !important; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(139, 92, 246, 0.25); }

.top-actions { display: flex; align-items: center; gap: 12px; }

.currency-selector select {
  background: var(--bg-subtle);
  color: var(--text);
  border: 1px solid var(--card-border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

/* Mobile Hamburger Button */
.hamburger-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.h-line {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all var(--tr-fast);
}

.hamburger-btn.active .h-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .h-line:nth-child(2) { opacity: 0; }
.hamburger-btn.active .h-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Navigation Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #090e1c;
  border-left: 1px solid var(--card-border);
  z-index: 1900;
  transform: translateX(100%);
  transition: transform var(--tr-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-head {
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.mobile-status-card {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

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

.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--tr-fast);
}

.mobile-nav-list a:hover {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero { padding-top: 60px; padding-bottom: 70px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 48px; align-items: center; }

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: #fbbf24;
  font-weight: 500;
  margin-bottom: 20px;
}

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

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-title { font-size: 54px; letter-spacing: -0.03em; margin-bottom: 20px; }
.lede { font-size: 17.5px; color: var(--text-muted); max-width: 540px; line-height: 1.6; margin-bottom: 32px; }

.hero-cta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

/* Hero Order Lookup Box */
.hero-lookup-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  max-width: 500px;
}

.lookup-input-wrap { display: flex; align-items: center; gap: 10px; }
.lookup-icon { font-size: 16px; }

.lookup-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

/* Quote Builder Card */
.quote-builder-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 40px; }
.qb-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }

.qb-options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.qb-cb-item { font-size: 13.5px; color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 8px; }

.qb-summary-box { background: var(--bg-subtle); border: 1px solid var(--card-border); padding: 32px; border-radius: var(--radius-lg); text-align: center; }
.qb-summary-box span { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); display: block; }
.qb-summary-box strong { font-family: var(--font-display); font-size: 36px; display: block; margin: 8px 0; }

/* Trust stats */
.trust { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--card-border); padding-top: 24px; }
.trust-stats { display: flex; align-items: center; gap: 20px; }
.t-stat strong { font-family: var(--font-display); font-size: 18px; color: var(--text); display: block; }
.t-stat span { font-size: 12px; color: var(--text-dim); }
.t-divider { width: 1px; height: 28px; background: var(--card-border); }

/* Hero Widget Switcher Tabs */
.hero-widget-tabs { display: flex; gap: 8px; margin-bottom: 12px; }

.h-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.h-tab.active { background: #f59e0b; color: #1a0c00; border-color: #f59e0b; }

/* Terminal Log Widget */
.terminal-widget { background: #090d16; border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.term-header { background: #111827; padding: 10px 16px; display: flex; align-items: center; gap: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); border-bottom: 1px solid var(--card-border); }

.term-body { padding: 20px; font-size: 12.5px; display: flex; flex-direction: column; gap: 10px; min-height: 280px; }
.log-line { line-height: 1.5; }
.log-info { color: var(--cyan); }
.log-success { color: var(--mint); }
.log-warn { color: var(--amber); }

/* 3D Tilt Ticket Widget */
.ticket-wrapper { perspective: 1000px; }

.ticket.tilt-card {
  background: linear-gradient(160deg, #161208 0%, #0d1222 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow var(--tr-smooth);
}

.ticket-shine { position: absolute; inset: 0; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 60%); pointer-events: none; opacity: 0; transition: opacity 0.2s ease; }
.ticket:hover .ticket-shine { opacity: 1; }

.ticket-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.t-brand { display: flex; align-items: center; gap: 8px; }

.t-logo { width: 24px; height: 24px; background: #f59e0b; color: #1a0c00; border-radius: 6px; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); }

.ticket-header h4 { font-size: 13px; letter-spacing: 0.12em; color: var(--text-muted); }

.tno { font-family: var(--font-mono); font-size: 13px; color: #fbbf24; background: rgba(245, 158, 11, 0.12); padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(245, 158, 11, 0.3); }

hr.tdash { border: none; border-top: 2px dashed rgba(255, 255, 255, 0.1); margin: 18px 0; }
.ticket-details { display: flex; flex-direction: column; gap: 12px; }
.trow { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; }

.t-label { color: var(--text-muted); }
.t-val { font-family: var(--font-mono); font-size: 13px; color: var(--text); font-weight: 500; }

.highlight-gold { color: #fbbf24; }

.total-row { margin-top: 4px; }
.total-label { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); }
.total-amount { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fbbf24; }

.glow-text-gold { text-shadow: 0 0 16px rgba(245, 158, 11, 0.4); }

.ticket-progress-block { margin-top: 18px; }
.progress-title { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.08em; margin-bottom: 8px; }

.stage-name { color: #fbbf24; }

.tstage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.tstage i { height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; transition: background var(--tr-smooth); }
.tstage i.active { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }

.barcode-container { margin-top: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.barcode { width: 100%; height: 34px; background: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 4px, #fff 4px, #fff 7px, transparent 7px, transparent 10px); opacity: 0.45; border-radius: 2px; }
.barcode-code { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-dim); letter-spacing: 0.15em; }

/* Marquee */
.marquee-section { padding: 30px 0; background: rgba(255, 255, 255, 0.015); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); overflow: hidden; }
.marquee-title { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.15em; text-align: center; margin-bottom: 16px; }

.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marqueeLoop 30s linear infinite; }

@keyframes marqueeLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.m-logo { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-muted); opacity: 0.6; transition: opacity var(--tr-fast); }
.m-logo:hover { opacity: 1; color: var(--text); }

/* Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.bento-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 3; }

.bento-badge { font-family: var(--font-mono); font-size: 11.5px; color: #fbbf24; margin-bottom: 12px; }
.bento-card h3 { font-size: 22px; margin-bottom: 10px; }
.bento-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.bento-visual { margin-top: auto; background: var(--bg-subtle); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 16px; }
.cdn-visual { display: flex; justify-content: space-around; }

.ping-node { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: #fbbf24; }
.ping-node span { width: 8px; height: 8px; border-radius: 50%; background: #fbbf24; box-shadow: 0 0 10px #fbbf24; }

.cms-visual, .lock-visual, .lead-visual { text-align: center; font-size: 13px; }
.mini-cms-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.shield-lock { font-weight: 700; color: var(--indigo); letter-spacing: 0.1em; }
.lead-bubble { background: rgba(245, 158, 11, 0.15); color: #fbbf24; padding: 8px 12px; border-radius: 8px; }

/* Calculator Section */
.calc-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 40px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.calc-toggles { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.calc-cb-label { font-size: 14px; color: var(--text); cursor: pointer; }

.compare-box { background: var(--bg-subtle); border: 1px solid var(--card-border); padding: 24px; border-radius: var(--radius-md); margin-bottom: 16px; }
.compare-box.launchdesk { border-color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.compare-box span { font-size: 13px; color: var(--text-muted); display: block; }
.compare-box strong { font-family: var(--font-display); font-size: 26px; display: block; margin: 4px 0; }
.compare-box small { font-size: 12px; color: var(--text-dim); }

/* Matrix Table Responsive Wrapper */
.table-responsive-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--card-border); }

.matrix-table { width: 100%; border-collapse: collapse; background: var(--card-bg); }
.matrix-table th, .matrix-table td { padding: 18px 24px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--card-border); }
.matrix-table th { background: rgba(255, 255, 255, 0.03); font-family: var(--font-display); font-size: 14px; }
.matrix-table .col-highlight { background: rgba(245, 158, 11, 0.08); font-weight: 600; }

/* Section Headings */
.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; max-width: 650px; margin-left: auto; margin-right: auto; }
.sec-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

.eyebrow { font-family: var(--font-mono); font-size: 12.5px; color: #fbbf24; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.sec-sub { color: var(--text-muted); font-size: 16px; margin-top: 10px; }

/* Process Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.stepcard { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 28px 24px; position: relative; }
.step-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: rgba(255, 255, 255, 0.08); position: absolute; top: 16px; right: 20px; }
.step-icon { font-size: 28px; margin-bottom: 16px; }
.stepcard h4 { font-size: 18px; margin-bottom: 10px; }
.stepcard p { font-size: 14px; color: var(--text-muted); }

/* Preset Search & Filters */
.search-box { position: relative; width: 280px; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-dim); }
.search-box input { width: 100%; background: var(--bg-subtle); border: 1px solid var(--card-border); padding: 10px 14px 10px 38px; border-radius: var(--radius-sm); color: var(--text); font-size: 13.5px; outline: none; }
.search-box input:focus { border-color: #f59e0b; }

.filters-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

.filter-btn { background: var(--card-bg); border: 1px solid var(--card-border); color: var(--text-muted); padding: 8px 18px; border-radius: 20px; font-size: 13.5px; font-weight: 500; cursor: pointer; transition: all var(--tr-fast); }
.filter-btn:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.2); }
.filter-btn.active { background: #f59e0b; color: #1a0c00; font-weight: 700; border-color: #f59e0b; box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35); }

/* Preset Cards Grid */
.preset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.preset-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.preset-card.selected-card { border-color: #f59e0b !important; box-shadow: 0 0 24px rgba(245, 158, 11, 0.35), 0 16px 40px rgba(0, 0, 0, 0.5) !important; }

.preset-preview-box { height: 200px; background: #151b29; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.preset-badge { position: absolute; top: 14px; left: 14px; background: rgba(11, 15, 25, 0.85); backdrop-filter: blur(8px); border: 1px solid var(--card-border); padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600; color: #fbbf24; }
.preset-speed-badge { position: absolute; top: 14px; right: 14px; background: rgba(245, 158, 11, 0.2); color: #fbbf24; padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600; border: 1px solid rgba(245, 158, 11, 0.3); }

.preset-info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.preset-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.preset-header h3 { font-size: 20px; }
.preset-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fbbf24; }
.preset-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; flex: 1; }

.preset-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.preset-tag { background: rgba(255, 255, 255, 0.05); color: var(--text-dim); font-size: 11.5px; padding: 3px 8px; border-radius: 4px; }

.preset-actions { display: flex; align-items: center; gap: 10px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 32px 28px; }
.f-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* Checkout Stepper */
.stepper-container { margin-bottom: 32px; }

.stepper { display: flex; align-items: center; justify-content: center; gap: 14px; background: var(--card-bg); border: 1px solid var(--card-border); padding: 16px 24px; border-radius: var(--radius-md); max-width: 780px; margin: 0 auto; }
.s { display: flex; align-items: center; gap: 10px; cursor: pointer; opacity: 0.45; transition: opacity var(--tr-fast); }
.s.active { opacity: 1; }

.s-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: var(--text); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; font-weight: 700; }
.s.active .s-num { background: #f59e0b; color: #1a0c00; }
.s-title { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; }
.s-arrow { color: var(--text-dim); font-size: 14px; }

/* Checkout Layout */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.step-panel { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 32px; }
.panel-actions { margin-top: 28px; display: flex; justify-content: flex-end; align-items: center; }
.panel-actions.split-actions { justify-content: space-between; }

.pay-tag { background: rgba(0, 0, 0, 0.25); padding: 3px 8px; border-radius: 6px; font-family: var(--font-mono); font-size: 13px; margin-left: 6px; }
.modal-actions { margin-top: 20px; }

.panel-header { margin-bottom: 24px; }
.panel-header h3 { font-size: 22px; }
.panel-header p { color: var(--text-muted); font-size: 14px; }

/* Addon list */
.addon-list { display: flex; flex-direction: column; gap: 14px; }

.addon-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--card-border); padding: 16px 20px; border-radius: var(--radius-md); cursor: pointer; transition: all var(--tr-fast); }
.addon-item:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); }
.addon-item.selected { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); }

.addon-left { display: flex; align-items: center; gap: 14px; }
.addon-cb { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--text-dim); display: flex; align-items: center; justify-content: center; font-size: 12px; color: transparent; transition: all var(--tr-fast); }
.addon-item.selected .addon-cb { background: #f59e0b; border-color: #f59e0b; color: #1a0c00; }

.addon-info h4 { font-size: 15px; font-weight: 600; }
.addon-info p { font-size: 12.5px; color: var(--text-muted); }
.addon-price { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: #fbbf24; }

/* Forms */
.field-group, .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

input, textarea, select {
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--tr-fast);
}

input:focus, textarea:focus, select:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3); }
textarea { min-height: 100px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: span 2; }

.input-with-icon { position: relative; }
.input-with-icon input { width: 100%; padding-right: 44px; }
.card-brand-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 18px; }

.promo-box { background: rgba(255, 255, 255, 0.03); border: 1px dashed var(--card-border); padding: 16px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.inline-field { display: flex; gap: 10px; }
.inline-field input { flex: 1; }

.coupon-status { font-size: 12px; margin-top: 6px; display: block; }
.coupon-status.success { color: #fbbf24; }
.coupon-status.error { color: var(--rose); }

/* Domain Search UI */
.domain-search-card { background: var(--bg-subtle); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 24px; }
.domain-input-wrap { display: flex; align-items: center; gap: 12px; }
.domain-icon { font-size: 20px; }
.domain-input-wrap input { flex: 1; font-family: var(--font-mono); font-size: 15px; }

.domain-results-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.domain-result-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--card-border); padding: 14px 18px; border-radius: var(--radius-sm); }
.domain-name { font-family: var(--font-mono); font-weight: 600; font-size: 15px; }
.domain-status-tag { font-size: 12px; padding: 4px 10px; border-radius: 4px; font-weight: 600; }

.domain-status-tag.available { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.domain-status-tag.taken { background: rgba(244, 63, 94, 0.15); color: var(--rose); }

.domain-help-text { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.domain-skip-option { border-top: 1px dashed var(--card-border); padding-top: 14px; }

/* Confirmation UI */
.confirm-container { text-align: center; padding: 20px 0; }

.checkmark-circle {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #f59e0b;
}

.pop-in { animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.confirm-sub { color: var(--text-muted); max-width: 500px; margin: 10px auto 28px; font-size: 15px; }

.order-timeline-card { background: var(--bg-subtle); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px; text-align: left; }
.order-timeline-card h4 { font-size: 14px; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }

.timeline { display: flex; flex-direction: column; gap: 12px; }
.tl-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-dim); }

.tl-item.done .tl-dot { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.tl-date { font-family: var(--font-mono); color: var(--text-dim); font-size: 12px; margin-left: auto; }

.admin-credentials-box { background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.25); border-radius: var(--radius-md); padding: 20px; text-align: left; margin-bottom: 28px; }
.cred-header { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--indigo); margin-bottom: 12px; }
.cred-content { font-family: var(--font-mono); font-size: 13.5px; background: rgba(0, 0, 0, 0.3); padding: 12px 16px; border-radius: 6px; color: var(--text); margin-bottom: 10px; }
.cred-note { font-size: 12px; color: var(--text-muted); }

.confirm-actions { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* Summary Column */
.summary-panel { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; }
.summary-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }

.badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.info-badge { background: rgba(139, 92, 246, 0.15); color: var(--indigo); }
.mint-badge { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.primary-badge { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }

.summary-body { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.sumrow { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--text-muted); }

.sum-divider { border: none; border-top: 1px solid var(--card-border); margin: 16px 0; }
.total-row .rl { font-weight: 700; color: var(--text); font-size: 15px; }
.total-row .rv { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fbbf24; }

.summary-guarantee { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; border-top: 1px dashed var(--card-border); padding-top: 18px; }
.g-item { display: flex; gap: 12px; }
.g-icon { font-size: 20px; }
.g-item strong { font-size: 13px; display: block; }
.g-item p { font-size: 11.5px; color: var(--text-dim); }

/* Floating LaunchBot AI Widget */
.launchbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1500; }

.launchbot-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a0c00;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: transform var(--tr-fast);
}

.launchbot-btn:hover { transform: scale(1.06); }
.bot-badge { background: rgba(0, 0, 0, 0.2); padding: 2px 8px; border-radius: 12px; font-size: 11px; }

.launchbot-window {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 350px;
  height: 440px;
  background: #0d1222;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bot-head { background: #151d33; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--card-border); }
.bot-chat-body { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }

.bot-msg { background: rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: var(--text); line-height: 1.5; align-self: flex-start; max-width: 90%; }
.user-msg { background: #f59e0b; color: #1a0c00; font-weight: 600; align-self: flex-end; border-radius: 12px; padding: 10px 14px; font-size: 13px; }

.bot-input-area { padding: 12px; background: #151d33; display: flex; gap: 8px; }
.bot-input-area input { flex: 1; padding: 8px 12px; font-size: 13px; }

/* Testimonials / Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.stars { margin-bottom: 12px; font-size: 14px; }
.review-quote { font-size: 14.5px; color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.r-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-subtle); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.reviewer strong { display: block; font-size: 14px; }
.reviewer span { font-size: 12px; color: var(--text-dim); }

/* Footer */
footer { background: #03040a; border-top: 1px solid var(--card-border); padding: 48px 0 28px; margin-top: 48px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 36px; }
.foot-col h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-dim); font-size: 13.5px; text-decoration: none; transition: color var(--tr-fast); }
.foot-col a:hover { color: #fbbf24; }
.foot-socials { display: flex; gap: 12px; margin-top: 14px; }
.social-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-subtle); border: 1px solid var(--card-border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all var(--tr-fast); }
.social-icon:hover { border-color: #f59e0b; color: #fbbf24; background: rgba(245, 158, 11, 0.1); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12px; color: var(--text-dim); }
.foot-left { display: flex; flex-direction: column; gap: 8px; }
.foot-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.foot-meta { display: flex; align-items: center; gap: 16px; }

.modepill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Backdrop & Modals */
.backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); z-index: 3500; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity var(--tr-smooth); }
.backdrop.active { opacity: 1; pointer-events: auto; }

.modal { background: #0d1222; border: 1px solid var(--card-border); border-radius: var(--radius-lg); width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6); transform: translateY(20px); transition: transform var(--tr-smooth); }
.backdrop.active .modal { transform: translateY(0); }

.modal-sm { max-width: 400px; }
.modal-md { max-width: 580px; }
.modal-xl { max-width: 1100px; }

.mhead { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--card-border); }
.x { background: none; border: none; color: var(--text-dim); font-size: 20px; cursor: pointer; padding: 4px 8px; border-radius: 4px; }
.x:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); }
.mbody { padding: 24px; }

/* =========================================================
   ADMIN DASHBOARD PORTAL — FULL UPGRADE
   ========================================================= */
.admin-app-container { position: fixed; inset: 0; background: #060813; z-index: 2500; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity var(--tr-smooth); }
.admin-app-container.active { opacity: 1; pointer-events: auto; }

.ahead { height: 60px; background: #080d1a; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; flex-shrink: 0; }
.abrand { display: flex; align-items: center; gap: 12px; }
.a-title { font-size: 14px; color: var(--text-muted); }
.a-title strong { color: var(--text); }
.ahead-actions { display: flex; align-items: center; gap: 10px; }

.save-flash { font-size: 11px; color: #fbbf24; background: rgba(245,158,11,0.15); padding: 3px 10px; border-radius: 20px; opacity: 0; transition: opacity var(--tr-fast); }
.save-flash.active { opacity: 1; }

.ashell { display: grid; grid-template-columns: 220px 1fr; flex: 1; overflow: hidden; min-height: 0; }

/* Sidebar */
.aside { background: #060b18; border-right: 1px solid rgba(255,255,255,0.06); padding: 16px 10px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
.admin-nav-section { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-dim); text-transform: uppercase; padding: 14px 14px 6px; margin-top: 4px; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; color: var(--text-muted); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s; position: relative; }
.admin-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.admin-nav-item.active { background: linear-gradient(135deg, #f59e0b, #d97706); color: #0a0600; font-weight: 700; box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
.admin-nav-item .nav-icon { font-size: 15px; flex-shrink: 0; }
.admin-nav-badge { margin-left: auto; background: #ef4444; color: #fff; font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 10px; min-width: 18px; text-align: center; }
.admin-nav-item.active .admin-nav-badge { background: rgba(0,0,0,0.3); color: #fff; }

.admin-nav-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 8px 10px; }

/* Main Content */
.amain { padding: 28px 32px; overflow-y: auto; }
.admin-sec-title { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.admin-sec-title h2 { font-size: 20px; margin: 0; }
.admin-sec-title-actions { display: flex; gap: 10px; align-items: center; }

/* KPI Cards */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.kpi-card { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px 20px; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.kpi-card:hover { transform: translateY(-2px); border-color: rgba(245,158,11,0.3); }
.kpi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--kpi-accent, #f59e0b); }
.kpi-card.cyan::before { background: #06b6d4; }
.kpi-card.green::before { background: #10b981; }
.kpi-card.rose::before { background: #f43f5e; }
.kpi-card.purple::before { background: #a855f7; }
.kpi-card.blue::before { background: #3b82f6; }
.kpi-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.kpi-value { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; font-family: var(--font-display); }
.kpi-sub { font-size: 11px; color: var(--text-dim); }
.kpi-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 28px; opacity: 0.12; }

/* Pipeline Funnel */
.pipeline-strip { display: flex; gap: 4px; margin-bottom: 28px; }
.pipeline-stage { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px; text-align: center; position: relative; transition: background 0.2s; }
.pipeline-stage:hover { background: rgba(255,255,255,0.07); cursor: pointer; }
.pipeline-stage .ps-count { font-size: 22px; font-weight: 800; color: var(--text); font-family: var(--font-display); }
.pipeline-stage .ps-label { font-size: 10px; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.pipeline-stage .ps-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; border-radius: 0 0 10px 10px; }
.ps-bar.s1 { background: #3b82f6; }
.ps-bar.s2 { background: #a855f7; }
.ps-bar.s3 { background: #f59e0b; }
.ps-bar.s4 { background: #10b981; }

/* Activity Feed */
.activity-feed { display: flex; flex-direction: column; gap: 0; }
.activity-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; background: rgba(255,255,255,0.05); }
.activity-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.activity-text strong { color: var(--text); }
.activity-time { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* Two-column admin layout */
.admin-two-col { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.admin-card { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px 24px; }
.admin-card-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; justify-content: space-between; }

/* Orders: search + filter bar */
.orders-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.orders-search { flex: 1; min-width: 200px; background: #0b1120; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 9px 14px; color: var(--text); font-size: 13px; outline: none; }
.orders-search:focus { border-color: #f59e0b; }
.stage-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.stage-tab { padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); transition: all 0.15s; background: transparent; }
.stage-tab:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.stage-tab.active { background: #f59e0b; color: #0a0600; border-color: #f59e0b; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 13px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-table th { background: rgba(255,255,255,0.025); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table td.mono { font-family: var(--font-mono); }

.stage-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.stage-badge.s1 { background: rgba(59,130,246,0.15); color: #60a5fa; }
.stage-badge.s2 { background: rgba(168,85,247,0.15); color: #c084fc; }
.stage-badge.s3 { background: rgba(245,158,11,0.15); color: #fbbf24; }
.stage-badge.s4 { background: rgba(16,185,129,0.15); color: #34d399; }

/* Order Detail Drawer */
.order-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 3000; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.order-drawer-overlay.active { opacity: 1; pointer-events: auto; }
.order-drawer { position: fixed; top: 0; right: -480px; width: 460px; max-width: 95vw; height: 100vh; background: #0a1020; border-left: 1px solid rgba(255,255,255,0.08); z-index: 3001; padding: 28px 24px; overflow-y: auto; transition: right 0.3s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; gap: 20px; }
.order-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; }
.drawer-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 16px 18px; }
.drawer-section-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.drawer-field { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.drawer-field:last-child { margin-bottom: 0; }
.drawer-field label { font-size: 11px; color: var(--text-dim); }
.drawer-field span { font-size: 13px; color: var(--text); font-weight: 500; }
.drawer-stage-select { width: 100%; background: #0f1a2e; border: 1px solid rgba(255,255,255,0.1); color: var(--text); padding: 9px 12px; border-radius: 8px; font-size: 13px; }

/* Preset Card Grid */
.preset-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.preset-admin-card { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px; transition: border-color 0.2s, transform 0.2s; }
.preset-admin-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); }
.preset-admin-card.hidden-preset { opacity: 0.45; border-style: dashed; }
.pac-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.pac-title { font-size: 14px; font-weight: 700; color: var(--text); }
.pac-category { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.pac-price { font-size: 18px; font-weight: 800; color: #fbbf24; font-family: var(--font-display); }
.pac-price-label { font-size: 10px; color: var(--text-dim); text-align: right; }
.pac-demos { display: flex; flex-direction: column; gap: 6px; margin: 12px 0; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.pac-demo-link { font-size: 12px; color: #fbbf24; text-decoration: none; }
.pac-demo-link.nil { color: var(--text-dim); }
.pac-stats { display: flex; gap: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.05); }
.pac-stat { text-align: center; flex: 1; }
.pac-stat-val { font-size: 14px; font-weight: 700; color: var(--text); }
.pac-stat-label { font-size: 10px; color: var(--text-dim); }
.pac-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* Revenue Tab */
.rev-bar-wrap { display: flex; flex-direction: column; gap: 10px; }
.rev-bar-row { display: grid; grid-template-columns: 140px 1fr 80px; align-items: center; gap: 12px; }
.rev-bar-label { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-bar-track { background: rgba(255,255,255,0.06); border-radius: 4px; height: 8px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: linear-gradient(90deg, #f59e0b, #d97706); border-radius: 4px; transition: width 0.8s ease; }
.rev-bar-val { font-size: 12px; color: #fbbf24; font-weight: 700; text-align: right; font-family: var(--font-mono); }

/* CMS Editor */
.cms-section-group { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px 24px; margin-bottom: 20px; }
.cms-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.cms-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cms-fields .field.full { grid-column: 1 / -1; }

/* Message Thread */
.msg-order-group { margin-bottom: 20px; }
.msg-order-header { font-size: 12px; font-weight: 700; color: var(--text-muted); padding: 10px 14px; background: rgba(255,255,255,0.03); border-radius: 8px 8px 0 0; border: 1px solid rgba(255,255,255,0.06); border-bottom: none; display: flex; justify-content: space-between; }
.msg-thread { border: 1px solid rgba(255,255,255,0.06); border-radius: 0 0 8px 8px; overflow: hidden; }
.msg-bubble { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 4px; }
.msg-bubble:last-child { border-bottom: none; }
.msg-bubble.client { background: rgba(59,130,246,0.06); }
.msg-bubble.admin { background: rgba(245,158,11,0.06); }
.msg-meta { display: flex; justify-content: space-between; align-items: center; }
.msg-sender { font-size: 11px; font-weight: 700; color: var(--text-dim); }
.msg-sender.admin-sender { color: #fbbf24; }
.msg-time { font-size: 10px; color: var(--text-dim); }
.msg-content { font-size: 13px; color: var(--text); line-height: 1.5; }
.msg-reply-box { display: flex; gap: 10px; margin-top: 10px; align-items: flex-end; }
.msg-reply-input { flex: 1; background: #0b1120; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 13px; resize: vertical; min-height: 70px; outline: none; }
.msg-reply-input:focus { border-color: #f59e0b; }

/* Settings */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.settings-card { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px 24px; }
.settings-card-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }
.settings-card.danger-card { border-color: rgba(244,63,94,0.2); }
.settings-card.danger-card .settings-card-title { color: #f87171; }
.settings-card.full { grid-column: 1 / -1; }

/* Admin empty state */
.admin-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.admin-empty-icon { font-size: 40px; margin-bottom: 14px; }
.admin-empty h4 { margin: 0 0 8px; color: var(--text); }
.admin-empty p { font-size: 13px; max-width: 300px; margin: 0 auto; }

/* Toast System */
.toast { position: fixed; bottom: 24px; right: 24px; background: #0f1629; color: var(--text); border: 1px solid var(--card-border); padding: 14px 22px; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); font-size: 14px; font-weight: 500; z-index: 4000; transform: translateY(100px); opacity: 0; transition: all var(--tr-smooth); }
.toast.active { transform: translateY(0); opacity: 1; }
.toast.success { border-color: #f59e0b; color: #fbbf24; }
.toast.error { border-color: var(--rose); color: var(--rose); }


/* ==========================================================================
   MOBILE STATS TICKER
   ========================================================================== */

.mobile-ticker {
  background: #030408;
  border-bottom: 1px solid var(--card-border);
  height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fbbf24;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  flex-shrink: 0;
  animation: tickerPulse 1.5s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px #fbbf24; }
  50% { opacity: 0.3; box-shadow: none; }
}

#tickerText {
  transition: opacity 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   PRESET DEMO LINKS BAR (inside Preview Modal)
   ========================================================================== */

.prev-demo-bar {
  padding: 20px 24px;
  background: rgba(245, 158, 11, 0.04);
  border-bottom: 1px solid var(--card-border);
}

.demo-bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.demo-card.user-demo::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.demo-card.admin-demo::before { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }

.demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.demo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}

.user-demo .demo-card-icon {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.admin-demo .demo-card-icon {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.demo-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.demo-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.demo-card-cta {
  margin-top: 14px;
  align-self: flex-start;
}

.demo-card-cta:disabled {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text-dim) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  cursor: not-allowed;
  box-shadow: none !important;
  opacity: 0.6;
}

.demo-mock-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 10px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-mock-divider::before,
.demo-mock-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

/* Admin Preset Demo Status Pills */
.demo-status-ok  { color: #fbbf24; font-size: 11.5px; display: flex; align-items: center; gap: 4px; }
.demo-status-nil { color: var(--text-dim); font-size: 11.5px; display: flex; align-items: center; gap: 4px; }

/* ==========================================================================
   IN-PAGE MOCK PREVIEW (Device Window Layout)
   ========================================================================== */

.device-viewport {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  width: 100%;
}

.device-viewport.desktop {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.device-viewport.tablet {
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  border: 4px solid var(--card-border);
}

.device-viewport.mobile {
  width: 375px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  border: 6px solid var(--card-border);
}

.viewport-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--card-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.viewport-header .dots {
  display: flex;
  gap: 6px;
}

.viewport-header .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.viewport-header .dots .red { background: #f43f5e; }
.viewport-header .dots .yellow { background: #fbbf24; }
.viewport-header .dots .green { background: #10b981; }

.url-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.viewport-content {
  background: #060813;
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.mock-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.mock-hero {
  text-align: center;
  padding: 20px 0;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }

  .topbar { height: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 36px; }
  .lookup-input-wrap { flex-direction: column; gap: 10px; }
  .lookup-input-wrap input, .lookup-input-wrap button { width: 100%; }
  
  .val-grid, .squads-grid, .tel-grid, .preset-grid, .features-grid, .reviews-grid, .steps-grid, .bento-grid, .office-grid { grid-template-columns: 1fr !important; }
  .bento-large, .bento-wide { grid-column: span 1 !important; }
  
  .checkout-grid, .calc-grid, .qb-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .ashell { grid-template-columns: 1fr; }
  
  #customCursor, #cursorFollower { display: none !important; }
}

@media (max-width: 640px) {
  /* -- Global Mobile Font Size & Touch Targets -- */
  html, body { font-size: 16px; overflow-x: hidden; width: 100%; box-sizing: border-box; }
  *, *:before, *:after { box-sizing: inherit; }
  input, select, textarea { font-size: 16px !important; }
  .sec-head p, .lede, .val-box p, .squad-info p, .review-quote, .demo-card-desc, .addon-info p { font-size: 16px !important; }
  .sec-head.split { gap: 20px; flex-direction: column; align-items: flex-start; }
  
  /* WCAG 44x44px Minimum Touch Targets */
  .btn, .icon-btn, .t-tab, .h-tab, .office-tab, .admin-nav-item, input, select, textarea {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .h-tab { padding: 10px 14px; font-size: 14px; }
  .icon-btn { min-width: 44px; justify-content: center; }

  /* -- Enterprise bar: hidden, replaced by mobile ticker -- */
  .enterprise-bar { display: none !important; }
  .mobile-only { display: flex !important; }
  .desktop-only { display: none !important; }

  /* -- Header -- */
  .topbar { height: 64px; }
  .palette-selector { display: none !important; }
  #soundToggleBtn { display: none !important; } /* Simplify header on mobile */
  .top-actions { gap: 12px; }
  .brand-text small { display: none; }  /* hide tagline under logo on mobile */

  /* -- Hero -- */
  .hero-title { font-size: 32px; line-height: 1.25; }
  .lede { font-size: 16px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-grid { gap: 32px; }

  /* -- Hero Order Lookup -- */
  .lookup-input-wrap { flex-direction: column; gap: 12px; }
  .lookup-input-wrap input { width: 100%; }
  .lookup-input-wrap button { width: 100%; }

  /* -- Trust Stats Strip -- */
  .trust-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .t-divider { display: none; }
  .t-stat strong { font-size: 20px; }
  .t-stat span { font-size: 14px; }

  /* -- Hero Ticket Widget -- */
  .hero-widget-tabs { gap: 8px; flex-wrap: wrap; }
  .ticket {
    padding: 20px;
    font-size: 14px;
    max-width: 100%;
    overflow: hidden;
  }
  .ticket-header h4 { font-size: 15px; }
  .tno { font-size: 14px; }
  .t-label { font-size: 13px; }
  .t-val { font-size: 13.5px; }
  .total-amount { font-size: 24px; }
  .barcode-container { display: none; }  /* barcode useless on mobile */
  .barcode-code { display: none; }

  /* -- Section Spacing -- */
  .section-space { padding: 60px 16px; }
  .wrap { padding: 0 16px; }

  /* -- Valuation Card -- */
  .valuation-card { padding: 24px 16px; }
  .val-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .val-amount { font-size: 32px; }
  .val-grid { grid-template-columns: 1fr !important; }

  /* -- Squads / Teams -- */
  .squads-grid { grid-template-columns: 1fr !important; }
  .team-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .t-tab { white-space: nowrap; flex-shrink: 0; padding: 0 20px; }

  /* -- Telemetry -- */
  .tel-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* -- Global Hubs / Offices -- */
  .offices-tabs-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .office-tab { white-space: nowrap; flex-shrink: 0; padding: 0 20px; font-size: 14px; }
  .office-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* -- Bento Grid -- */
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-large, .bento-wide { grid-column: span 1 !important; }

  /* -- Process Steps -- */
  .steps-grid { grid-template-columns: 1fr !important; }

  /* -- Presets Grid -- */
  .preset-grid { grid-template-columns: 1fr !important; }
  .filters-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; gap: 12px; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; min-height: 44px; display: inline-flex; align-items: center; padding: 0 16px; }

  /* -- Quote Builder -- */
  .qb-grid { grid-template-columns: 1fr !important; }

  /* -- Calculator -- */
  .calc-grid { grid-template-columns: 1fr !important; }

  /* -- Reviews -- */
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* -- Checkout -- */
  .checkout-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Show order summary ABOVE the steps on mobile */
  .checkout-right { order: -1; }
  .summary-panel { position: static; }

  /* Stepper: 2 steps per row */
  .stepper-container { overflow-x: auto; }
  .stepper { gap: 6px; justify-content: flex-start; }
  .s { padding: 8px 12px; }
  .s-num { font-size: 13px; }
  .s-title { font-size: 11px; }
  .s-arrow { display: none; }

  /* Addon items — bigger touch targets */
  .addon-item { padding: 14px; }

  /* Domain input: stack vertically */
  .domain-input-wrap { flex-direction: column; align-items: stretch; gap: 10px; }
  .domain-input-wrap button { width: 100%; }

  /* Confirm actions: stack */
  .confirm-actions { flex-direction: column; align-items: stretch; }
  .confirm-actions .btn { width: 100%; }

  /* -- Demo Cards in Preview Modal -- */
  .demo-cards-grid { grid-template-columns: 1fr; }
  .prev-demo-bar { padding: 16px; }

  /* Modal sizing */
  .modal { border-radius: var(--radius-md); max-height: 92vh; }
  .modal-xl { max-width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; align-self: flex-end; max-height: 92vh; }
  .mhead { padding: 16px; }
  .mbody { padding: 16px; }
  .preview-mbody { padding: 12px; }

  /* LaunchBot: icon only on mobile */
  .launchbot-widget { bottom: 16px; right: 16px; }
  .launchbot-btn { padding: 12px 14px; }
  .bot-badge { display: none; }
  .launchbot-window { width: calc(100vw - 32px); right: 0; bottom: 70px; height: 370px; }

  /* -- Admin Dashboard -- */
  .ashell { grid-template-columns: 1fr; overflow-y: auto; }
  .aside {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 8px 12px;
    gap: 6px;
    border-right: none;
    border-bottom: 1px solid var(--card-border);
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
  }
  .admin-nav-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 12.5px;
    border-radius: 20px;
  }
  .amain { padding: 16px; }
  .admin-sec-title { flex-direction: column; align-items: flex-start; gap: 10px; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 10px 12px; }
  .ahead { padding: 0 16px; }
  .ahead-actions .btn:first-child { display: none; }

  /* Footer */
  .foot-wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .foot-meta { flex-wrap: wrap; }
}
/* =========================================================
   Unified Auth & Razorpay Styles
   ========================================================= */
.auth-tabs { margin-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.auth-tab {
  background: transparent; border: none; color: var(--text-muted); padding: 8px 0; font-size: 14px; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s;
}
.auth-tab:hover { color: var(--text); }
.auth-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.pwd-bar { transition: background 0.3s ease; }
.pwd-weak { background: var(--rose) !important; }
.pwd-medium { background: var(--mint) !important; }
.pwd-strong { background: var(--accent) !important; }

/* Client Hub */
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 8px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-item:hover {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.nav-item.active { 
  background: rgba(245, 158, 11, 0.08); 
  color: var(--accent); 
  border-left-color: var(--accent); 
  font-weight: 600;
}

/* Razorpay Elements */
.rzp-method-card { transition: all 0.2s ease; cursor: pointer; }
.rzp-method-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: var(--accent); }
.rzp-method-card.active { border-color: var(--accent); background: var(--accent-glow); }

/* User Profile Nav Button */
.user-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #000; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.auth-profile-container .btn { display: flex; align-items: center; gap: 8px; padding: 6px 14px; }

/* Print Styles for Invoice */
@media print {
  body * { visibility: hidden; }
  #invoiceContent, #invoiceContent * { visibility: visible; }
  #invoiceContent { position: absolute; left: 0; top: 0; width: 100%; color: #000 !important; background: #fff !important; }
  #invoiceModal { position: static; background: #fff; }
  .modal-lg { box-shadow: none; width: 100%; max-width: none; }
  .mhead { display: none; }
}


/* Domain Search Empty State */
.domain-empty-state { text-align: center; padding: 60px 20px; background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.1); border-radius: 12px; margin: 24px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.domain-empty-state .empty-icon-wrap { width: 80px; height: 80px; background: rgba(234, 179, 8, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); box-shadow: 0 0 40px rgba(234, 179, 8, 0.1); }

/* ==========================================================================
   SUPER ADMIN TEMPLATE ENGINE STYLES (WebsiteHub Theme)
   ========================================================================== */
.sa-header-badge {
  background: linear-gradient(135deg, #a855f7, #6b21a8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 8px;
}

.sa-table-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  margin-top: 16px;
}

.sa-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.sa-table th {
  background: rgba(30, 27, 75, 0.6);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.sa-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
  vertical-align: middle;
}

.sa-table tr:hover td {
  background: rgba(139, 92, 246, 0.05);
}

.sa-code-badge {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 700;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
}

.sa-status-yes {
  color: #4ade80;
  font-weight: 700;
  font-size: 12px;
  background: rgba(74, 222, 128, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.sa-status-pop {
  color: #fbbf24;
  font-weight: 700;
  font-size: 12px;
  background: rgba(251, 191, 36, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.sa-btn-purple {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sa-btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}


