/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Professional Theme System - Isolated Hero + Solid Content Background */
:root {
  /* Light Mode (Default) - Crisp, Clean & Professional */
  --hero-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 15%, #cbd5e1 30%, #94a3b8 45%, #f1f5f9 60%, #e2e8f0 75%, #cbd5e1 90%, #f8fafc 100%);
  --bg-solid: #f8fafc;
  --surface-color: #ffffff;
  --text-primary: #1a1a32;
  --text-secondary: #4a5568;
  --border-color: #e2e8f0;
  --shadow: rgba(26, 26, 50, 0.08);
  --shadow-hover: rgba(26, 26, 50, 0.12);
  
  /* Brand colors */
  --primary-color: #1a1a32;
  --primary-dark: #0f0f1a;
  --secondary-color: #ff9900;
  --accent-color: #e67e22;
  
  /* Button styling */
  --btn-primary-bg: #1a1a32;
  --btn-primary-text: #ffffff;
  --btn-primary-hover: #ff9900;
}

[data-theme="dark"] {
  /* Dark Mode - High-Tech & Sophisticated */
  --hero-gradient: linear-gradient(135deg, #020617 0%, #0f172a 20%, #1e293b 40%, #334155 60%, #1e293b 80%, #0f172a 100%);
  --bg-solid: #0f172a;
  --surface-color: #1e293b;
  --text-primary: #f0f0f0;
  --text-secondary: #94a3b8;
  --border-color: #334155;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.4);
  
  /* Adjust colors for dark mode */
  --primary-color: #4a90e2;
  --primary-dark: #2c5aa0;
  --secondary-color: #ff9900;
  --accent-color: #e67e22;
  
  /* Dark mode buttons */
  --btn-primary-bg: #ff9900;
  --btn-primary-text: #1a1a32;
  --btn-primary-hover: #ffb84d;
}

/* Auto theme detection */
@media (prefers-color-scheme: dark) {
  [data-theme="auto"] {
    --hero-gradient: linear-gradient(135deg, #020617 0%, #0f172a 20%, #1e293b 40%, #334155 60%, #1e293b 80%, #0f172a 100%);
    --bg-solid: #0f172a;
    --surface-color: #1e293b;
    --text-primary: #f0f0f0;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
    --primary-color: #4a90e2;
    --primary-dark: #2c5aa0;
    --secondary-color: #ff9900;
    --accent-color: #e67e22;
    --btn-primary-bg: #ff9900;
    --btn-primary-text: #1a1a32;
    --btn-primary-hover: #ffb84d;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-solid); /* Solid background for readability */
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0;
  padding: 0;
}

/* Mobile Layout Fixes - Prevent Horizontal Overflow */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* {
  max-width: 100%;
}

/* Ensure all containers respect viewport width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Fix potential table/wide content overflow */
table {
  width: 100%;
  table-layout: fixed;
}

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

/* Fix grid containers on mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  /* Ensure all grid containers stack properly */
  .features-grid,
  .development-grid,
  .product-details-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  /* Fix button containers */
  .actions-grid,
  .actions-buttons,
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .actions-grid .btn,
  .actions-buttons .btn,
  .hero-buttons .btn {
    width: 100%;
    margin: 0;
  }
  
  /* Fix navbar on mobile */
  .navbar .container {
    padding: 0 0.75rem;
    overflow-x: hidden;
  }
  
  /* Fix cards on mobile */
  .feature-card,
  .development-card,
  .detail-card,
  .coming-soon-card,
  .actions-card,
  .assignment-card,
  .info-card {
    margin: 0;
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Fix text that might be too wide */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Fix long URLs or text */
  p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  /* Reduce font sizes on very small screens */
  .hero-title,
  .platform-title,
  .platform-hub-title {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }
  
  .hero-subtitle,
  .platform-subtitle,
  .platform-hub-subtitle {
    font-size: 1rem !important;
  }
  
  /* Ensure buttons fit */
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Navigation */
.navbar {
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  grid-template-areas: "brand auth toggle menu";
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  grid-area: brand;
  margin-left: 0;
}

.auth-buttons {
  grid-area: auth;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Authentication Buttons Styling */
.auth-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.auth-buttons .signin-btn {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
}

.auth-buttons .signin-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.auth-buttons .signup-btn {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-bg);
}

.auth-buttons .signup-btn:hover {
  background: var(--btn-primary-hover);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-hover);
}

.auth-buttons .logout-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.auth-buttons .logout-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.theme-toggle {
  grid-area: toggle;
}

.mobile-menu-toggle {
  grid-area: menu;
}

/* Mobile Menu Toggle - Always visible and functional */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mobile-menu-toggle:hover {
  background: var(--border-color);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-color);
}

/* Animated hamburger when sidebar is active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Sidebar - Works on all screen sizes */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--surface-color);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-sidebar.active {
  right: 0;
}

/* Desktop-specific sidebar adjustments */
@media (min-width: 769px) {
  .mobile-sidebar {
    width: 400px;
    right: -400px;
  }
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-sidebar-header h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-sidebar:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.mobile-sidebar-nav {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.mobile-nav-link:hover {
  background: var(--border-color);
  color: var(--text-primary);
  border-left-color: var(--primary-color);
  transform: translateX(4px);
}

.platform-link-mobile {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white !important;
  margin: 1rem 1.5rem;
  border-radius: 8px;
  border-left: none !important;
  transform: none !important;
  font-weight: 600;
  letter-spacing: 0.25px;
  box-shadow: 0 3px 12px rgba(44, 90, 160, 0.2);
}

.platform-link-mobile:hover {
  background: linear-gradient(135deg, var(--primary-dark), #ff9900);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
  transform: translateY(-2px) !important;
}

.logout-link {
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

/* Sidebar Overlay - Works on all screen sizes */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand-link {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  height: 60px;
  width: auto;
  transition: filter 0.3s ease;
  /* Light theme - default logo */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Dark theme navbar logo - invert to white */
[data-theme="dark"] .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

@media (prefers-color-scheme: dark) {
  [data-theme="auto"] .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
  }
}

.brand-link:hover {
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.platform-link {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.25px;
  box-shadow: 0 3px 12px rgba(44, 90, 160, 0.2);
  position: relative;
  overflow: hidden;
}

.platform-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.platform-link:hover::before {
  left: 100%;
}

.platform-link:hover {
  background: linear-gradient(135deg, var(--primary-dark), #ff9900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

/* REFINED BUTTON SYSTEM - Clear Hierarchy */

/* Base button styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Small button variant for team section */
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
  font-weight: 500;
}

/* Primary Button - Main CTA with strong presence */
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Secondary Button - Elegant Ghost Style for Clear Hierarchy */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  font-weight: 500;
  letter-spacing: 0.25px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

.btn-secondary:hover {
  color: var(--bg-solid);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--text-primary);
}

/* Small secondary buttons for team section */
.btn-secondary.btn-sm:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* HERO SECTION - Isolated Dynamic Gradient Background */
.hero {
  /* Dynamic gradient background - ONLY in hero section */
  background: var(--hero-gradient);
  background-size: 400% 400%;
  animation: aurora-waves 20s ease-in-out infinite;
  
  /* Layout and positioning */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  
  /* Text color inheritance from theme */
  color: var(--text-primary);
  transition: all 0.5s ease;
}

/* Aurora Waves Animation - Elegant and Organic */
@keyframes aurora-waves {
  0% { 
    background-position: 0% 50%;
    transform: scale(1) rotate(0deg);
  }
  20% { 
    background-position: 80% 75%;
    transform: scale(1.03) rotate(0.3deg);
  }
  40% { 
    background-position: 100% 20%;
    transform: scale(1.01) rotate(-0.2deg);
  }
  60% { 
    background-position: 20% 100%;
    transform: scale(1.04) rotate(0.4deg);
  }
  80% { 
    background-position: 0% 25%;
    transform: scale(1.02) rotate(-0.1deg);
  }
  100% { 
    background-position: 0% 50%;
    transform: scale(1) rotate(0deg);
  }
}

/* Subtle orange accent overlay - elegant and sophisticated */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 1200px 600px at 30% 80%, rgba(255, 153, 0, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 900px 450px at 70% 20%, rgba(255, 153, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 700px 350px at 50% 95%, rgba(255, 153, 0, 0.04) 0%, transparent 75%),
    radial-gradient(ellipse 500px 250px at 15% 30%, rgba(255, 153, 0, 0.03) 0%, transparent 60%);
  animation: accent-drift 25s ease infinite;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none; /* Ensure it doesn't interfere with interactions */
}

/* Enhanced accent visibility in dark mode */
[data-theme="dark"] .hero::before {
  background: 
    radial-gradient(ellipse 1000px 500px at 25% 70%, rgba(255, 153, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 800px 400px at 75% 25%, rgba(255, 153, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 50% 90%, rgba(255, 153, 0, 0.04) 0%, transparent 70%);
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  [data-theme="auto"] .hero::before {
    background: 
      radial-gradient(ellipse 1000px 500px at 25% 70%, rgba(255, 153, 0, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 800px 400px at 75% 25%, rgba(255, 153, 0, 0.06) 0%, transparent 50%),
      radial-gradient(ellipse 600px 300px at 50% 90%, rgba(255, 153, 0, 0.04) 0%, transparent 70%);
    opacity: 1;
  }
}

/* Gentle, sophisticated accent animation */
@keyframes accent-drift {
  0%, 100% { 
    background-position: 30% 80%, 70% 20%, 50% 95%, 15% 30%;
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  25% { 
    background-position: 70% 60%, 20% 80%, 80% 15%, 40% 70%;
    transform: scale(1.08) rotate(0.8deg);
    opacity: 1;
  }
  50% { 
    background-position: 90% 30%, 10% 90%, 60% 10%, 80% 50%;
    transform: scale(1.05) rotate(-0.5deg);
    opacity: 0.95;
  }
  75% { 
    background-position: 15% 70%, 85% 40%, 30% 85%, 60% 20%;
    transform: scale(1.1) rotate(1deg);
    opacity: 1;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem; /* More generous spacing for premium feel */
  padding: 0 2rem; /* Add horizontal padding for mobile */
}

.hero-logo {
  max-width: 400px; /* Slightly larger for more presence */
  width: 100%;
  height: auto;
  margin-bottom: 0;
  /* Enhanced theme-aware logo styling with depth */
  filter: drop-shadow(0 6px 20px rgba(255, 153, 0, 0.15)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  animation: fadeInScale 1s ease-out, logo-float 6s ease-in-out infinite 2s;
  transition: filter 0.4s ease;
  transform-origin: center;
}

/* Dark theme logo - enhanced with multiple shadows for depth */
[data-theme="dark"] .hero-logo {
  filter: 
    brightness(0) 
    invert(1) 
    drop-shadow(0 6px 20px rgba(255, 255, 255, 0.1))
    drop-shadow(0 0 30px rgba(255, 153, 0, 0.25))
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@media (prefers-color-scheme: dark) {
  [data-theme="auto"] .hero-logo {
    filter: 
      brightness(0) 
      invert(1) 
      drop-shadow(0 6px 20px rgba(255, 255, 255, 0.1))
      drop-shadow(0 0 30px rgba(255, 153, 0, 0.25))
      drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  }
}

/* Subtle logo floating animation */
@keyframes logo-float {
  0%, 100% { 
    transform: translateY(0px) scale(1);
  }
  50% { 
    transform: translateY(-8px) scale(1.02);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -2px;
  line-height: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
  transition: all 0.3s ease;
  text-align: center;
  /* Use theme-aware text color with subtle orange accent */
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Subtle orange highlight effect */
.hero-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
  border-radius: 2px;
  opacity: 0.8;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 650px;
  line-height: 1.5;
  animation: fadeInUp 1s ease-out 0.5s both;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--text-secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Highlight words with sun color */
.hero-subtitle .highlight {
  color: #ff9900;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.7s both;
  margin-top: 2rem;
}

.hero-buttons .btn {
  font-size: 1.1rem; /* Slightly larger for importance */
  padding: 1rem 2.5rem; /* More generous padding */
  font-weight: 600; /* Stronger weight */
  letter-spacing: 0.5px; /* Subtle letter spacing */
  border-radius: 12px; /* More rounded for modern feel */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* MAIN CONTENT SECTIONS - Solid Background for Readability */
section {
  padding: 5rem 0;
  background: var(--bg-solid); /* Solid background for perfect readability */
  position: relative;
}

/* Alternating section backgrounds for visual separation */
.about-section,
.team-section,
.approach-section {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
}

/* Add sun-colored underline accent to section headers */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
  border-radius: 2px;
}

/* Highlight class for consistent sun-colored text */
.sun-highlight {
  color: #ff9900;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 153, 0, 0.3);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: var(--surface-color);
}

.mission {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
}

.mission h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Services Grid - Enhanced with orange accents */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

/* Add subtle orange accent on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff9900, transparent);
  transform: translateX(-100%);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px var(--shadow-hover);
  border-color: rgba(255, 153, 0, 0.2);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px var(--shadow));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 153, 0, 0.3));
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
}

/* Add sun highlight to key words in service titles */
.service-card h3 .highlight {
  color: #ff9900;
  text-shadow: 0 0 5px rgba(255, 153, 0, 0.2);
}

/* Approach Section */
.approach-section {
  background: var(--surface-color);
  text-align: center;
}

.approach-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.approach-section p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Demos Section */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.demo-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-3px);
}

.demo-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Team Section - Enhanced */
.team-section {
  background: var(--surface-color);
  position: relative;
}

/* Add subtle pattern overlay */
.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 153, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(44, 90, 160, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.team-member {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900, var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.team-member h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
}

/* Add subtle sun accent to team member names */
.team-member h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover h4::before {
  opacity: 1;
}

.team-member .title {
  font-weight: bold;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Team member button spacing */
.team-member .btn {
  margin-top: 1rem;
}

/* Contact details styling for better visibility */
.contact-details {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  font-weight: 500;
  letter-spacing: 0.25px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0.25rem 0;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

.contact-item:hover {
  color: var(--bg-solid);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--text-primary);
}

/* Copy button that appears on hover */
.contact-item::after {
  content: '📋';
  position: absolute;
  right: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.8rem;
  pointer-events: none;
}

.contact-item:hover::after {
  opacity: 1;
}

.contact-item.copied::after {
  content: '✅';
  opacity: 1;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 6px;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-label {
  font-size: 1rem;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.contact-value {
  font-weight: 500;
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

/* LinkedIn button styling - now consistent with contact items */
.linkedin-btn {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* Contact Section - Simplified */
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-message {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem !important;
  font-size: 1.2rem;
  font-weight: 500;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Footer */
.footer {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
}

/* AUTHENTICATION PAGES STYLING */

/* Container for centering auth forms */
.auth-container {
  min-height: calc(100vh - 140px); /* Account for navbar and footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-solid);
}

/* Auth card with modern styling */
.auth-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.auth-card:hover {
  box-shadow: 0 20px 60px var(--shadow-hover);
  transform: translateY(-2px);
}

/* Auth header styling */
.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

/* Form styling */
.auth-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.25px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-solid);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  background: var(--surface-color);
}

.form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

/* Form actions */
.form-actions {
  margin-top: 2rem;
}

.auth-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Alert styling */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}

.error-list {
  margin: 0;
  padding-left: 1.25rem;
}

.error-list li {
  margin-bottom: 0.25rem;
}

/* Auth links styling */
.auth-links {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.auth-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.auth-link.primary {
  color: var(--secondary-color);
  font-weight: 600;
}

.auth-link.primary:hover {
  color: var(--accent-color);
}

/* PLATFORM PAGE STYLING */

.platform-container {
  background: var(--bg-solid);
  min-height: 100vh;
}

/* Platform Hero Section */
.platform-hero {
  background: var(--hero-gradient);
  padding: 6rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.platform-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.platform-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.platform-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.platform-features {
  padding: 6rem 0;
  background: var(--surface-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary-color);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

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

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.25px;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Platform Access Section */
.platform-access {
  padding: 6rem 0;
  background: var(--hero-gradient);
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.access-content {
  max-width: 700px;
  margin: 0 auto;
}

.access-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.access-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.access-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
}

/* Technical Specifications */
.platform-specs {
  padding: 6rem 0;
  background: var(--surface-color);
}

.specs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.spec-item {
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--primary-color);
}

.spec-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.spec-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .platform-title {
    font-size: 2.5rem;
  }
  
  .platform-subtitle {
    font-size: 1.125rem;
  }
  
  .access-title {
    font-size: 2rem;
  }
  
  .specs-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .access-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .platform-hero {
    padding: 4rem 0 3rem;
  }
  
  .platform-features,
  .platform-access,
  .platform-specs {
    padding: 4rem 0;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .spec-item {
    padding: 1.5rem;
  }
}

/* PRODUCTS PAGE STYLING */

.products-container {
  background: var(--bg-solid);
  min-height: calc(100vh - 140px);
  padding: 2rem 0;
}

/* Products Header */
.products-header {
  text-align: center;
  padding: 4rem 0 2rem;
  background: var(--hero-gradient);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.products-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.products-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Actions */
.products-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary-color);
}

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

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.25px;
}

.product-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.product-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* COMING SOON PAGE STYLING */

.coming-soon-container {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--hero-gradient);
  background-size: 400% 400%;
  animation: aurora-waves 20s ease-in-out infinite;
}

.coming-soon-content {
  max-width: 900px;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px var(--shadow-hover);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.coming-soon-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 30% 70%, rgba(255, 153, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 70% 30%, rgba(255, 153, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: white;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 153, 0, 0);
  }
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  position: relative;
}

.coming-soon-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  border-radius: 2px;
}

.coming-soon-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Previews */
.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-preview {
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--primary-color);
}

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

.preview-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px var(--shadow));
}

.feature-preview h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-preview p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* Coming Soon Actions */
.coming-soon-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.admin-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.admin-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border: none;
  color: white;
}

.admin-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-content {
    padding: 3rem 2rem;
  }
  
  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .products-header {
    padding: 3rem 0 1.5rem;
  }
  
  .coming-soon-container {
    padding: 1rem;
  }
  
  .coming-soon-content {
    padding: 2rem 1.5rem;
  }
  
  .coming-soon-icon {
    width: 80px;
    height: 80px;
  }
  
  .coming-soon-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .feature-preview {
    padding: 1.5rem 1rem;
  }
}

/* MY ORDERS PAGE STYLING */

.orders-container {
  background: var(--bg-solid);
  min-height: calc(100vh - 140px);
}

/* Orders Header */
.orders-header {
  background: var(--hero-gradient);
  background-size: 400% 400%;
  animation: aurora-waves  20s ease-in-out infinite;
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.orders-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 30% 70%, rgba(255, 153, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 70% 30%, rgba(255, 153, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.orders-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.orders-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Orders Content */
.orders-content {
  padding: 3rem 0;
}

/* Orders Statistics */
.orders-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--primary-color);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Orders Grid */
.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.order-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary-color);
}

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

/* Order Header */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.order-product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.25px;
  flex-grow: 1;
}

.order-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.order-status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status-pending {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status-completed {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.order-status-cancelled {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order Details */
.order-details {
  margin-bottom: 2rem;
}

.order-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  gap: 1rem;
}

.order-detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.detail-value {
  color: var(--text-primary);
  font-size: 0.875rem;
  text-align: right;
  line-height: 1.4;
}

/* Order Actions */
.order-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Empty Orders State */
.empty-orders {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem 1rem;
}

.empty-orders-content {
  max-width: 600px;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px var(--shadow-hover);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.empty-orders-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  animation: gradient-flow 3s ease-in-out infinite;
}

.empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: white;
  animation: pulse-glow 2s ease-in-out infinite;
}

.empty-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.empty-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Orders Navigation */
.orders-navigation {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 3rem 0 2rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .orders-title {
    font-size: 2.5rem;
  }
  
  .orders-grid {
    grid-template-columns: 1fr;
  }
  
  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .order-status {
    align-self: flex-start;
  }
  
  .order-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .detail-label {
    min-width: auto;
  }
  
  .detail-value {
    text-align: left;
  }
  
  .orders-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .orders-header {
    padding: 3rem 0 2rem;
  }
  
  .orders-content {
    padding: 2rem 0;
  }
  
  .order-card {
    padding: 1.5rem;
  }
  
  .empty-orders-content {
    padding: 3rem 2rem;
  }
  
  .empty-icon {
    width: 80px;
    height: 80px;
  }
  
  .empty-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .empty-title {
    font-size: 2rem;
  }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .order-status-active {
  background: rgba(21, 128, 61, 0.15);
  color: #86efac;
  border-color: rgba(21, 128, 61, 0.3);
}

[data-theme="dark"] .order-status-pending {
  background: rgba(180, 83, 9, 0.15);
  color: #fde047;
  border-color: rgba(180, 83, 9, 0.3);
}

[data-theme="dark"] .order-status-completed {
  background: rgba(67, 56, 202, 0.15);
  color: #a5b4fc;
  border-color: rgba(67, 56, 202, 0.3);
}

[data-theme="dark"] .order-status-cancelled {
  background: rgba(185, 28, 28, 0.15);
  color: #fca5a5;
  border-color: rgba(185, 28, 28, 0.3);
}

@media (prefers-color-scheme: dark) {
  [data-theme="auto"] .order-status-active {
    background: rgba(21, 128, 61, 0.15);
    color: #86efac;
    border-color: rgba(21, 128, 61, 0.3);
  }
  
  [data-theme="auto"] .order-status-pending {
    background: rgba(180, 83, 9, 0.15);
    color: #fde047;
    border-color: rgba(180, 83, 9, 0.3);
  }
  
  [data-theme="auto"] .order-status-completed {
    background: rgba(67, 56, 202, 0.15);
    color: #a5b4fc;
    border-color: rgba(67, 56, 202, 0.3);
  }
  
  [data-theme="auto"] .order-status-cancelled {
    background: rgba(185, 28, 28, 0.15);
    color: #fca5a5;
    border-color: rgba(185, 28, 28, 0.3);
  }
}

/* Product Management Styles */
.btn-danger {
  background: #dc2626;
  color: #ffffff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-danger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-danger:hover::before {
  left: 100%;
}

.btn-danger:hover {
  background: #b91c1c;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.product-details {
  margin-bottom: 2rem;
}

.product-detail-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.admin-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.customer-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
}

.form-actions .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

.form-actions .btn:last-child {
  margin-right: 0;
}

/* Responsive form actions */
@media (max-width: 640px) {
  .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-actions .btn {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}

/* Flash messages in main layout */
.flash-message {
  margin: 1rem auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flash-message.alert {
  margin-bottom: 0;
  margin-top: 1rem;
}

/* Product Show Page Styling - Matching Platform Design */
.product-container {
  background: var(--bg-solid);
  min-height: calc(100vh - 140px);
}

.product-hero {
  background: var(--bg-solid);
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border-color);
}

.product-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.product-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.product-category {
  margin-bottom: 1.5rem;
}

.category-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Details Section */
.product-details-section {
  padding: 3rem 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.detail-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.detail-card.full-width {
  grid-column: 1 / -1;
  text-align: left;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow-hover);
  border-color: var(--primary-color);
}

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

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  border-radius: 16px;
  margin: 0 auto 1rem;
  color: white;
  transition: transform 0.3s ease;
}

.detail-card.full-width .detail-icon {
  margin: 0 0 1rem 0;
}

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

.detail-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.25px;
}

.detail-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.detail-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.detail-content p {
  margin-bottom: 0.75rem;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

/* Product Actions Section */
.product-actions-section {
  padding: 2rem 0;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.product-actions-card {
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.actions-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.25px;
}

.actions-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.actions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Assignment Section */
.product-assignment-section {
  padding: 3rem 0;
}

.assignment-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.assignment-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.assignment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  border-radius: 16px;
  color: white;
  flex-shrink: 0;
}

.assignment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.25px;
}

.assignment-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.875rem;
}

.assignment-form-group {
  margin-bottom: 1.5rem;
}

.assignment-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.25px;
}

.assignment-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-solid);
  transition: all 0.3s ease;
  outline: none;
}

.assignment-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

/* Info Section */
.product-info-section {
  padding: 3rem 0;
}

.info-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  color: white;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.25px;
}

.info-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Platform Hub Styling */
.platform-hub-container {
  background: var(--bg-solid);
  min-height: calc(100vh - 140px);
}

.platform-hub-hero {
  background: var(--bg-solid);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.platform-hub-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.development-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 30px;
  margin: 0 auto 2rem;
  color: white;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(74, 144, 226, 0);
  }
}

.platform-hub-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.platform-hub-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.development-status {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: #ff9900;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* Development Info Section */
.development-info-section {
  padding: 4rem 0;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.development-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.development-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff9900);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.development-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary-color);
}

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

.development-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff9900);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

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

.development-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.25px;
}

.development-card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 4rem 0;
  background: var(--surface-color);
}

