:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fafcfb;
  color: #344054;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: #102a33;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: #102a33;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
  color: #102a33;
}

.gradient-teal h1,
.gradient-teal h2,
.gradient-teal p {
  color: #fff;
}

.canva-image {
  background: #f4f7f8;
}

.page-view.active {
  animation: page-in 240ms ease-out;
}

.form-status {
  border-radius: .75rem;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.form-status.error {
  background: #fff1f2;
  color: #9f1239;
}

.form-status.success {
  background: #e7faf3;
  color: #08765b;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-view.active { animation: none; }
}
