


@keyframes glDrift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glWarm {
  0% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
}
@keyframes glSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glRule {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.is-drifted {
  opacity: 0;
}
.is-drifted.is-inview {
  animation: glDrift 0.72s ease-out both;
}
.Splash-inner {
  animation: glDrift 0.9s ease-out both;
}
.Splash-tag {
  animation: glSlideUp 1.1s ease-out both;
}
.Divider-glyph {
  animation: glWarm 6s ease-in-out infinite;
}
.Section-eyebrow::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.3rem;
  background: var(--accent);
  transform-origin: left;
  animation: glRule 0.9s ease-out both;
}


.Fab-panel.is-hidden {
  display: none;
}
.Fab:not(.is-armed) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.Fab.is-armed {
  animation: glSlideUp 0.4s ease-out both;
  visibility: visible;
  pointer-events: auto;
}
.Colophon-body.is-collapsed {
  display: none;
}
.Colophon-title.is-open .Colophon-titleMark {
  transform: rotate(45deg);
}
.Masthead.is-scrolled {
  box-shadow: var(--shadow-soft);
}
.Form-input.is-invalid {
  border-color: #b91c1c;
  background: #fef2f2;
}
.Bit:hover,
.Card:hover {
  transform: translateY(-3px);
  transition: transform var(--transition);
}


@media (max-width: 767.98px) {
  .Splash-actions .Button {
    width: 100%;
  }
  .Summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .Facts-key {
    flex-basis: auto;
  }
  .Blend-item {
    grid-template-columns: 1fr;
  }
  .Blend-dot {
    display: none;
  }
  .Faq-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .Fab-panel {
    left: clamp(0.75rem, 3vw, 1.5rem);
    width: auto;
  }
  .Section:not(.Splash) {
    padding: 2rem 1rem;
  }
}

@media (min-width: 1280px) {
  .Section-head {
    margin-bottom: var(--space-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-drifted,
  .is-drifted.is-inview,
  .Splash-inner,
  .Splash-tag,
  .Divider-glyph,
  .Section-eyebrow::after,
  .Fab.is-armed {
    animation: none;
    opacity: 1;
  }
  .Bit:hover,
  .Card:hover {
    transform: none;
  }
}
