body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #334155;
}

.hero-title {
  line-height: 1.35 !important;
}

.boxed-card {
  border: 1px solid rgba(37, 99, 235, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background-color 0.25s ease;
  position: relative;
  box-shadow: 0 22px 45px -22px rgba(71, 85, 105, 0.45);
}

.boxed-card:hover,
.boxed-card:focus-within {
  transform: translateY(-6px);
  background-color: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 22px 45px -22px rgba(71, 85, 105, 0.45);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background-color: #1e3a8a;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 18px 40px -18px rgba(51, 65, 85, 0.45);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 60;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background-color: #1d4ed8;
  box-shadow: 0 20px 45px -20px rgba(71, 85, 105, 0.55);
}

.back-to-top:active {
  background-color: #1e40af;
}

.back-to-top:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.back-to-top__icon {
  display: inline-flex;
}

.faq-item {
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px -22px rgba(71, 85, 105, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 22px 52px -24px rgba(71, 85, 105, 0.4);
  background-color: rgba(59, 130, 246, 0.08);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e3a8a;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
}

.faq-trigger-label {
  flex: 1 1 auto;
  text-align: left;
}

.faq-chevron {
  transition: transform 0.2s ease;
  color: #2563eb;
  flex: 0 0 auto;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #334155;
}

.faq-item.is-open .faq-content {
  padding-bottom: 1.25rem;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(59, 130, 246, 0.12);
  color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 10px 24px -12px rgba(71, 85, 105, 0.35);
}

.badge--live {
  background-color: rgba(34, 197, 94, 0.18);
  color: #15803d;
  box-shadow: 0 10px 24px -12px rgba(21, 128, 61, 0.35);
}

.badge--soon {
  background-color: rgba(249, 115, 22, 0.2);
  color: #c2410c;
  box-shadow: 0 10px 24px -12px rgba(194, 65, 12, 0.35);
}
