/* Theme variables */
:root {
  --color-bg: 15 23 42;
  --color-bg-soft: 15 23 42;
  --color-bg-elevated: 15 23 42;
  --color-primary: 56 189 248;
  --color-primary-soft: 8 47 73;
  --color-border-subtle: 30 64 175;
}

body {
  background-color: rgb(2 6 23);
  color: rgb(241 245 249);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container-width {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: rgb(14 165 233);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(2 6 23);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.15s ease;
}

.btn-primary:hover {
  background-color: rgb(56 189 248);
}

.btn-primary:focus-visible {
  outline: none;
  ring: 2px solid rgb(14 165 233);
  ring-offset: 2px;
  ring-offset-color: rgb(2 6 23);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid rgb(51 65 85);
  background-color: transparent;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(241 245 249);
  transition: all 0.15s ease;
}

.btn-outline:hover {
  background-color: rgba(30 41 59 / 0.6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(14 165 233 / 0.4);
  background-color: rgba(14 165 233 / 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(125 211 252);
}

.section-card {
  border-radius: 1rem;
  border: 1px solid rgb(30 41 59);
  background-color: rgba(15 23 42 / 0.6);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.section-muted {
  border-radius: 1rem;
  border: 1px solid rgb(30 41 59);
  background-color: rgba(15 23 42 / 0.4);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background-color: rgba(30 41 59 / 0.8);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(203 213 225);
}

.pill-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background-color: rgb(52 211 153);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background-color: rgba(30 41 59 / 0.8);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(203 213 225);
}

.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(56 189 248);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