.coming-soon-card {
  background: var(--bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-align: center;
  width: 100%;
}

.coming-soon-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

/* Development Timeline */
.development-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--border-color);
  background: var(--bg-solid);
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
}

.timeline-marker.completed {
  background: #22c55e;
  border-color: #22c55e;
}

.timeline-marker.in-progress {
  background: #ff9900;
  border-color: #ff9900;
  animation: pulse 2s ease-in-out infinite;
}

.timeline-marker.upcoming {
  background: var(--border-color);
  border-color: var(--border-color);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
  }
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Platform Hub Actions */
.platform-hub-actions {
  padding: 4rem 0;
}

.actions-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.actions-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.25px;
}

.actions-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.actions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .platform-hub-title {
    font-size: 2.5rem;
  }
  
  .platform-hub-subtitle {
    font-size: 1.125rem;
  }
  
  .development-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .development-card,
  .coming-soon-card,
  .actions-card {
    padding: 2rem 1.5rem;
  }
  
  .actions-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .actions-buttons .btn {
    width: 100%;
  }
  
  .timeline-item {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .platform-hub-hero {
    padding: 2rem 0;
  }
  
  .platform-hub-title {
    font-size: 2rem;
  }
  
  .development-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  
  .development-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
  }
}

/* Google OAuth Button Styling */
.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.auth-divider span {
  background: var(--surface-color);
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.oauth-section {
  margin-bottom: 1.5rem;
}

.btn-oauth {
  width: 100%;
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-size: 14px;
  padding: 12px 16px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
}

.btn-oauth:hover {
  background: #f8f9fa;
  color: #3c4043;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.15);
  border-color: #dadce0;
}

.google-logo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Remove the old emoji icon */
.google-oauth::before {
  display: none;
}

[data-theme="dark"] .btn-oauth {
  background: var(--surface-color);
  border-color: #5f6368;
  color: var(--text-primary);
}

[data-theme="dark"] .btn-oauth:hover {
  background: #5f6368;
  color: var(--text-primary);
  border-color: #5f6368;
}
