
/* Skip to main content
Keyboard shortcuts
Accessibility feedback
Drive

New
Home
My Drive
Computers
Shared with me
Recent
Starred
Spam
Trash
Storage
Get more storage


Ask Gemini
Explore these files
Ask about this folder
List highs and lows of each file

Aditya
3:45 AMAditya
69 KB */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reduce-motion * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Background Particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  background: transparent;
  pointer-events: none;
}

#particles {
  width: 100%;
  height: 100%;
  background: transparent;
  display: block;
}

/* Glass Effect */
.glass-effect {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
}

/* Enhanced Glass Effects */
.glass-effect-light {
  background: rgba(241, 245, 249, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect-strong {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Enhanced glassmorphic effect */
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 16px rgba(56, 189, 248, 0.1);
  
  /* Subtle gradient overlay */
  background-image: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 50%,
    rgba(15, 23, 42, 0.9) 100%
  );
  
  /* Wavy animation */
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.1),
    rgba(139, 92, 246, 0.1),
    rgba(16, 185, 129, 0.1),
    transparent
  );
  animation: navbarWave 8s ease-in-out infinite;
  z-index: -1;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #8b5cf6,
    #10b981,
    transparent
  );
  background-size: 200% 100%;
  animation: navbarGlow 3s ease-in-out infinite;
}

