@font-face {
  font-family: Inter;
  src: url("../fonts/inter/inter-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter/inter-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter/inter-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/inter/inter-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --klv-accent: #2563eb;
  --klv-bg: #ffffff;
  --klv-muted: #f8f9fa;
  --klv-text: #212529;
  --klv-border: #e9ecef;
  --klv-shadow: 0 18px 50px rgba(33, 37, 41, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--klv-text);
  background: var(--klv-bg);
  text-rendering: optimizeLegibility;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  padding: 0.6rem 0.9rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--klv-border);
  color: var(--klv-text);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(33, 37, 41, 0.10);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.brand-accent {
  display: inline-block;
  color: var(--klv-accent);
  letter-spacing: -0.02em;
  transform: scale(1.18);
  transform-origin: left center;
}

.navbar-klv .navbar-brand {
  line-height: 1;
}

.text-accent {
  color: var(--klv-accent);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--klv-muted);
}

.section-outcomes {
  padding: 52px 0;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0)),
    #ffffff;
}

@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }

  .section-outcomes {
    padding: 40px 0;
  }
}

.navbar-klv {
  --bs-navbar-padding-y: 1rem;
  --bs-navbar-color: rgba(33, 37, 41, 0.75);
  --bs-navbar-hover-color: rgba(33, 37, 41, 1);
  --bs-navbar-active-color: rgba(33, 37, 41, 1);
  --bs-navbar-brand-color: rgba(33, 37, 41, 1);
  --bs-navbar-brand-hover-color: rgba(33, 37, 41, 1);
  --bs-navbar-toggler-border-color: rgba(33, 37, 41, 0.12);
  background: transparent;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.navbar-klv .nav-link {
  font-weight: 500;
}

.navbar-klv.navbar-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 236, 239, 0.9);
  box-shadow: 0 10px 26px rgba(33, 37, 41, 0.06);
}

@media (max-width: 991.98px) {
  .navbar-klv {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 236, 239, 0.9);
  }

  .navbar-klv .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(233, 236, 239, 1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(33, 37, 41, 0.08);
  }

  .navbar-klv .navbar-nav {
    align-items: flex-start !important;
  }
}

.btn-accent {
  --bs-btn-bg: var(--klv-accent);
  --bs-btn-border-color: var(--klv-accent);
  --bs-btn-hover-bg: #1d4ed8;
  --bs-btn-hover-border-color: #1d4ed8;
  --bs-btn-active-bg: #1e40af;
  --bs-btn-active-border-color: #1e40af;
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
}

.btn-accent:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.btn-ghost {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(33, 37, 41, 0.18);
  --bs-btn-hover-bg: rgba(33, 37, 41, 0.04);
  --bs-btn-hover-border-color: rgba(33, 37, 41, 0.18);
  --bs-btn-active-bg: rgba(33, 37, 41, 0.06);
  --bs-btn-color: rgba(33, 37, 41, 0.95);
  --bs-btn-hover-color: rgba(33, 37, 41, 1);
  border-width: 1px;
}

.btn-ghost-solid {
  --bs-btn-bg: rgba(255, 255, 255, 0.95);
  --bs-btn-border-color: rgba(33, 37, 41, 0.22);
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: rgba(33, 37, 41, 0.28);
  --bs-btn-active-bg: rgba(248, 249, 250, 1);
  box-shadow: 0 10px 22px rgba(33, 37, 41, 0.08);
}

