:root {
  --ezrah: #53b9a8;
  --ezrah-deep: #317f71;
  --ezrah-light: #86d7c9;
  --ezrah-pale: #d9f5ef;
  --cream: #fbfaf6;
  --ink: #28413b;
  --muted: #61756f;
  --gold: #c7a969;
  --blush: #f5ebe5;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

section { scroll-margin-top: 84px; }

::selection {
  background: var(--ezrah-pale);
  color: var(--ezrah-deep);
}

.gradient-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(97, 198, 181, 0.16) 0 18%, transparent 19%),
    radial-gradient(circle at 4% 86%, rgba(134, 215, 201, 0.16) 0 13%, transparent 14%),
    linear-gradient(135deg, #effcf9 0%, #fbfaf6 58%, #f8eee9 100%);
}

.glass-nav {
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-a { width: 520px; height: 520px; top: -200px; right: -150px; background: rgba(97, 198, 181, .15); }
.hero-orb-b { width: 300px; height: 300px; bottom: -100px; left: -140px; background: rgba(134, 215, 201, .14); animation-delay: 1.5s; }
.hero-orb-c { width: 160px; height: 160px; top: 24%; right: 16%; background: rgba(199, 169, 105, .09); animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.03); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.soft-grid {
  background-image:
    linear-gradient(rgba(83,185,168,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,185,168,.055) 1px, transparent 1px);
  background-size: 36px 36px;
}

.stat-divider::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d9f5ef;
}

@media (max-width: 767px) {
  .hero-orb-a { width: 320px; height: 320px; top: -110px; right: -130px; }
  .hero-orb-b { width: 220px; height: 220px; left: -120px; bottom: -90px; }
  .stat-divider::after { display: none; }
}
