*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid;
}

:root {
  --background-1: #0e0e0e;
  --background-2: #191919;
  --background-3: #353535;
  --background-4: #121212;
  --foreground: #cccccc;
  --foreground-diminished: #cccccc99;
  --selected: #ffffff;
  --accent: #69b0f7;
  --contour: #323232;
  --shadow: #1e1e1e;
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--background-2);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--selected);
  word-break: break-word;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.diminished {
  color: var(--foreground-diminished);
}

.with-backdrop {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: color-mix(in srgb, var(--background-1) 75%, transparent);
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: #ffffff;
}

.orb-b {
  width: 22rem;
  height: 22rem;
  bottom: 10%;
  left: -8rem;
  background: #888888;
}

.orb-c {
  width: 16rem;
  height: 16rem;
  top: 45%;
  right: 15%;
  background: #444444;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--contour);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.logo-link {
  display: inline-flex;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-link img,
.header-inner img {
  filter: invert(1);
}

.hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--selected);
  border: 2px solid var(--contour);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-1) 60%, transparent);
  backdrop-filter: blur(8px);
}

.lead {
  max-width: 28rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: var(--foreground-diminished);
}

.providers {
  padding-bottom: 2rem;
}

.provider-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-decoration: none;
}

.provider-card:hover {
  text-decoration: none;
}

.provider-logo {
  max-height: 9rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.8);
  transform: scale(1);
  transition:
    filter 0.35s ease-out,
    transform 0.35s ease-out;
}

.provider-card:hover .provider-logo {
  filter: grayscale(0);
  transform: scale(1.08);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--contour);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.fade-in {
  animation: fade-in 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.fade-in-slow {
  animation: fade-in 1s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.15s;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2rem;
  }
}
