/* ============================================
   MOBILE OPTIMIZED STYLES - WORLD-CLASS DESIGN
   ============================================ */

/* Apple Design Awards Level毛Glass Effects */
@media (max-width: 768px) {
  /* Remove Glassmorphism Overlay for Mobile - Keep content readable */
  .feature-card,
  .tech-card,
  .location-card,
  .economy-feature,
  .module-satellite,
  .module-center,
  .footer-cta-column,
  .nav-menu,
  .language-menu {
    background: transparent;  /* Remove all overlay effects */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: none;    /* Remove backdrop-filter to eliminate glass effect */
    -webkit-backdrop-filter: none;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.1),  /* Reduced opacity significantly */
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 20px;
  }

  .header {
    background: transparent;  /* Remove overlay effect */
    backdrop-filter: none;    /* Remove backdrop-filter */
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Enhanced Glassmorphism for active states */
  .feature-card:hover,
  .tech-card:hover,
  .location-card:hover,
  .economy-feature:hover {
    background:
      linear-gradient(145deg, 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(255, 255, 255, 0.1) 100%),
      radial-gradient(circle at top left, 
        rgba(var(--color-primary-rgb), 0.18) 0%, 
        transparent 50%),
      rgba(17, 24, 39, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow:
      0 20px 40px rgba(56, 189, 248, 0.25),
      0 8px 16px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  /* Mobile-optimized button glass effect */
  .btn-primary {
    background: 
      linear-gradient(135deg, 
        rgba(56, 189, 248, 0.9) 0%, 
        rgba(59, 130, 246, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000;
    border: 1px solid rgba(56, 189, 248, 0.3);
  }

  /* Enhanced mobile navigation glass */
  .mobile-menu-toggle span {
    background: linear-gradient(90deg, #38bdf8, #3b82f6);
  }

  /* Glass effect for language selector */
  .language-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Stripe Level极Minimal Whitespace */
@media (max-width: 768px) {
  /* Refined spacing system for mobile */
  .container {
    padding: 0 20px;
  }

  /* Section spacing optimization */
  .hero-section,
  .features-section,
  .orbital-section,
  .technology-section,
  .economy-section,
  .cta-section,
  .locations-section {
    padding: 60px 0 50px;
  }

  /* Component spacing refinement */
  .feature-card {
    padding: 28px 20px;
    margin-bottom: 20px; /* Consistent spacing */
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .feature-card:last-child {
    margin-bottom: 0;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.2);
  }

  .tech-card {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .tech-card:last-child {
    margin-bottom: 0;
  }

  .tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.2);
  }

  /* Content spacing */
  .hero-tagline-wrapper {
    padding-left: 16px;
    margin-top: 24px;
  }

  .section-title {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  /* Button spacing */
  .btn-primary {
    margin-top: 24px;
    padding: 14px 32px;
  }

  /* Footer spacing */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content-wrapper {
    padding-bottom: 40px;
  }

  .footer-bottom-bar {
    padding: 24px 0;
    margin-top: 40px;
  }

  /* Navigation spacing */
  .nav-wrapper {
    padding: 16px 0;
  }

  .nav-menu a {
    padding: 16px 20px;
    margin: 0 8px;
  }

  /* Mobile menu spacing */
  .nav-menu ul {
    padding: 24px 0;
    gap: 8px;
  }

  .nav-menu a {
    border-radius: 16px;
  }
}

/* Linear Level精准Spacing */
@media (max-width: 768px) {
  /* Precise 8px grid system for mobile */
  .features-grid {
    gap: 24px;
    padding: 0 16px;
  }

  .technology-grid {
    gap: 24px;
    padding: 0 16px;
  }

  /* Precise component spacing */
  .feature-card {
    padding: 32px 24px;
  }

  .feature-icon {
    margin-bottom: 20px;
  }

  .feature-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .feature-card p {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Tech card precise spacing */
  .tech-card {
    padding: 28px 24px;
  }

  .tech-icon {
    margin-bottom: 18px;
  }

  .tech-card h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .tech-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
  }
  
  /* On mobile screens, arrange tech icon and title horizontally */
  @media (max-width: 768px) {
    .tech-card {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: flex-start;
      gap: 16px;
      padding: 24px;
    }

    .tech-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
      margin: 0;
      grid-column: 1;
      grid-row: 1;
      flex-shrink: 0;
    }

    .tech-card h3 {
      margin: 0;
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      font-size: 18px;
      font-weight: 600;
    }

    .tech-card p {
      margin: 0;
      grid-column: 1 / -1;
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.6;
    }
  }

  /* Economy feature spacing */
  .economy-feature {
    padding: 28px 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

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

  .economy-feature h3 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.35;
  }

  .economy-feature p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
  }

  /* Location card spacing */
  .location-card {
    padding: 28px 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

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

  .location-icon {
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .location-card h3 {
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 700;
  }

  .location-address {
    font-size: 13px;
    line-height: 1.6;
  }

  /* CTA section spacing */
  .cta-content {
    padding: 0 16px;
    gap: 32px;
  }

  .cta-text h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-right p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Hero section precise spacing */
  .hero-eyebrow-glass {
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 8px;
  }

  .hero-headline-gradient {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-tagline {
    font-size: 15px;
    line-height: 1.65;
  }

  /* Footer precise spacing */
  .footer-brand-section {
    gap: 20px;
  }

  .footer-column {
    gap: 18px;
  }

  .footer-links-list {
    gap: 14px;
  }
}

/* Notion Level舒适Layout */
@media (max-width: 768px) {
  /* Comfortable touch-friendly layout */
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  /* Responsive grid layouts */
  .features-grid,
  .technology-grid,
  .economy-content,
  .locations-grid {
    display: flex;
    flex-direction: column;
  }

  /* Comfortable card layouts */
  .feature-card,
  .tech-card,
  .economy-feature,
  .location-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Enhanced touch targets */
  .nav-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Comfortable typography sizing */
  .hero-headline-gradient {
    font-size: clamp(28px, 6vw, 34px);
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 28px);
  }

  .feature-card h3 {
    font-size: clamp(19px, 5vw, 21px);
  }

  .tech-card h3 {
    font-size: clamp(18px, 5vw, 20px);
  }

  .economy-feature h3 {
    font-size: clamp(20px, 5.5vw, 22px);
  }

  /* Comfortable footer layout */
  .footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    align-items: flex-start;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal-links .separator {
    display: none;
  }

  /* Comfortable orbital layout (replacing the complex desktop version) */
  .orbital-section {
    padding: 50px 0;
  }

  .orbital-layout {
    display: none;
  }

  /* Mobile-friendly alternative to orbital */
  .orbital-modules {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0 16px;
  }

  .orbital-module {
    background:
      linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%),
      rgba(17, 24, 39, 0.8);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .orbital-module .module-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .orbital-module h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .orbital-module p {
    font-size: 0.9rem;
  }
}

/* Vercel Level现代美学 */
@media (max-width: 768px) {
  /* Modern mobile aesthetic enhancements - keeping original body background from base.css */
  /* Modern header */
  .header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Modern subtle animations */
  .feature-card,
  .tech-card,
  .economy-feature {
    transition: 
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feature-card:hover,
  .tech-card:hover,
  .economy-feature:hover {
    transform: translateY(-8px);
    box-shadow:
      0 20px 35px rgba(56, 189, 248, 0.2),
      0 10px 20px rgba(0, 0, 0, 0.25);
  }

  /* Modern button design */
  .btn-primary {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
  }

  .btn-primary:hover {
    box-shadow: 
      0 8px 24px rgba(56, 189, 248, 0.4),
      0 4px 12px rgba(56, 189, 248, 0.2);
    transform: translateY(-2px);
  }

  /* Modern typography */
  h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  /* Modern link styling */
  a {
    transition: color 0.2s ease;
  }

  /* Modern scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Modern form elements */
  input, textarea, select {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 16px;
  }

  /* Modern mobile menu */
  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Modern language selector */
  .language-btn {
    border-radius: 12px;
    font-weight: 500;
  }
}

/* Optimized Mobile Navigation */
@media (max-width: 768px) {
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }

  .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    min-width: auto;
    position: relative;
    z-index: 1001;
  }

  /* 完全隐藏汉堡菜单条纹 - 使用最高优先级 */
  .mobile-menu-toggle span:nth-child(1),
  .mobile-menu-toggle span:nth-child(2),
  .mobile-menu-toggle span:nth-child(3) {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 样式化 Menu 文字 - 确保完全覆盖 */
  .mobile-menu-toggle .mobile-menu-text {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    background: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
  }

  /* 按钮激活状态反馈 */
  .mobile-menu-toggle.active {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
  }

  /* 菜单项高对比度设计 */
  .nav-menu a {
    color: #ffffff !important;
    background: rgba(56, 189, 248, 0.12) !important;
    margin: 8px 16px !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 50px !important;
  }

  .nav-menu a:hover,
  .nav-menu a:active {
    color: #38BDF8 !important;
    background: rgba(56, 189, 248, 0.25) !important;
    border-color: rgba(56, 189, 248, 0.6) !important;
    transform: translateX(6px) !important;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15) !important;
  }

  .nav-menu a.active {
    background: rgba(56, 189, 248, 0.3) !important;
    border-color: rgba(56, 189, 248, 0.7) !important;
    color: #38BDF8 !important;
  }
  
  /* Ensure loading overlay is properly hidden to prevent black screen issue */
  .loading-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -1 !important; /* Move it behind everything */
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .nav-menu a {
    display: block;
    padding: 16px 24px;
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    width: 80%;
    max-width: 300px;
  }
}

/* Enhanced Mobile Typography - World-Class Standards */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.01em;
  }

  h1, h2, h3, h4, h5 {
    letter-spacing: -0.02em;
  }

  .hero-headline-gradient {
    font-size: clamp(32px, 8vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .feature-card h3 {
    font-size: clamp(20px, 5.5vw, 22px);
    line-height: 1.35;
    font-weight: 700;
  }

  .tech-card h3 {
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.35;
    font-weight: 700;
  }

  .economy-feature h3 {
    font-size: clamp(22px, 6vw, 24px);
    line-height: 1.3;
    font-weight: 700;
  }

  .hero-eyebrow-glass {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
  }

  .hero-tagline {
    font-size: clamp(15px, 4vw, 16px);
    line-height: 1.7;
  }

  .feature-card p,
  .tech-card p,
  .economy-feature p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.8);
  }

  .location-address {
    font-size: 13px;
    line-height: 1.7;
  }

  .cta-right p {
    font-size: 15px;
    line-height: 1.7;
  }

  .footer-brand-tagline {
    font-size: 14px;
    line-height: 1.7;
  }

  .planet-details p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Enhanced readability */
  p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Better contrast for smaller text */
  .footer-links-list a,
  .footer-copyright p,
  .footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }
}

/* Mobile Touch Target Optimization */
@media (max-width: 768px) {
  /* Accessible touch targets (44px minimum per Apple/Google standards) */
  .btn {
    min-height: 48px;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-menu a {
    min-height: 50px;
    padding: 16px 20px;
    font-size: 15px;
  }

  .nav-menu a span {
    display: inline-block;
    min-height: auto;
  }

  .mobile-menu-toggle {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }

  .language-btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .social-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .feature-icon,
  .tech-icon,
  .location-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  /* Form elements */
  input,
  textarea,
  select,
  button {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  /* Better focus indicators for accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animations for better performance on mobile */
  .feature-card,
  .tech-card,
  .economy-feature {
    will-change: transform;
  }

  /* Optimize for mobile rendering */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Reduce complex animations on mobile */
  .module-satellite:hover::before,
  .module-satellite:hover::after {
    display: none; /* Hide complex tooltips on mobile */
  }
  
  /* Ensure ::after overlay is properly hidden on mobile to avoid black screen */
  .hero-background::after {
    display: none !important;
  }
  
  /* Make sure the hero text is visible */
  .hero-text {
    opacity: 1 !important;
  }
  
  .hero-headline-gradient {
    opacity: 1 !important;
  }

  /* Simplify complex elements on mobile */
  .connection-lines {
    display: none;
  }

  .orbit-rings {
    display: none;
  }

  /* Better scroll performance */
  body {
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile-Specific Improvements */
@media (max-width: 768px) {
  /* Better mobile-only content structure */
  .hero-section {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  /* Mobile-optimized CTA */
  .cta-content {
    text-align: center;
  }

  .cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Mobile-optimized footer */
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-section {
    text-align: center;
    align-items: center;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-links-section {
    gap: 35px;
  }

  /* Mobile-optimized location cards */
  .locations-grid {
    gap: 28px;
  }

  /* Mobile-optimized technology grid */
  .technology-grid {
    gap: 24px;
  }

  /* Mobile-optimized economy content */
  .economy-content {
    gap: 28px;
  }

  /* Mobile-optimized section descriptions */
  .section-description {
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* iPhone Safe Areas */
@supports (bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    body {
      padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
  }
}

/* Dark Mode Adjustments for Mobile */
@media (max-width: 768px) {
  @media (prefers-color-scheme: dark) {
    .feature-card,
    .tech-card,
    .location-card,
    .economy-feature {
      background: 
        linear-gradient(145deg, 
          rgba(255, 255, 255, 0.08) 0%, 
          rgba(255, 255, 255, 0.02) 100%),
        rgba(17, 24, 39, 0.9);
    }
  }
}

/* Reduced Motion Support */
@media (max-width: 768px) {
  @media (prefers-reduced-motion: reduce) {
    .feature-card,
    .tech-card,
    .economy-feature {
      transition: none;
    }

    .feature-card:hover,
    .tech-card:hover,
    .economy-feature:hover {
      transform: none;
    }

    .hero-section,
    .features-section,
    .orbital-section,
    .technology-section,
    .economy-section,
    .cta-section,
    .locations-section {
      animation: none;
    }
  }
}


/* Custom Mobile Optimizations - Redesigned for World-Class Aesthetics */
@media (max-width: 768px) {
  /* Hide desktop orbital layout */
  .orbital-layout {
    display: none;
  }

  /* Redesigned Mobile Module List (Homepage) */
  .mobile-module-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Linear: Precise spacing */
    padding: 0 8px; /* Stripe: Minimal whitespace */
  }

  .mobile-module-item {
    display: flex;
    align-items: center;
    padding: 20px; /* Linear: Precise spacing */
    border-radius: 18px; /* Vercel: Modern aesthetics */
    
    /* Apple: Advanced Glassmorphism */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Vercel: Modern aesthetics */
  }

  .mobile-module-item:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
  }

  .mobile-module-icon {
    font-size: 28px;
    margin-right: 20px; /* Linear: Precise spacing */
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }

  .mobile-module-text h4 {
    font-size: 17px; /* Notion: Comfortable layout */
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
  }

  .mobile-module-text p {
    font-size: 14px; /* Notion: Comfortable layout */
    color: var(--color-text-tertiary);
    margin: 0;
    line-height: 1.5;
  }

  /* Redesigned Services Cards (Services Page) */
  .services-orbital-layout {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Linear: Precise spacing */
    height: auto;
    padding: 0 8px; /* Stripe: Minimal whitespace */
  }

  .service-planet {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 24px; /* Vercel: Modern aesthetics */
    padding: 0; /* Padding will be handled by inner containers */
    
    /* Apple: Advanced Glassmorphism */
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    transform: none !important; /* Override desktop transforms */
    overflow: hidden; /* Ensures inner elements respect border-radius */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-planet:hover {
      transform: none !important; /* Disable hover transform on mobile */
  }

  .planet-core {
    text-align: left;
    padding: 20px 24px 16px; /* Linear: Precise spacing */
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 16px;
  }

  .planet-icon {
    font-size: 2.5rem; /* Notion: Comfortable layout */
    margin: 0;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    /* Vercel/Apple: Subtle colored glass */
    background: rgba(255, 255, 255, 0.1);
    grid-column: 1;
    grid-row: 1 / 3;
  }

  /* Apply specific icon colors */
  .planet-auto .planet-icon { background: rgba(56, 189, 248, 0.15); }
  .planet-co .planet-icon { background: rgba(168, 85, 247, 0.15); }
  .planet-video .planet-icon { background: rgba(236, 72, 153, 0.15); }

  .planet-core h3 {
    font-size: 22px; /* Notion: Comfortable layout */
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: flex-start;
  }

  .planet-core h3 br {
    display: none; /* Hide the <br> tag to make text appear on one line */
  }

  .planet-badge {
    grid-column: 2;
    grid-row: 2;
    justify-self: flex-start;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
  }

  .planet-details {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 0;
    text-align: left;
    padding: 16px 24px 24px; /* Linear: Precise spacing */
    background: rgba(0, 0, 0, 0.2); /* Vercel: Modern aesthetics - subtle layering */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .planet-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .planet-details h5 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .planet-details p,
  .planet-details ul li {
    font-size: 14px; /* Notion: Comfortable layout */
    color: var(--color-text-tertiary);
    line-height: 1.6;
  }

  .planet-details ul {
    margin-top: 8px;
  }

  /* Hide mobile menu button completely */
  .mobile-menu-toggle {
    display: none !important;
  }
}