/* Roadmap Page Styles */

body {
  font-family: Arial, Helvetica, sans-serif !important;
}

.roadmap-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header - Using default styles from main.css */
/* Override header to have dark text on light background */
.roadmap-page .premium-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.roadmap-page .logo-container {
  text-decoration: none !important;
}

.roadmap-page .logo-container:hover {
  text-decoration: none !important;
}

.roadmap-page .logo-icon {
  color: #059669;
}

.roadmap-page .logo-text {
  color: #059669;
}

.roadmap-page .logo-text-accent {
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.roadmap-page .nav-item {
  color: #4b5563;
  text-decoration: none !important;
}

.roadmap-page .nav-item:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  text-decoration: none !important;
}

.roadmap-page .signin-btn {
  color: #4b5563;
  text-decoration: none !important;
}

.roadmap-page .signin-btn:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  text-decoration: none !important;
}

.roadmap-page .cta-btn {
  text-decoration: none !important;
}

.roadmap-page .cta-btn:hover {
  text-decoration: none !important;
}

/* Hero Section */
.roadmap-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.roadmap-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.roadmap-hero .hero-badge i {
  font-size: 1rem;
  animation: rotate-icon 2s ease-in-out infinite;
}

@keyframes rotate-icon {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.roadmap-hero .hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .roadmap-hero .hero-title {
    font-size: 2rem;
  }
}

.roadmap-hero .hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .roadmap-hero .hero-subtitle {
    font-size: 1rem;
  }
}

.roadmap-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.roadmap-hero .stat-item {
  text-align: center;
}

.roadmap-hero .stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roadmap-hero .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content */
.roadmap-content {
  flex: 1;
  padding: 3rem 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Filters */
.roadmap-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}

.roadmap-filters .filter-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.roadmap-filters .filter-tab .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.5rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.roadmap-filters .filter-tab.active {
  background: linear-gradient(135deg, #059669, #10b981);
  border-color: #10b981;
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

.roadmap-filters .filter-tab.active i {
  animation: pulse-icon 1.5s ease-in-out infinite;
}

.roadmap-filters .filter-tab.active .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.roadmap-filters .filter-tab:hover:not(.active) {
  border-color: #10b981;
  color: #059669;
  transform: translateY(-2px);
}

/* Timeline */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 1rem;
}

.timeline-quarter .quarter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.timeline-quarter .quarter-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeline-quarter .quarter-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1f2937;
}

.timeline-quarter .quarter-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline-quarter .quarter-status.status-shipped {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
}

.timeline-quarter .quarter-status.status-in-progress {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.timeline-quarter .quarter-status.status-planned {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.timeline-quarter .quarter-status.status-future {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.timeline-quarter .quarter-status {
  animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-quarter .quarter-status i {
  animation: spin-slow 3s linear infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 20px 5px currentColor;
    opacity: 0.9;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.timeline-quarter .quarter-badge {
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
}

.feature-card:hover {
  border-color: #10b981;
  box-shadow: 0 12px 36px rgba(5, 150, 105, 0.15);
  transform: translateY(-4px);
}

.feature-card .feature-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-card .feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-card .feature-icon.status-shipped {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.2));
  color: #059669;
}

.feature-card .feature-icon.status-in-progress {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.2));
  color: #f59e0b;
}

.feature-card .feature-icon.status-planned {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.2));
  color: #3b82f6;
}

.feature-card .feature-icon.status-future {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.2));
  color: #8b5cf6;
}

.feature-card .feature-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card .feature-icon i {
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon i {
  transform: rotate(360deg);
}

.feature-card .feature-title-group {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.feature-card .feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-card .feature-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.feature-card .progress-fill {
  height: 100%;
  border-radius: 9999px;
}

.feature-card .progress-fill.status-shipped {
  background: linear-gradient(90deg, #059669, #10b981);
}

.feature-card .progress-fill.status-in-progress {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.feature-card .feature-description {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-card .feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-card .highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  max-width: 100%;
  word-break: break-word;
}

.feature-card .highlight-badge i {
  color: #10b981;
  font-size: 0.625rem;
}

.feature-card .feature-shipped-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.2));
  border-radius: 0.5rem;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}

.feature-card .feature-progress-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
}

/* View Details Button */
.view-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  flex-shrink: 0;
}

.view-details-btn i {
  transition: transform 0.3s ease;
}

.view-details-btn:hover {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.view-details-btn:hover i {
  transform: translateX(4px);
}

.feature-card:hover .view-details-btn {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.roadmap-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 1.5rem;
  border: 2px solid #10b981;
  margin-left: 1rem;
  margin-right: 1rem;
}

.roadmap-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.roadmap-cta .cta-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 1rem;
  font-size: 2rem;
  flex-shrink: 0;
}

