html {
  scroll-behavior: smooth;
}

body {
  background-color: #0b0f14;
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background-color: rgba(16, 185, 129, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #34d399;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.card-surface {
  border-radius: 0.75rem;
  border: 1px solid #2a3441;
  background-color: #151b23;
}

.input-field {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #2a3441;
  background-color: #151b23;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
}

.input-field::placeholder {
  color: #64748b;
}

.input-field:focus {
  border-color: rgba(16, 185, 129, 0.5);
  outline: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #10b981, #059669);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(to right, #34d399, #10b981);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #2a3441;
  background-color: rgba(21, 27, 35, 0.6);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background-color: #151b23;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  animation: ticker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}
