html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(22, 55, 90, 1) 0%,
    rgba(22, 55, 90, 0.82) 55%,
    rgba(22, 55, 90, 0) 100%
  );
}

.ambient-brand {
  background-color: rgba(184, 222, 239, 0.2);
}

.ambient-accent {
  background-color: rgba(210, 230, 165, 0.2);
}

.offer-sparkle {
  color: rgba(175, 216, 114, 0.3);
}

.iwave-badge {
  border-color: rgba(38, 127, 190, 0.6);
  background-color: rgba(26, 83, 127, 0.45);
}

.iwave-glyph {
  color: rgba(38, 127, 190, 0.4);
}

.brand-soft-shadow {
  box-shadow: 0 28px 72px rgba(184, 222, 239, 0.5);
}

.brand-deep-shadow {
  box-shadow: 0 18px 40px rgba(22, 55, 90, 0.2);
}

.brand-button-shadow {
  box-shadow: 0 18px 34px rgba(184, 222, 239, 0.7);
}

.brand-focus:focus {
  border-color: #2f90cf;
  outline: none;
  box-shadow: 0 0 0 2px rgba(47, 144, 207, 0.2);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

[data-reveal].is-visible {
  animation: reveal-up 600ms ease both;
}

.lucide {
  stroke-width: 2.1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
