html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(108, 76, 241, 0.12), transparent 26%),
    radial-gradient(circle at 84% 72%, rgba(230, 168, 161, 0.18), transparent 24%),
    linear-gradient(180deg, #faf9ff 0%, #f5f5f7 48%, #f2f1f8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.section-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  box-shadow: 0 8px 40px rgba(31, 31, 46, 0.04);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: rgba(108, 76, 241, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-mark {
  box-shadow:
    0 0 0 6px rgba(31, 31, 46, 0.04),
    0 10px 30px rgba(31, 31, 46, 0.06);
}

.hero-section {
  min-height: calc(100vh - 5.5rem);
}

.hero-copy h1 {
  max-width: 10ch;
  text-wrap: balance;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(108, 76, 241, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 25px rgba(31, 31, 46, 0.04);
}

.hero-frame {
  box-shadow:
    0 30px 90px rgba(31, 31, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

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

.soft-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.soft-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 40%);
  pointer-events: none;
}

.soft-card:hover,
.soft-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(31, 31, 46, 0.12);
  border-color: rgba(108, 76, 241, 0.12);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(31, 31, 46, 0.08);
  padding: 1.25rem 1.5rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(31, 31, 46, 0.12);
}

.brand-logo svg {
  width: 100%;
  max-width: 220px;
  height: 42px;
}

.recognition-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  width: 100%;
}

.recognition-logo svg,
.recognition-logo img {
  width: 100%;
  max-width: 220px;
  max-height: 64px;
  height: auto;
  object-fit: contain;
}

.recognition-logo--hbs img {
  max-width: 220px;
  max-height: 88px;
}

.recognition-card {
  display: flex;
  min-height: 172px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.recognition-card p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
