@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #6366F1; /* Vibrant Indigo */
  --primary-glow: rgba(99, 102, 241, 0.25);
  --secondary: #06B6D4; /* Bright Cyan */
  --secondary-glow: rgba(6, 182, 212, 0.25);
  --dark-bg: #060913; /* Deep Cyber Black */
  --dark-surface: rgba(15, 23, 42, 0.55);
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --border-glow: rgba(6, 182, 212, 0.25);
  --accent-orange: #F97316;
  --accent-green: #10B981;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 85px;
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

/* 3D Background Spheres */
.floating-sphere {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  animation: floatGlobe 15s infinite ease-in-out;
}

.sphere-primary {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 80%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.sphere-secondary {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 80%);
  top: 45%;
  right: -10%;
  animation-delay: 3s;
}

.sphere-accent {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(236, 72, 153, 0) 80%);
  bottom: 15%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes floatGlobe {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Global Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light) !important;
}

/* Force Dark Theme Overrides for Bootstrap Utility Classes */
.bg-light {
  background-color: #0B0F19 !important;
}

.bg-white {
  background-color: #060913 !important;
}

.text-dark {
  color: var(--text-light) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.border {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Translucent Glassmorphic Header Navigation */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(6, 9, 19, 0.7) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #94A3B8 !important;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FFFFFF !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-orange {
  color: var(--accent-orange) !important;
  font-weight: 600;
}

.nav-orange:hover {
  color: #FF7A00 !important;
}

/* Hero Section Refinements */
.hero-section {
  height: 85vh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}

.hero-bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.2; /* Darker backdrop integration */
}

.hero-bg .overlay {
  background: linear-gradient(135deg, rgba(6, 9, 19, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  background: linear-gradient(135deg, #FFFFFF 30%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-section p {
  font-size: 1.25rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* Premium Dynamic Action Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), #4F46E5);
  color: var(--text-light) !important;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--primary-glow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4F46E5, var(--primary));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary), #0891B2);
  color: var(--text-light) !important;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 18px var(--secondary-glow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0891B2, var(--secondary));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary-custom:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

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

/* 3D Perspective Wrappers & Cards */
.perspective-container {
  perspective: 1500px;
}

.card, .card-custom, .pricing-card, .feature-card-grad {
  background: var(--dark-surface) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px !important;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease !important;
  overflow: hidden;
  color: var(--text-light) !important;
  transform-style: preserve-3d;
}

.card:hover, .card-custom:hover, .feature-card-grad:hover {
  border-color: rgba(6, 182, 212, 0.45) !important;
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15) !important;
}

/* Inside 3D card pop-outs */
.pop-out-content {
  transform: translateZ(35px);
}

/* Custom list group updates */
.list-group-item {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Track Icon Styles */
.track-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 2rem;
  background: rgba(99, 102, 241, 0.15);
  color: #818CF8;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition);
}

.card-custom:hover .track-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFFFFF;
  border-color: transparent;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* Gradient Sidebar/Details on Feature Cards */
.feature-card-grad {
  padding: 30px;
  height: 100%;
}

.feature-card-grad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.feature-card-grad:hover::before {
  opacity: 1;
}

.feature-card-grad h5 i {
  color: var(--secondary) !important;
  font-size: 1.5rem;
}

/* Pricing Card Highlights */
.pricing-card.popular {
  border: 2px solid var(--primary) !important;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15) !important;
}

.pricing-card.popular::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  font-size: 0.8rem;
  padding: 5px 18px;
}

.feature-list li {
  color: #94A3B8;
  font-size: 0.98rem;
  padding: 10px 0;
}

.feature-list li i {
  color: var(--secondary) !important;
}

/* Accordion FAQs styling overrides */
.accordion-item {
  background: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: rgba(6, 182, 212, 0.25) !important;
}

.accordion-button {
  background: rgba(30, 41, 59, 0.2) !important;
  color: var(--text-light) !important;
  padding: 20px 24px;
  box-shadow: none !important;
  border: none !important;
  transition: var(--transition);
}

.accordion-button:not(.collapsed) {
  background: rgba(99, 102, 241, 0.15) !important;
  color: #818CF8 !important;
}

.accordion-body {
  background: rgba(15, 23, 42, 0.2) !important;
  color: #94A3B8 !important;
  padding: 24px;
}

/* Styled Inputs with transition glows */
.form-control {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  transition: var(--transition) !important;
}

.form-control::placeholder {
  color: #64748B !important;
}

.form-control:focus {
  background: rgba(15, 23, 42, 0.85) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.25) !important;
}

/* Badging & Indicators */
.platform-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.platform-badge.active {
  background-color: rgba(16, 185, 129, 0.1) !important;
  color: #34D399 !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  animation: badgePulse 2s infinite;
}

