/* YET Patent Platform - shared brand styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #ffffff;
}

.gradient-primary {
  background: linear-gradient(135deg, #00e5a0 0%, #3ecfff 100%);
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.1) 0%, rgba(62, 207, 255, 0.1) 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #00e5a0 0%, #3ecfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 160, 0.35);
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, #00e5a0 0%, #3ecfff 100%);
  color: #0a0a0a;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 229, 160, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 229, 160, 0.5);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 229, 160, 0.2);
}

.logo-mark-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.metric-card {
  background: rgba(0, 229, 160, 0.05);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-active {
  background: rgba(0, 229, 160, 0.2);
  color: #00e5a0;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.status-verified {
  background: rgba(62, 207, 255, 0.2);
  color: #3ecfff;
}

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
  box-shadow: 0 0 60px rgba(0, 229, 160, 0.18);
}

.section-spacing {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
}

input, textarea, select {
  color: #fff;
}

input::placeholder, textarea::placeholder {
  color: #6b7280;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
