/* Aeonik font — add your font files here if you have them */
@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik Medium'), local('Aeonik-Medium');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: local('Aeonik Bold'), local('Aeonik-Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Smooth transitions for dark mode */
html.transitioning,
html.transitioning *,
html.transitioning *::before,
html.transitioning *::after {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

/* Slide up animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.slide-up-ready {
  animation: slideUp 0.55s ease-out forwards;
}

/* Section heading style */
.section-heading {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #999999;
  margin-bottom: 1rem;
}

/* Company logo placeholder */
.company-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #999999;
  flex-shrink: 0;
}

.dark .company-logo {
  background: #2a2a2a;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(234, 179, 8, 0.1);
  color: #92600a;
}

.dark .status-badge {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

/* Project badge (green) */
.project-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(168, 228, 160, 0.1);
  color: #A8E4A0;
}

/* Star icon color */
.star-count {
  color: #eab308;
}

/* Link styles */
a.primary-link {
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

a.primary-link:hover {
  text-decoration: underline !important;
  text-decoration-color: #A8E4A0 !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
}

.group:hover .primary-link-text {
  text-decoration: underline !important;
  text-decoration-color: #A8E4A0 !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
}

a.secondary-link {
  font-size: 0.875rem;
  color: #999999;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a.secondary-link:hover {
  color: #666666;
}

/* Research link buttons */
.research-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  color: #999999;
  text-decoration: none;
  transition: background-color 0.15s;
}

.research-link:hover {
  background: #f0f0f0;
}

.dark .research-link {
  border-color: #3a3a3a;
}

.dark .research-link:hover {
  background: #2a2a2a;
}