@keyframes navbarWave {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes navbarGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.5;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  transition: all 0.3s ease;
  /* make logo appear white on dark background */
  filter: invert(1) brightness(1.3) contrast(1.1);
  border-radius: 8px;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: invert(1) brightness(1.5) contrast(1.2) drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.nav-link:hover {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 
    0 4px 20px rgba(56, 189, 248, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, 
    rgba(56, 189, 248, 0.2) 0%,
    rgba(139, 92, 246, 0.15) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 
    0 6px 25px rgba(56, 189, 248, 0.25),
    0 2px 10px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  position: relative;
  overflow: hidden;
}

.nav-link.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #8b5cf6, #ec4899);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  opacity: 0;
}

.nav-link:hover::after {
  width: 85%;
  opacity: 0.7;
}

.nav-link.active::after {
  width: 90%;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f1f5f9;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-text {
  z-index: 2;
}

.typing-container h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.highlight {
  background: linear-gradient(45deg, #38bdf8, #06b6d4, #8b5cf6);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Typewriter Effect */
#typewriter {
  border-right: 3px solid #38bdf8;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { border-color: #38bdf8; }
  51%, 100% { border-color: transparent; }
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-size: 1rem;
}

.primary-btn {
  background: linear-gradient(45deg, #38bdf8, #06b6d4);
  color: #0f172a;
  box-shadow: 0 10px 40px rgba(56, 189, 248, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(56, 189, 248, 0.4);
}

.secondary-btn {
  background: transparent;
  color: #f1f5f9;
  border: 2px solid #38bdf8;
}

.secondary-btn:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 10px 40px rgba(56, 189, 248, 0.3); }
  50% { box-shadow: 0 20px 80px rgba(56, 189, 248, 0.6); }
  100% { box-shadow: 0 10px 40px rgba(56, 189, 248, 0.3); }
}

/* Ripple Effect */
.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  background: rgba(30, 41, 59, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: 400px;
  height: 300px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.mockup-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.mockup-title {
  font-size: 0.9rem;
  color: #94a3b8;
}

.mockup-content {
  padding: 20px;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chart-container {
  flex: 1;
  position: relative;
}

.mockup-stats {
  display: flex;
  justify-content: space-around;
}

.mock-stat {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.1);
}

.mock-stat.positive { border: 2px solid #10b981; }
.mock-stat.neutral { border: 2px solid #3b82f6; }
.mock-stat.negative { border: 2px solid #ef4444; }

.mock-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.mock-value {
  font-weight: 700;
  color: #38bdf8;
  display: block;
}

.mock-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  font-size: 2rem;
  animation: floatAround 8s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.7;
}

.float-element:nth-child(1) { top: 10%; left: 10%; }
.float-element:nth-child(2) { top: 20%; right: 10%; }
.float-element:nth-child(3) { bottom: 30%; left: 20%; }
.float-element:nth-child(4) { bottom: 10%; right: 20%; }

@keyframes floatAround {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(-30px) rotate(3deg); }
}

/* Features Section */
.features {
  padding: 100px 50px;
  background: rgba(15, 23, 42, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-title1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(56, 189, 248, 0.1), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(56, 189, 248, 0.2);
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.feature-icon {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  display: inline-block;
  font-size: 3rem;
  padding: 20px;
  background: linear-gradient(45deg, #38bdf8, #06b6d4);
  border-radius: 20px;
  color: #0f172a;
  box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f1f5f9;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.feature-demo {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* Demo Animations */
.demo-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  border-radius: 10px;
  color: #10b981;
  animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
  0%, 100% { transform: translateX(-20px); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

.demo-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
  justify-content: center;
}

.chart-bar {
  width: 20px;
  background: linear-gradient(to top, #38bdf8, #06b6d4);
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-in-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes growBar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.demo-browser {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
}

.browser-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  border-radius: 8px;
  color: #ef4444;
  font-size: 0.9rem;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Interactive Demo Section */
.demo-section {
  padding: 100px 50px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.demo-container h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #38bdf8;
}

.chat-demo {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.chat-window {
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  flex-direction: column;
  height: 500px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.chat-title {
  font-weight: 600;
  color: #f1f5f9;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: fadeInUp 0.5s ease;
}

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

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ai-message .message-avatar {
  background: linear-gradient(45deg, #38bdf8, #06b6d4);
}

.user-message .message-avatar {
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
}

.message-content {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 15px 15px 15px 5px;
  padding: 12px 16px;
  max-width: 80%;
}

.user-message .message-content {
  background: rgba(56, 189, 248, 0.2);
  border-radius: 15px 15px 5px 15px;
  margin-left: auto;
}

.message-time {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 5px;
  display: block;
}

.chat-input-container {
  display: flex;
  padding: 20px;
  gap: 12px;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  background: rgba(30, 41, 59, 0.8);
  color: #f1f5f9;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input:focus {
  background: rgba(30, 41, 59, 1);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.send-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(45deg, #38bdf8, #06b6d4);
  color: #0f172a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.analysis-panel {
  background: rgba(15, 23, 42, 0.9);
  padding: 30px 20px;
  border-left: 1px solid rgba(56, 189, 248, 0.1);
}

.analysis-panel h3 {
  color: #38bdf8;
  margin-bottom: 30px;
  text-align: center;
}

.analysis-metrics {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.metric {
  text-align: center;
}

.metric-label {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.sentiment-indicator {
  width: 100%;
  height: 8px;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.sentiment-bar {
  height: 100%;
  background: linear-gradient(45deg, #ef4444, #f59e0b, #10b981);
  border-radius: 4px;
  width: 60%;
  transition: width 0.5s ease;
}

.sentiment-text {
  color: #f1f5f9;
  font-weight: 600;
}

.progress-ring {
  position: relative;
  display: inline-block;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.progress-ring-bg,
.progress-ring-fill {
  fill: none;
  stroke-width: 4;
}

.progress-ring-bg {
  stroke: rgba(30, 41, 59, 0.8);
}

.progress-ring-fill {
  stroke: #38bdf8;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: #38bdf8;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #38bdf8;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 200px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.testimonial-content p {
  font-size: 1.2rem;
  color: #f1f5f9;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.author-avatar {
  font-size: 2rem;
}

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

.author-name {
  display: block;
  font-weight: 600;
  color: #38bdf8;
}

.author-title {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #38bdf8;
  transform: scale(1.2);
}

/* Dashboard Specific Styles - Redesigned */
.dashboard-header {
  position: relative;
  padding: 140px 50px 80px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 35%,
    rgba(56, 189, 248, 0.15) 70%,
    rgba(139, 92, 246, 0.1) 100%);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dashboard-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.header-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.header-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e2e8f0;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quick-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 2px 16px rgba(56, 189, 248, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
  transition: left 0.8s ease;
}

.quick-stat:hover::before {
  left: 100%;
}

.quick-stat:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(56, 189, 248, 0.2),
    0 0 0 1px rgba(56, 189, 248, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dashboard-stats .stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  text-shadow: none;
}

.dashboard-stats .stat-label {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dashboard Grid - Redesigned */
.dashboard {
  padding: 60px 50px 80px;
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.6) 0%,
    rgba(30, 41, 59, 0.4) 35%,
    rgba(15, 23, 42, 0.85) 100%);
  min-height: 100vh;
  position: relative;
  contain: layout style paint;
}

.dashboard-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  visibility: visible;
  min-height: 500px;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible;
  contain: layout style paint;
  will-change: transform;
  
  /* Enhanced shadow system */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 2px 16px rgba(56, 189, 248, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(56, 189, 248, 0.5), 
    rgba(139, 92, 246, 0.5), 
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.3),
    0 16px 32px rgba(56, 189, 248, 0.2),
    0 0 0 1px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

/* Grid positioning for different card sizes */
.large-card {
  grid-column: span 8;
}

.medium-card {
  grid-column: span 6;
}

.small-card {
  grid-column: span 4;
}

/* Card Header - Redesigned */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, 
    rgba(56, 189, 248, 0.05) 0%, 
    rgba(139, 92, 246, 0.03) 100%);
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(56, 189, 248, 0.3),
    transparent);
}

.card-header h3 {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f8fafc 0%, #38bdf8 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.action-btn {
  padding: 10px 16px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  color: #38bdf8;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.action-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.2);
}

.card-content {
  padding: 32px;
  position: relative;
}

/* Mock Sentiment Chart Styles */
.mock-sentiment-chart {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-container {
  position: relative;
  width: 250px;
  height: 250px;
}

.doughnut-chart {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #10b981 0deg 162deg,
    #3b82f6 162deg 252deg,
    #8b5cf6 252deg 306deg,
    #ef4444 306deg 342deg,
    #f59e0b 342deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chartRotate 2s ease-in-out;
}

.chart-center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #0f172a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.center-value {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1;
}

.center-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.chart-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-segment:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

@keyframes chartRotate {
  from {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.sentiment-legend {
  display: flex;
  justify-content: space-around;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-color.positive { background: #10b981; }
.legend-color.neutral { background: #3b82f6; }
.legend-color.excited { background: #8b5cf6; }
.legend-color.negative { background: #ef4444; }
.legend-color.concerned { background: #f59e0b; }

/* Mock Trends Chart Styles */
.mock-trends-chart {
  width: 100%;
  height: 250px;
  position: relative;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.chart-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.legend-line {
  width: 20px;
  height: 3px;
  border-radius: 2px;
}

.legend-line.engagement {
  background: #38bdf8;
}

.legend-line.productivity {
  background: #10b981;
}

.line-chart-container {
  position: relative;
  width: 100%;
  height: 180px;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.chart-lines {
  position: relative;
  width: 100%;
  height: 100%;
}

.trends-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trend-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s ease-in-out forwards;
}

.trend-line.engagement {
  animation-delay: 0.5s;
}

.trend-line.productivity {
  animation-delay: 1s;
}

.data-point {
  opacity: 0;
  animation: showPoints 0.5s ease-in-out forwards;
}

.data-point.engagement {
  animation-delay: 2s;
}

.data-point.productivity {
  animation-delay: 2.2s;
}

.data-point:hover {
  r: 6;
  filter: drop-shadow(0 0 8px currentColor);
  transition: all 0.3s ease;
}

.chart-labels {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.chart-labels .label {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  flex: 1;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes showPoints {
  to {
    opacity: 1;
  }
}

/* Engagement Meter - Fixed */
.engagement-meter {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(56, 189, 248, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.1);
  max-height: 400px;
  overflow: hidden;
}

.meter-container {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  width: 220px;
  height: 130px;
}

.meter-svg {
  width: 220px;
  height: 130px;
  filter: drop-shadow(0 4px 12px rgba(56, 189, 248, 0.2));
}

.meter-track,
.meter-progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.meter-track {
  stroke: rgba(255, 255, 255, 0.1);
}

.meter-progress {
  stroke: url(#meterGradient);
  stroke-dasharray: 220;
  stroke-dashoffset: 66;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.meter-value {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.value-unit {
  font-size: 1.5rem;
  color: #94a3b8;
}

.engagement-status {
  color: #f1f5f9;
  margin-bottom: 20px;
  text-align: center;
}

.engagement-insights {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
}

.insight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.insight-icon {
  color: #38bdf8;
}

/* Risk Assessment */
.risk-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.risk-status.low {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid #10b981;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

.risk-overview {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.risk-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.risk-item.safe {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.risk-item:hover {
  transform: translateX(5px);
}

.risk-icon {
  font-size: 1.2rem;
}

.risk-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.risk-title {
  font-weight: 600;
  color: #f1f5f9;
}

.risk-description {
  font-size: 0.9rem;
  color: #94a3b8;
}

.risk-timeline {
  padding-top: 20px;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  text-align: center;
}

.risk-timeline p {
  color: #10b981;
  font-weight: 500;
}

/* Time Selector */
.time-selector {
  display: flex;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}

.time-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: #94a3b8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.time-btn.active {
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
}

.time-btn:hover:not(.active) {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}

/* Activity Heatmap */
.heatmap-container {
  text-align: center;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.heatmap-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

.heatmap-cell:hover {
  transform: scale(1.1);
  border-color: #38bdf8;
}

.heatmap-cell.level-0 { background: rgba(30, 41, 59, 0.8); }
.heatmap-cell.level-1 { background: rgba(56, 189, 248, 0.2); }
.heatmap-cell.level-2 { background: rgba(56, 189, 248, 0.4); }
.heatmap-cell.level-3 { background: rgba(56, 189, 248, 0.6); }
.heatmap-cell.level-4 { background: rgba(56, 189, 248, 0.8); }

.heatmap-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.legend-scale {
  display: flex;
  gap: 2px;
}

.scale-item {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.scale-item.level-0 { background: rgba(30, 41, 59, 0.8); }
.scale-item.level-1 { background: rgba(56, 189, 248, 0.2); }
.scale-item.level-2 { background: rgba(56, 189, 248, 0.4); }
.scale-item.level-3 { background: rgba(56, 189, 248, 0.6); }
.scale-item.level-4 { background: rgba(56, 189, 248, 0.8); }

/* Session List */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.session-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.session-item:hover {
  background: rgba(15, 23, 42, 0.8);
  transform: translateX(5px);
}

.session-info {
  flex: 1;
}

.session-title {
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 5px;
}

.session-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.session-sentiment {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.session-sentiment.positive {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.session-sentiment.neutral {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.session-sentiment.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Wellness Card - Redesigned */
.wellness-card {
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.08) 0%, 
    rgba(56, 189, 248, 0.05) 50%,
    rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
}

.wellness-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    #10b981 0%, 
    #38bdf8 50%, 
    #8b5cf6 100%);
}

.wellness-item {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.wellness-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(16, 185, 129, 0.05), 
    transparent);
  transition: left 0.6s ease;
}

.wellness-item:hover::before {
  left: 100%;
}

.wellness-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

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

.wellness-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.2) 0%, 
    rgba(56, 189, 248, 0.2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.wellness-content {
  flex: 1;
}

.wellness-content h4 {
  color: #f8fafc;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.wellness-content p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.wellness-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #f8fafc;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.wellness-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wellness-btn:hover::before {
  opacity: 1;
}

.wellness-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  padding: 60px 50px 30px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: #38bdf8;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #38bdf8;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
}

.footer-brand h3 {
  color: #38bdf8;
  font-size: 1.5rem;
}

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

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 1.2rem;
  color: #38bdf8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(56, 189, 248, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  color: #64748b;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: both;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }

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

/* AOS Animation Styles */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: Ensure dashboard content is visible after a delay */
.dashboard-grid [data-aos="fade-up"] {
  animation: fadeInFallback 0.5s ease-in-out 1s forwards;
}

@keyframes fadeInFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
    padding: 0 15px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .dashboard-stats {
    gap: 40px;
  }
  
  .navbar {
    padding: 15px 40px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .dashboard-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  
  .large-card {
    grid-column: span 6;
  }
  
  .medium-card {
    grid-column: span 6;
  }
  
  .small-card {
    grid-column: span 3;
  }
  
  .chat-demo {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .mockup-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .dashboard-mockup {
    width: 350px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    padding: 100px 20px 50px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .typing-container h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 25px;
  }
  
  .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 30px;
  }
  
  .stats-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .stat {
    flex: 1;
    min-width: 120px;
  }
  
  .features,
  .dashboard,
  .demo-section,
  .testimonials {
    padding: 60px 25px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .dashboard-header {
    padding: 100px 25px 50px;
  }
  
  .dashboard-stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .large-card,
  .medium-card,
  .small-card {
    grid-column: span 1;
  }
  
  .engagement-meter {
    padding: 15px;
  }
  
  .meter-container {
    width: 180px;
    height: 100px;
  }
  
  .meter-svg {
    width: 180px;
    height: 100px;
  }
  
  .value-number {
    font-size: 2rem;
  }
  
  .value-unit {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .mockup-stats {
    flex-direction: column;
    gap: 8px;
  }
  
  .mock-stat {
    padding: 8px;
    font-size: 0.9rem;
  }
  
  .dashboard-mockup {
    width: 320px;
    height: 250px;
  }
  
  .analysis-panel {
    padding: 25px 15px;
  }
  
  .chat-window {
    height: 450px;
  }
  
  .footer {
    padding: 50px 25px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .hero {
    padding: 80px 15px 40px;
  }
  
  .hero-content {
    gap: 30px;
    padding: 0;
  }
  
  .typing-container h1 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    width: 100%;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 25px;
    font-size: 0.95rem;
  }
  
  .stats-bar {
    gap: 20px;
  }
  
  .stat {
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .features,
  .dashboard,
  .testimonials,
  .demo-section {
    padding: 50px 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .dashboard-header {
    padding: 100px 15px 60px;
  }
  
  .dashboard-header h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 18px;
  }
  
  .dashboard-header p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .dashboard-stats {
    gap: 20px;
  }
  
  .quick-stat .stat-value {
    font-size: 2rem;
  }
  
  .quick-stat .stat-label {
    font-size: 0.85rem;
  }
  
  .card {
    border-radius: 15px;
  }
  
  .card-header {
    padding: 24px 24px 20px;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .card-content {
    padding: 24px;
  }
  
  .quick-stat {
    padding: 24px 16px;
  }
  
  .dashboard-stats .stat-value {
    font-size: 2.5rem;
  }
  
  .dashboard-stats .stat-label {
    font-size: 0.9rem;
  }
  
  .dashboard-mockup {
    width: 280px;
    height: 220px;
  }
  
  .mockup-content {
    padding: 15px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.3rem;
  }
  
  .testimonial-content {
    padding: 20px;
    border-radius: 15px;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .chat-demo {
    border-radius: 15px;
    overflow: hidden;
  }
  
  .chat-window {
    height: 380px;
  }
  
  .chat-input-container {
    padding: 15px;
    gap: 10px;
  }
  
  .chat-input {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .send-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .analysis-panel {
    padding: 20px 15px;
  }
  
  .analysis-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, 0.7);
}

/* Selection Style */
::selection {
  background: rgba(56, 189, 248, 0.3);
  color: #f1f5f9;
}

::-moz-selection {
  background: rgba(56, 189, 248, 0.3);
  color: #f1f5f9;
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(56, 189, 248, 0.5);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  animation: loading 1s linear infinite;
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }
  to { box-shadow: 0 0 40px rgba(56, 189, 248, 0.6); }
}

/* Interactive Elements */
.interactive:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.clickable {
  cursor: pointer;
  user-select: none;
}

/* Success/Error States */
.success {
  color: #10b981;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.error {
  color: #ef4444;
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.warning {
  color: #f59e0b;
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.info {
  color: #3b82f6;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

/* Enhanced Visual Effects */
.neon-glow {
  box-shadow: 
    0 0 20px rgba(56, 189, 248, 0.5),
    0 0 40px rgba(56, 189, 248, 0.3),
    0 0 60px rgba(56, 189, 248, 0.1);
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    box-shadow: 
      0 0 20px rgba(56, 189, 248, 0.5),
      0 0 40px rgba(56, 189, 248, 0.3),
      0 0 60px rgba(56, 189, 248, 0.1);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(56, 189, 248, 0.8),
      0 0 60px rgba(56, 189, 248, 0.6),
      0 0 90px rgba(56, 189, 248, 0.3);
  }
}

/* Smooth Transitions */
* {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, 
              transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* Dark Mode Toggle Support */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --accent-color: #38bdf8;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
  }
}

/* Container Queries Support */
@container (max-width: 600px) {
  .feature-card {
    padding: 20px 15px;
  }
  
  .card-header h3 {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .particles-container,
  .floating-elements,
  .btn,
  .hamburger {
    display: none !important;
  }
  
  .hero,
  .features,
  .dashboard {
    page-break-inside: avoid;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .glass-effect {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid white !important;
  }
  
  .btn {
    border: 2px solid currentColor !important;
  }
  
  .nav-link::after {
    height: 3px !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particles-container,
  .floating-elements {
    display: none !important;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    padding: 18px 30px;
    font-size: 1.1rem;
    min-height: 44px;
  }
  
  .nav-link {
    padding: 12px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .action-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
  }
  
  .hamburger {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card:hover {
    transform: none;
  }
  
  .card:active {
    transform: scale(0.98);
  }
  
  /* Disable hover effects on touch devices */
  .feature-card:hover::before,
  .feature-card:hover .icon-wrapper {
    opacity: 0;
    transform: none;
  }
  
  .feature-card:active {
    transform: scale(0.98);
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .navbar {
    position: -webkit-sticky;
    position: sticky;
  }
  
  .nav-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
  }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
  /* Improve tap targets */
  .social-link,
  .dot,
  .send-btn,
  .action-btn {
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Better text readability */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  
  /* Smoother scrolling on mobile */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Better form elements */
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  /* Safe area for devices with notches */
  .navbar {
    padding-top: max(15px, env(safe-area-inset-top));
    padding-left: max(25px, env(safe-area-inset-left));
    padding-right: max(25px, env(safe-area-inset-right));
  }
  
  .hero,
  .features,
  .dashboard,
  .testimonials,
  .demo-section {
    padding-left: max(25px, env(safe-area-inset-left));
    padding-right: max(25px, env(safe-area-inset-right));
  }
}

/* Focus-visible for better keyboard navigation */
.btn:focus-visible,
.nav-link:focus-visible,
.action-btn:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

/* Better loading states */
.loading-skeleton {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.8) 25%, rgba(56, 189, 248, 0.2) 50%, rgba(30, 41, 59, 0.8) 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 2s infinite;
}

@keyframes loading-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Touch Device Styles */
.touch-device .btn:hover {
  transform: none;
}

.touch-active {
  transform: scale(0.98) !important;
  opacity: 0.9;
}

.touch-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Loading Button State */
.btn-loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: button-loading-spin 1s linear infinite;
}

@keyframes button-loading-spin {
  to { transform: rotate(360deg); }
}

/* Navbar Auto-Hide */
.navbar {
  transition: transform 0.3s ease;
}

/* Viewport Height Fix */
.hero {
  min-height: calc(100vh - 70px);
  min-height: calc(var(--vh, 1vh) * 100 - 70px);
}

.nav-menu.active {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/* Slow Connection Optimizations */
.slow-connection .particles-container {
  display: none;
}

.slow-connection .floating-elements {
  display: none;
}

.slow-connection .feature-card::before {
  display: none;
}

/* Focus Management */
.nav-menu a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
  background: rgba(56, 189, 248, 0.1);
}

/* Better text selection on touch devices */
.touch-device {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.touch-device p,
.touch-device span,
.touch-device h1,
.touch-device h2,
.touch-device h3,
.touch-device h4,
.touch-device li {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent layout shift and improve stability */
* {
  box-sizing: border-box;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* Prevent FOUC (Flash of Unstyled Content) */
html {
  visibility: visible;
  opacity: 1;
}

body {
  opacity: 1;
  visibility: visible;
}

/* Smooth chart transitions */
canvas {
  transition: opacity 0.3s ease;
}

.card canvas {
  background: transparent !important;
}

/* Prevent white flash during animations */
.testimonial {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  will-change: transform;
}

.testimonial.active {
  transform: translateX(0);
  opacity: 1;
}

/* Dashboard specific stability improvements */
.dashboard-grid {
  contain: layout style;
}

.card {
  contain: layout style paint;
  will-change: transform;
}

.card:hover {
  will-change: transform;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: no-preference) {
  .btn,
  .card,
  .feature-card,
  .nav-link {
    will-change: transform;
  }
}

/* Reduce motion for better performance on low-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.3s !important;
  }
  
  .particles-container {
    opacity: 0.3;
  }
}

/* Critical path optimization */
.hero,
.navbar,
.features {
  contain: layout style paint;
}

/* Contact Page Styles */
.contact-header {
  position: relative;
  padding: 140px 50px 80px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 35%,
    rgba(56, 189, 248, 0.15) 70%,
    rgba(139, 92, 246, 0.1) 100%);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.contact-header .header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #38bdf8 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e2e8f0;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 80px 50px;
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.5) 0%,
    rgba(30, 41, 59, 0.3) 50%,
    rgba(15, 23, 42, 0.8) 100%);
  min-height: 600px;
  display: block;
  visibility: visible;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
  visibility: visible;
}

.team-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 2px 16px rgba(56, 189, 248, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(139, 92, 246, 0.5), 
    rgba(56, 189, 248, 0.5), 
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.3),
    0 16px 32px rgba(139, 92, 246, 0.2),
    0 0 0 1px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.team-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.2) 0%, 
    rgba(56, 189, 248, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s ease;
}

.team-card:hover .avatar-placeholder {
  transform: scale(1.1);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #8b5cf6, #38bdf8, #10b981);
  background-clip: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-card:hover .avatar-ring {
  opacity: 0.3;
}

.team-info h3 {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.team-role {
  color: #8b5cf6;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  color: #f8fafc;
}

.contact-icon {
  font-size: 1.1rem;
}

/* General Contact Section */
.general-contact {
  padding: 80px 50px;
  background: rgba(15, 23, 42, 0.8);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.15);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.info-card h3 {
  color: #f8fafc;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-card p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.info-card .social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card .social-link {
  color: #38bdf8;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-card .social-link:hover {
  background: rgba(56, 189, 248, 0.1);
  color: #f8fafc;
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
  .contact-header {
    padding: 100px 25px 60px;
  }
  
  .contact-header h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  
  .team-section,
  .general-contact {
    padding: 60px 25px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .team-card {
    padding: 32px 24px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .info-card {
    padding: 24px 20px;
  }
  
  .team-contact {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-btn {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 80px 15px 50px;
  }
  
  .team-section,
  .general-contact {
    padding: 50px 15px;
  }
  
  .team-card {
    padding: 24px 20px;
  }
  
  .avatar-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
}
 