.btn-ghost:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 88px;
  background:
    radial-gradient(900px 380px at 12% 16%, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0) 60%),
    radial-gradient(700px 400px at 82% 24%, rgba(33, 37, 41, 0.07), rgba(33, 37, 41, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 75%, rgba(248, 249, 250, 0.65) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(33, 37, 41, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 35% 20%, rgba(0, 0, 0, 0.85), transparent 60%);
  pointer-events: none;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floater {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.07);
  box-shadow: 0 18px 44px rgba(33, 37, 41, 0.06);
  transform: rotate(10deg);
  animation: float 7.5s ease-in-out infinite;
}

.floater.f1 { width: 120px; height: 120px; left: 7%; top: 18%; border-radius: 40px; animation-duration: 8.5s; }
.floater.f2 { width: 72px; height: 72px; right: 14%; top: 12%; border-radius: 999px; animation-duration: 7.2s; }
.floater.f3 { width: 150px; height: 90px; right: 7%; top: 46%; border-radius: 34px; animation-duration: 9.2s; }
.floater.f4 { width: 110px; height: 110px; left: 16%; bottom: 14%; border-radius: 999px; animation-duration: 8.2s; }
.floater.f5 { width: 180px; height: 110px; left: 55%; bottom: 10%; border-radius: 42px; animation-duration: 10.2s; }

@keyframes float {
  0% { transform: translate3d(0, 0, 0) rotate(10deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(14deg); }
  100% { transform: translate3d(0, 0, 0) rotate(10deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--klv-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  color: rgba(33, 37, 41, 0.75);
}

.eyebrow .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--klv-accent);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: rgba(33, 37, 41, 0.72);
  font-weight: 500;
}

.hero-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta i {
  color: var(--klv-accent);
}

.hero-preview {
  position: relative;
  border: 1px solid rgba(233, 236, 239, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--klv-shadow);
  overflow: hidden;
}

.preview-top,
.preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.9);
}

.preview-foot {
  border-top: 1px solid rgba(233, 236, 239, 0.9);
  border-bottom: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
}

.preview-body {
  padding: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.92);
}

.pill-muted {
  background: rgba(248, 249, 250, 1);
  color: rgba(33, 37, 41, 0.65);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(33, 37, 41, 0.75);
  font-weight: 600;
}

.pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--klv-accent);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.mini-card,
.mini-wide {
  border: 1px solid rgba(233, 236, 239, 1);
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
}

.mini-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mini-sub {
  font-size: 0.85rem;
  color: rgba(33, 37, 41, 0.62);
  margin-top: 0.15rem;
}

.mini-progress {
  height: 8px;
  margin-top: 0.75rem;
  background: rgba(33, 37, 41, 0.08);
  border-radius: 999px;
}

.mini-progress .progress-bar {
  background: var(--klv-accent);
  border-radius: 999px;
}

.delta {
  font-weight: 700;
  color: rgba(33, 37, 41, 0.85);
}

.spark {
  display: flex;
  gap: 7px;
  align-items: flex-end;
  height: 64px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0) 75%);
}

.spark span {
  flex: 1;
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.10);
  animation: bar 2.8s ease-in-out infinite;
}

.spark span:nth-child(3n) {
  background: rgba(37, 99, 235, 0.62);
}

.spark span:nth-child(1) { height: 34%; animation-delay: 0ms; }
.spark span:nth-child(2) { height: 54%; animation-delay: 120ms; }
.spark span:nth-child(3) { height: 64%; animation-delay: 240ms; }
.spark span:nth-child(4) { height: 44%; animation-delay: 360ms; }
.spark span:nth-child(5) { height: 72%; animation-delay: 480ms; }
.spark span:nth-child(6) { height: 58%; animation-delay: 600ms; }
.spark span:nth-child(7) { height: 78%; animation-delay: 720ms; }
.spark span:nth-child(8) { height: 62%; animation-delay: 840ms; }
.spark span:nth-child(9) { height: 86%; animation-delay: 960ms; }
.spark span:nth-child(10) { height: 68%; animation-delay: 1080ms; }
.spark span:nth-child(11) { height: 52%; animation-delay: 1200ms; }
.spark span:nth-child(12) { height: 74%; animation-delay: 1320ms; }

@keyframes bar {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(248, 249, 250, 1);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.76);
}

.chip i {
  color: var(--klv-accent);
}

.feature-card {
  border: 1px solid rgba(233, 236, 239, 1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(33, 37, 41, 0.08);
  border-color: rgba(233, 236, 239, 0.6);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--klv-accent);
  font-size: 1.2rem;
}

