/* Static Fallback Styles - Visible without JavaScript */
/* This CSS is loaded in noscript block for SEO and accessibility */

.static-fallback {
  min-height: 100vh;
  background-color: #0F1115;
  color: #E6E8EB;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.static-header {
  padding: 20px;
  border-bottom: 1px solid rgba(230, 232, 235, 0.1);
}

.static-header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.static-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2EC4B6;
  margin: 0;
}

.static-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.static-hero {
  padding: 80px 20px 60px;
  text-align: center;
}

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

.static-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E6E8EB;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.static-hero-accent {
  color: #2EC4B6;
}

.static-hero-subtitle {
  font-size: 1.25rem;
  color: rgb(148, 163, 184);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.static-hero-actions {
  margin: 0 0 16px 0;
}

.static-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.static-btn-primary {
  background: #2EC4B6;
  color: white;
}

.static-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 196, 182, 0.3);
}

.static-hero-note {
  font-size: 0.9rem;
  color: rgb(100, 116, 139);
  margin: 0;
}

.static-benefits {
  padding: 80px 20px;
}

.static-benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.static-benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #E6E8EB;
  text-align: center;
  margin: 0 0 48px 0;
}

.static-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.static-benefit-item {
  text-align: center;
}

.static-benefit-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2EC4B6;
  opacity: 0.3;
  margin: 0 0 16px 0;
}

.static-benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #E6E8EB;
  margin: 0 0 12px 0;
}

.static-benefit-description {
  font-size: 0.95rem;
  color: rgb(148, 163, 184);
  margin: 0;
  line-height: 1.6;
}

.static-footer {
  padding: 48px 20px 24px;
  border-top: 1px solid rgba(230, 232, 235, 0.1);
  margin-top: 60px;
}

.static-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: rgb(148, 163, 184);
  text-align: center;
  margin: 0 0 16px 0;
}

.static-footer-separator {
  color: rgb(100, 116, 139);
  margin: 0 4px;
}

.static-footer-link {
  color: rgb(148, 163, 184);
  text-decoration: none;
  transition: color 0.2s ease;
}

.static-footer-link:hover {
  color: #E6E8EB;
  text-decoration: underline;
}

.static-footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgb(100, 116, 139);
  margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .static-hero-title {
    font-size: 2rem;
  }

  .static-hero-subtitle {
    font-size: 1.1rem;
  }

  .static-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .static-hero {
    padding: 60px 20px 40px;
  }

  .static-benefits {
    padding: 60px 20px;
  }
}
