.nav-link {
  color: #475569;
  font-weight: 500;
  transition: color 300ms;
}

.nav-link:hover {
  color: #000a1f;
}

.nav-link-active {
  color: #4648d4;
  font-weight: 700;
  border-bottom: 2px solid #4648d4;
  padding-bottom: 0.25rem;
}

.btn-primary {
  background-color: #000a1f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 300ms;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-primary:hover {
  background-color: #4648d4;
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-primary-lg {
  background-color: #000a1f;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 300ms;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-primary-lg:hover {
  background-color: #4648d4;
}

.btn-primary-md {
  background-color: #000a1f;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 300ms;
}

.btn-primary-md:hover {
  background-color: #4648d4;
}

.btn-outline {
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #000a1f;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 300ms;
}

.btn-outline:hover {
  background-color: #f1f5f9;
}

.btn-outline:active {
  transform: scale(0.95);
}

.btn-secondary {
  background-color: #4648d4;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 300ms;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-secondary:active {
  transform: scale(0.95);
}

.section-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #4648d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 2.5rem;
  height: 0.25rem;
  background-color: #4648d4;
  border-radius: 9999px;
}

.section-tag {
  color: #4648d4;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.card-glass {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  transition: all 500ms;
}

.card-glass:hover {
  border-color: rgb(70 72 212 / 0.3);
  box-shadow: 0 20px 25px -5px rgb(70 72 212 / 0.05), 0 8px 10px -6px rgb(70 72 212 / 0.05);
}

.feature-card-dark {
  background-color: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(4px);
  padding: 32px;
  border-radius: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  transition: border-color 300ms;
}

.feature-card-dark:hover {
  border-color: #4648d4;
}

.feature-card-dark__bar {
  height: 0.25rem;
  background-color: #4648d4;
  border-radius: 9999px;
  width: 3rem;
  transition: width 500ms;
}

.feature-card-dark:hover .feature-card-dark__bar {
  width: 100%;
}
