html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

table {
  border-collapse: collapse;
}

button {
  cursor: pointer;
}

#site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.lucide {
  stroke-width: 2;
}

#mobile-toggle .lucide {
  width: 24px;
  height: 24px;
}

.cap-tab .lucide {
  width: 14px;
  height: 14px;
}

.cap-tab {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.cap-tab:hover {
  border-color: #94a3b8;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.cap-dot {
  width: 8px;
  height: 8px;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

.orion-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.orion-logo__mark {
  position: relative;
  width: var(--logo-size);
  height: var(--logo-size);
  flex: 0 0 auto;
}

.orion-logo__glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  filter: blur(12px);
  opacity: 0.4;
  background: linear-gradient(135deg, #1e40af, #059669);
}

.orion-logo__body {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #0e7490 50%, #059669 100%);
}

.orion-logo__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orion-logo--animate .orion-logo__orbit {
  animation: orion-spin 8s linear infinite;
  transform-origin: center;
}

.orion-logo__letter {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: calc(var(--logo-size) * 0.4);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.orion-logo__text {
  color: #0f172a;
  font-size: var(--logo-text-size);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.orion-logo--light .orion-logo__text {
  color: #fff;
}

@keyframes orion-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }
}