.roadmap-cta .cta-text {
  flex: 1;
  text-align: center;
}

.roadmap-cta .cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.roadmap-cta .cta-text p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.roadmap-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.roadmap-cta .cta-button:hover {
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

/* Footer */
.roadmap-footer {
  padding: 3rem 2rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-top: auto;
}

.roadmap-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.roadmap-footer .footer-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.roadmap-footer .footer-brand .logo-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #059669;
}

.roadmap-footer .footer-brand .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.roadmap-footer .footer-brand .logo-accent {
  color: #34d399;
}

.roadmap-footer .footer-brand p {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.roadmap-footer .footer-links {
  display: flex;
  gap: 2rem;
}

.roadmap-footer .footer-links a {
  font-size: 0.8125rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.roadmap-footer .footer-links a:hover {
  color: #059669;
}

.roadmap-footer .footer-copyright p {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
}

.mobile-logo .accent {
  color: #1f2937;
}

.mobile-close-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav {
  padding: 1rem;
  flex: 1;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.mobile-nav-item:hover {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.mobile-menu-actions {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  color: #4b5563;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto;
}

.modal-content {
  background: white;
  border-radius: 1.25rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.modal-release-date {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0.25rem 0 0 0;
}

.modal-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
}

.modal-shipped-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.15));
  border: 2px solid #10b981;
  border-radius: 0.75rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 2rem;
}

.modal-shipped-badge i {
  font-size: 1.5rem;
}

.modal-progress-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.1));
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #f59e0b;
}

.progress-percentage {
  font-size: 1.25rem;
  font-weight: 700;
}

.progress-bar-container {
  height: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 0.5rem;
}

.modal-section {
  margin-bottom: 2rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-title i {
  color: #10b981;
}

.section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.benefits-list,
.technical-list,
.usecases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item,
.technical-item,
.usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.benefit-item:hover,
.technical-item:hover,
.usecase-item:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.benefit-item i {
  color: #10b981;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.technical-item i {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.usecase-item i {
  color: #059669;
  font-size: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.benefit-item span,
.technical-item span,
.usecase-item span {
  flex: 1;
  color: #374151;
  line-height: 1.6;
}

.modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-highlight-badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.modal-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.modal-action-btn.primary {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
}

.modal-action-btn.primary:hover {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.modal-action-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.modal-action-btn.secondary:hover {
  background: #e5e7eb;
}

/* Utility Classes */
.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .roadmap-hero {
    padding: 2rem 0 1.5rem;
  }

  .roadmap-hero .hero-stats {
    gap: 1.5rem;
  }

  .roadmap-hero .stat-number {
    font-size: 2rem;
  }

  .roadmap-filters .filter-tab {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .timeline-quarter .quarter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .roadmap-cta .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .roadmap-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .roadmap-footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-footer {
    flex-direction: column-reverse;
  }

  .modal-footer .modal-action-btn {
    width: 100%;
  }
}

/* Loading and Error States */
.loading-state,
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #6b7280;
}

.loading-state i,
.error-state i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.loading-state i {
  color: #10b981;
}

.error-state i {
  color: #ef4444;
}

.loading-state p,
.error-state p {
  font-size: 1.125rem;
  margin: 0 0 1.5rem 0;
}

.retry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

/* HTML Content Styling */
.html-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.html-content h1,
.html-content h2,
.html-content h3,
.html-content h4,
.html-content h5,
.html-content h6 {
  font-weight: 700;
  color: #1f2937;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.html-content h1 { font-size: 2rem; }
.html-content h2 { font-size: 1.75rem; }
.html-content h3 { font-size: 1.5rem; }
.html-content h4 { font-size: 1.25rem; }
.html-content h5 { font-size: 1.125rem; }
.html-content h6 { font-size: 1rem; }

.html-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.html-content ul,
.html-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.html-content ul {
  list-style-type: disc;
}

.html-content ol {
  list-style-type: decimal;
}

.html-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #374151;
}

.html-content a {
  color: #10b981;
  text-decoration: underline;
}

.html-content a:hover {
  color: #059669;
}

.html-content strong,
.html-content b {
  font-weight: 700;
  color: #1f2937;
}

.html-content em,
.html-content i:not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-style: italic;
}

.html-content code {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.875rem;
  color: #059669;
}

.html-content pre {
  background: #1f2937;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.html-content pre code {
  background: none;
  color: #e5e7eb;
  padding: 0;
}

.html-content blockquote {
  border-left: 4px solid #10b981;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #6b7280;
  font-style: italic;
}

.html-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.html-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.html-content th,
.html-content td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.html-content th {
  background: #f9fafb;
  font-weight: 600;
  color: #1f2937;
}

.html-content td {
  color: #4b5563;
}

.html-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
