/* Suite Page Specific Styles */

/* Navigation */
.navbar {
  background: rgba(26, 27, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 162, 247, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .navbar-item {
  font-weight: 600;
  color: #c0caf5;
}

.navbar-item {
  color: #a9b1d6;
  transition: all 0.2s ease;
}

.navbar-item:hover {
  color: #c0caf5;
  background-color: rgba(122, 162, 247, 0.1);
}

.navbar-item.is-active {
  color: #7aa2f7;
  background-color: rgba(122, 162, 247, 0.15);
}

/* Mobile Navigation */
.navbar-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.navbar-burger span {
  width: 20px;
  height: 2px;
  background: #c0caf5;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.navbar-burger:hover span {
  background: #7aa2f7;
}

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

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

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

/* Hero Section */
.suite-hero {
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
  color: #c0caf5;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.suite-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(122, 162, 247, 0.1) 0%, transparent 70%),
    linear-gradient(90deg, transparent 98%, rgba(122, 162, 247, 0.05) 100%),
    linear-gradient(0deg, transparent 98%, rgba(122, 162, 247, 0.05) 100%);
  background-size: 100% 100%, 50px 50px, 50px 50px;
  pointer-events: none;
}

.suite-logo {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  color: #7aa2f7;
  text-shadow: 0 0 20px rgba(122, 162, 247, 0.5);
}

.system-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #c0caf5;
  background: rgba(122, 162, 247, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(122, 162, 247, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.status-indicator {
  font-size: 0.6rem;
}

.status-indicator.online {
  color: #9ece6a;
  animation: pulse 2s infinite;
}

.status-text {
  font-weight: 600;
  letter-spacing: 1px;
}

.status-time {
  color: #7aa2f7;
  font-size: 0.7rem;
}

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

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

.suite-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #7aa2f7 0%, #bb9af7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.suite-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #c0caf5;
  font-weight: 400;
}

.suite-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #7aa2f7;
}

.stat-label {
  font-size: 1rem;
  color: #c0caf5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-status {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  margin-top: 0.25rem;
}

.stat-status.online {
  color: #9ece6a;
}

.stat-status.offline {
  color: #f7768e;
}

.stat-status.development {
  color: #e0af68;
}

/* Section Dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 162, 247, 0.2) 50%, transparent 100%);
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  background: linear-gradient(120deg, #7aa2f7 0%, #bb9af7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  color: #7aa2f7;
  flex-wrap: wrap;
}

.section-meta .meta-item {
  background: rgba(122, 162, 247, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(122, 162, 247, 0.2);
  font-weight: 500;
}

/* Projects Section */
.projects-section {
  padding: 5rem 0;
  background: #13141c;
}

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

.project-card {
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(122, 162, 247, 0.1);
  border: 1px solid rgba(122, 162, 247, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7aa2f7, transparent);
  background-size: 200% 100%;
  animation: scan 4s linear infinite;
  opacity: 0.6;
}

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

.project-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 8px 30px rgba(122, 162, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(122, 162, 247, 0.3);
  border-color: rgba(122, 162, 247, 0.4);
  background: linear-gradient(135deg, #1f2335 0%, #1a1b26 100%);
}

.project-card.featured {
  border: 2px solid #7aa2f7;
  background: linear-gradient(135deg, #1a1b26 0%, #1f2335 100%);
  box-shadow: 
    0 8px 30px rgba(122, 162, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(122, 162, 247, 0.2);
}

.project-card.featured::before {
  background: linear-gradient(90deg, transparent, #7aa2f7, transparent);
  animation: scan 3s linear infinite;
  opacity: 0.8;
}

.project-card.placeholder {
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
  border: 2px dashed rgba(122, 162, 247, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7aa2f7 0%, #bb9af7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 
    0 4px 15px rgba(122, 162, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.project-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

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

.project-card.placeholder .project-icon {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}

.new-badge {
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
  color: white;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c0caf5;
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.meta-item {
  font-size: 0.75rem;
  color: #7aa2f7;
  background: rgba(122, 162, 247, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(122, 162, 247, 0.2);
}

.project-description {
  color: #c0caf5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #7aa2f7;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: #c0caf5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(122, 162, 247, 0.1);
  color: #7aa2f7;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  border: 1px solid rgba(122, 162, 247, 0.2);
}

.project-actions {
  display: flex;
  gap: 0.75rem;
}

.project-actions .button {
  flex: 1;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.project-actions .button:hover {
  transform: translateY(-2px);
}

.project-terminal {
  margin-top: 1rem;
  background: #13141c;
  border-radius: 8px;
  border: 1px solid rgba(122, 162, 247, 0.2);
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(122, 162, 247, 0.1);
  border-bottom: 1px solid rgba(122, 162, 247, 0.2);
  font-size: 0.7rem;
  color: #c0caf5;
}

.terminal-title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.terminal-status {
  color: #9ece6a;
  font-size: 0.6rem;
}

.terminal-content {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  color: #a9b1d6;
  line-height: 1.4;
}

.terminal-line {
  display: block;
  margin-bottom: 0.25rem;
}

.terminal-line:last-child {
  margin-bottom: 0;
}

/* Datasets Section */
.datasets-section {
  padding: 5rem 0;
  background: #1a1b26;
}

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

.dataset-card {
  background: linear-gradient(135deg, #13141c 0%, #0f1018 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(122, 162, 247, 0.1);
  border: 1px solid rgba(122, 162, 247, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.dataset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bb9af7, transparent);
  background-size: 200% 100%;
  animation: scan 4.5s linear infinite;
  opacity: 0.6;
}

.dataset-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.dataset-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 8px 30px rgba(122, 162, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(122, 162, 247, 0.3);
  border-color: rgba(122, 162, 247, 0.4);
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
}

.dataset-card.featured {
  border: 2px solid #7aa2f7;
  background: linear-gradient(135deg, #13141c 0%, #1a1b26 100%);
}

.dataset-card.placeholder {
  background: linear-gradient(135deg, #13141c 0%, #1a1b26 100%);
  border: 2px dashed rgba(122, 162, 247, 0.3);
}

.dataset-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dataset-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #bb9af7 0%, #7aa2f7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 
    0 4px 15px rgba(187, 154, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.dataset-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3.5s infinite;
}

.dataset-card.placeholder .dataset-icon {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.dataset-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c0caf5;
  margin-bottom: 1rem;
}

.dataset-description {
  color: #c0caf5;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dataset-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #7aa2f7;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #c0caf5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dataset-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(122, 162, 247, 0.1);
  color: #7aa2f7;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.dataset-actions {
  display: flex;
  gap: 0.75rem;
}

.dataset-actions .button {
  flex: 1;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dataset-actions .button:hover {
  transform: translateY(-2px);
}

/* Community Usage Section */
.citations-section {
  padding: 5rem 0;
  background: #1a1b26;
}

.usage-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.usage-item {
  background: #13141c;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(122, 162, 247, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.usage-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.usage-item:hover {
  border-color: rgba(122, 162, 247, 0.3);
  box-shadow: 0 4px 15px rgba(122, 162, 247, 0.1);
  transform: translateY(-2px);
}

.usage-item.submit-item {
  border: 2px dashed rgba(122, 162, 247, 0.3);
  background: linear-gradient(135deg, #13141c 0%, #1a1b26 100%);
}

.usage-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #bb9af7 0%, #7aa2f7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(187, 154, 247, 0.2);
}

.usage-item.submit-item .usage-icon {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.usage-content {
  flex: 1;
  min-width: 0;
}

.usage-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.usage-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c0caf5;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.usage-badge {
  background: linear-gradient(135deg, #bb9af7 0%, #7aa2f7 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.usage-authors {
  color: #7aa2f7;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-style: italic;
}



.usage-description {
  color: #c0caf5;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.usage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.usage-tag {
  background: rgba(187, 154, 247, 0.1);
  color: #bb9af7;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  border: 1px solid rgba(187, 154, 247, 0.2);
}

.usage-links {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.usage-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: rgba(122, 162, 247, 0.1);
  color: #7aa2f7;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(122, 162, 247, 0.2);
}

.usage-link:hover {
  background: rgba(122, 162, 247, 0.2);
  color: #c0caf5;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Research Section */
.research-section {
  padding: 5rem 0;
  background: #13141c;
}

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

.research-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #1a1b26;
  border: 1px solid rgba(122, 162, 247, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.research-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.research-card:hover {
  background: #1f2335;
  box-shadow: 0 8px 25px rgba(122, 162, 247, 0.2);
  transform: translateY(-5px);
  border-color: rgba(122, 162, 247, 0.4);
}

.research-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.research-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c0caf5;
  margin-bottom: 1rem;
}

.research-description {
  color: #c0caf5;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
  color: #c0caf5;
}

.contact-section .section-title {
  background: linear-gradient(120deg, #7aa2f7 0%, #bb9af7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-actions .button {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.contact-actions .button:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a1b26;
  color: #c0caf5;
  padding: 3rem 0 1rem;
}

.footer .title {
  color: #c0caf5;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: #c0caf5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.icon-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .navbar-burger {
    display: flex;
  }
  
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 27, 38, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(122, 162, 247, 0.2);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .navbar-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-end {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .navbar-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }
  
  .suite-title {
    font-size: 2.5rem;
  }
  
  .suite-subtitle {
    font-size: 1.25rem;
  }
  
  .suite-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .section-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .section-meta .meta-item {
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .research-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-actions .button {
    width: 200px;
  }
  
  .project-metrics {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-actions {
    flex-direction: column;
  }
  
  .datasets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dataset-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .dataset-actions {
    flex-direction: column;
  }
  
  .usage-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .usage-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .usage-links {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .suite-hero {
    padding: 4rem 0 2rem;
  }
  
  .suite-title {
    font-size: 2rem;
  }
  
  .suite-subtitle {
    font-size: 1rem;
  }
  
  .project-card {
    padding: 1.5rem;
  }
  
  .research-card {
    padding: 1.5rem;
  }
}

/* Animation Delays */
.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }

.dataset-card:nth-child(1) { transition-delay: 0.1s; }
.dataset-card:nth-child(2) { transition-delay: 0.2s; }
.dataset-card:nth-child(3) { transition-delay: 0.3s; }

.usage-item:nth-child(1) { transition-delay: 0.1s; }
.usage-item:nth-child(2) { transition-delay: 0.2s; }
.usage-item:nth-child(3) { transition-delay: 0.3s; }
.usage-item:nth-child(4) { transition-delay: 0.4s; }

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

/* Loading States */
.project-card.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Hover Effects */
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(26, 27, 38, 0.9);
  border: 1px solid rgba(122, 162, 247, 0.3);
  border-radius: 50%;
  color: #7aa2f7;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: rgba(122, 162, 247, 0.1);
  border-color: rgba(122, 162, 247, 0.5);
  transform: translateY(-2px);
}

/* Enhanced Hover States */
.project-card:hover .project-icon,
.dataset-card:hover .dataset-icon,
.research-card:hover .research-icon {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.usage-item:hover .usage-icon {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Focus States for Accessibility */
.project-card:focus-within {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}

.button:focus {
  outline: 2px solid #3273dc;
  outline-offset: 2px;
}

/* Ecosystem Section */
.suite-overview-section {
  background: linear-gradient(135deg, #1a1b26 0%, #13141c 100%);
  color: #c0caf5;
  padding: 4rem 0;
}

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

.ecosystem-card {
  background: rgba(26, 27, 38, 0.8);
  border: 1px solid rgba(122, 162, 247, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(122, 162, 247, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.ecosystem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 162, 247, 0.4);
  box-shadow: 0 10px 30px rgba(122, 162, 247, 0.2);
}

.ecosystem-icon {
  font-size: 3rem;
  color: #7aa2f7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ecosystem-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c0caf5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ecosystem-description {
  color: #a9b1d6;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ecosystem-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(122, 162, 247, 0.1);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.detail-label {
  color: #7aa2f7;
  font-weight: 500;
  min-width: 80px;
  margin-right: 1rem;
}

.detail-value {
  color: #a9b1d6;
  flex: 1;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ecosystem-card {
    padding: 1.5rem;
  }
  
  .ecosystem-icon {
    font-size: 2.5rem;
  }
  
  .ecosystem-title {
    font-size: 1.3rem;
  }
}