.metric-card {
  height: 100%;
  padding: 1.05rem 1rem;
  border: 1px solid rgba(233, 236, 239, 1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(33, 37, 41, 0.06);
}

.metric-value {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(33, 37, 41, 0.95);
}

.metric-label {
  margin-top: 0.28rem;
  font-weight: 700;
  line-height: 1.3;
}

.metric-note {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(33, 37, 41, 0.65);
}

.integration-card {
  padding: 1rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.integration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(33, 37, 41, 0.07);
  border-color: rgba(37, 99, 235, 0.22);
}

.integration-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  color: var(--klv-accent);
  background: rgba(37, 99, 235, 0.12);
  font-size: 1.05rem;
}

.integration-note {
  font-size: 0.88rem;
  color: rgba(33, 37, 41, 0.66);
  line-height: 1.4;
}

.timeline-shell {
  position: relative;
}

.rollout-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

.rollout-timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.15));
}

.rollout-item {
  position: relative;
  padding-left: 2.5rem;
}

.rollout-marker {
  position: absolute;
  left: 0.3rem;
  top: 0.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--klv-accent);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.14);
}

.rollout-card {
  position: relative;
  padding: 1.05rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(33, 37, 41, 0.06);
}

.step-phase {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(30, 64, 175, 0.92);
}

@media (min-width: 992px) {
  .rollout-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .rollout-timeline::before {
    left: 16.66%;
    right: 16.66%;
    top: 1.1rem;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.15));
  }

  .rollout-item {
    padding-left: 0;
    padding-top: 2.4rem;
  }

  .rollout-marker {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.86rem;
  }
}

.preview-figure {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(233, 236, 239, 1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(33, 37, 41, 0.08);
}

.preview-figure img {
  border-radius: 16px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: #ffffff;
}

@media (max-width: 991.98px) {
  #platform .preview-figure {
    max-width: 34rem;
    margin-inline: auto;
  }

  #platform .preview-figure img {
    width: 100%;
    height: clamp(170px, 42vw, 280px);
    object-fit: contain;
  }
}

@media (max-width: 575.98px) {
  #platform .preview-figure {
    padding: 10px;
  }

  #platform .preview-figure img {
    height: clamp(160px, 52vw, 220px);
  }
}

.trust-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(33, 37, 41, 0.06);
}

.trust-logo {
  width: min(100%, 230px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(1.18) contrast(0.74);
  transition: filter 220ms ease;
}

.trust-card:hover .trust-logo {
  filter: grayscale(0) brightness(1) contrast(1);
}

.security-shell {
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: linear-gradient(170deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.92) 60%);
  box-shadow: 0 16px 36px rgba(33, 37, 41, 0.08);
}

.security-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.10);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(30, 64, 175, 0.95);
}

.security-list {
  list-style: none;
  padding: 0;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(33, 37, 41, 0.10);
  color: rgba(33, 37, 41, 0.82);
}

.security-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.security-list i {
  color: var(--klv-accent);
  line-height: 1.3;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(233, 236, 239, 1);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  background: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: rgba(30, 64, 175, 1);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 -1px 0 rgba(37, 99, 235, 0.12);
}

.faq-accordion .accordion-button:focus {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.faq-accordion .accordion-body {
  color: rgba(33, 37, 41, 0.76);
}

.contact-card {
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(33, 37, 41, 0.06);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--klv-accent);
  font-size: 1.2rem;
}

.form-shell {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(248, 249, 250, 0.70);
  box-shadow: 0 18px 44px rgba(33, 37, 41, 0.08);
}

.form-control,
.form-select {
  border-radius: 14px;
  border-color: rgba(33, 37, 41, 0.14);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.18);
}

.link-muted {
  color: rgba(33, 37, 41, 0.75);
  text-decoration-color: rgba(33, 37, 41, 0.25);
}

.link-muted:hover {
  color: var(--klv-accent);
  text-decoration-color: rgba(37, 99, 235, 0.55);
}

.legal-section {
  scroll-margin-top: 96px;
}

.legal-shell {
  padding: 1.35rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(233, 236, 239, 1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(33, 37, 41, 0.06);
}

.legal-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(33, 37, 41, 0.58);
}

.legal-shell h3 {
  letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
  .legal-shell {
    padding: 1.1rem 0.95rem;
  }
}

.footer {
  padding: 72px 0;
}

.footer-link {
  color: rgba(33, 37, 41, 0.70);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--klv-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(233, 236, 239, 1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .floater,
  .pulse,
  .spark span {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
