html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #020617 0%, #020817 38%, #030712 100%);
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
}

.glass-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.72));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.section-border {
  position: relative;
}

.section-border::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.8), transparent);
}

.brand-mark-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: #020617;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.28);
}

.brand-mark-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-footer-logo {
  width: min(100%, 17rem);
  height: auto;
  display: block;
}

.faq-card[open] {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-card summary {
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-indicator {
  transition: transform 0.25s ease;
}

.faq-card[open] .faq-indicator {
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #55a4ff;
  outline-offset: 3px;
}

.content-prose {
  color: rgb(203 213 225);
}

.content-prose > * + * {
  margin-top: 1.4rem;
}

.content-prose h2,
.content-prose h3 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.content-prose h2 {
  margin-top: 3rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.content-prose h3 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.content-prose p,
.content-prose li {
  font-size: 1rem;
  line-height: 1.95;
}

.content-prose ul,
.content-prose ol {
  margin-left: 1.15rem;
  padding-left: 0.55rem;
}

.content-prose ul {
  list-style: disc;
}

.content-prose ol {
  list-style: decimal;
}

.content-prose strong {
  color: #ffffff;
  font-weight: 600;
}

.content-prose a {
  color: #93c5fd;
  text-decoration: underline;
  text-decoration-color: rgba(147, 197, 253, 0.4);
  text-underline-offset: 0.2rem;
}

.content-prose a:hover {
  color: #ffffff;
}

.content-prose blockquote {
  border-left: 3px solid rgba(96, 165, 250, 0.45);
  padding-left: 1rem;
  color: rgb(226 232 240);
}

.content-prose hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  margin-top: 2.2rem;
  margin-bottom: 2.2rem;
}