.platform-badge.soon {
  background-color: rgba(249, 115, 22, 0.1) !important;
  color: #FB923C !important;
  border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Success Stats Counters customization */
.counter {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #FFFFFF 40%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphic Cookies Banner */
.cookie-banner {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Footer layout highlights */
.footer-area {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-link:hover {
  color: var(--secondary) !important;
  transform: translateX(4px);
}

.social-icon {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  border-color: transparent;
}

/* Custom Table Adjustments for Dashboard */
.table-dark-custom {
  background: rgba(30, 41, 59, 0.2) !important;
}

.table-dark-custom th {
  background: rgba(15, 23, 42, 0.9) !important;
  color: #FFFFFF !important;
}

/* Beautiful Animated Login/Register Card Border */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(99, 102, 241, 0.25) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 15px rgba(99, 102, 241, 0.1);
  }
  50% {
    border-color: rgba(6, 182, 212, 0.6) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(6, 182, 212, 0.3);
  }
}

.auth-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 45%),
              radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.12), transparent 45%),
              var(--dark-bg);
  padding-top: 20px !important;
}

.login-card {
  animation: borderGlow 6s infinite;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px !important;
}

/* Blended Input Groups with Prepended Icons inside Auth Forms */
.login-card .input-group-text {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-right: none !important;
  color: #94A3B8 !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-left: 16px;
  padding-right: 12px;
  transition: var(--transition);
}

.login-card .form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: none !important;
}

.login-card .input-group:focus-within .input-group-text {
  border-color: var(--secondary) !important;
  color: #FFFFFF !important;
}

/* Features Grid Styling Improvements */
.search-box-custom {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #FFFFFF;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 8px 18px;
  color: #94A3B8;
  font-size: 0.88rem;
  transition: var(--transition);
  cursor: pointer;
}

.feature-pill:hover, .feature-pill.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ==========================================================================
   ParentGuard Dashboard Custom Layout & Visuals
   ========================================================================== */

.dashboard-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--dark-bg);
}

.dashboard-sidebar {
  width: 280px;
  background: rgba(11, 15, 25, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 24px;
  overflow-y: auto;
  transition: var(--transition);
}

.dashboard-main {
  margin-left: 280px;
  flex: 1;
  padding: 30px;
  min-width: 0;
  background-color: var(--dark-bg);
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }
  .dashboard-sidebar.show {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
    padding: 20px;
  }
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.sidebar-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 24px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #94A3B8 !important;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 4px;
  border: 1px solid transparent;
  cursor: pointer;
}

.sidebar-nav-link i {
  font-size: 1.1rem;
  transition: var(--transition);
}

.sidebar-nav-link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.03);
}

.sidebar-nav-link.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.05));
  color: #FFFFFF !important;
  border-color: rgba(6, 182, 212, 0.2) !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}

.sidebar-nav-link.active i {
  color: var(--secondary) !important;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.telemetry-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.telemetry-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.telemetry-card i {
  font-size: 1.1rem;
}

/* Chat Log Bubbles */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
  overflow-y: auto;
  padding: 20px;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-bubble {
  max-width: 65%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  position: relative;
}

.chat-bubble.incoming {
  align-self: flex-start;
  background: rgba(30, 41, 59, 0.7);
  color: var(--text-light);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: rgba(99, 102, 241, 0.15);
  color: var(--text-light);
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.chat-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  text-align: right;
}

.chat-sender {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  margin-bottom: 4px;
}

/* Keylogger Keystroke Logs */
.keystroke-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.keystroke-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.keystroke-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #E2E8F0;
  word-break: break-all;
}

/* App Screens captures */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.screenshot-item {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.screenshot-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: translateY(-4px);
  border-color: var(--secondary) !important;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.15) !important;
}

.screenshot-item:hover img {
  opacity: 1;
}

.screenshot-meta {
  padding: 12px 16px;
  font-size: 0.8rem;
  background: rgba(11, 15, 25, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mock Map widget styling */
.dashboard-map-wrapper {
  position: relative;
  height: 380px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(11, 15, 25, 0.9) 100%);
  overflow: hidden;
}

.dashboard-map-pin {
  position: absolute;
  font-size: 2.2rem;
  transform: translate(-50%, -100%);
  animation: bouncePin 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 10;
}

.dashboard-map-circle {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
  pointer-events: none;
}

/* Sidebar mobile backdrop overlay */
.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 95;
  transition: opacity 0.3s ease;
}

.sidebar-backdrop.show {
  display: block;
}

/* ==========================================================================
   Mobile Responsive Overrides
   ========================================================================== */
@media (max-width: 575.98px) {
  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .telemetry-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .telemetry-card {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 6px 10px;
  }
  .chat-bubble {
    max-width: 85%;
  }
  .dashboard-main {
    padding: 15px;
  }
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
  .login-card {
    padding: 24px 20px;
    border-radius: 16px !important;
  }
}