html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 172, 222, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 93, 123, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 18%, #f8fbff 100%);
}

body > header {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

body > header + section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 172, 222, 0.14), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(45, 93, 123, 0.14), transparent 24%),
    linear-gradient(180deg, #eff8fe 0%, #ffffff 58%, #f8fbff 100%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

body > header + section::before,
body > header + section::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 9999px;
  filter: blur(72px);
  pointer-events: none;
}

body > header + section::before {
  width: 18rem;
  height: 18rem;
  top: 2rem;
  left: 4rem;
  background: rgba(0, 172, 222, 0.10);
}

body > header + section::after {
  width: 22rem;
  height: 22rem;
  right: 2rem;
  bottom: 0;
  background: rgba(45, 93, 123, 0.10);
}

body > header + section > div {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hover-card {
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.10);
  border-color: rgba(0, 172, 222, 0.35) !important;
}

.page-shell {
  position: relative;
}

.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 172, 222, 0.05), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(45, 93, 123, 0.05), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

/* Consistent Section Padding */
@media (min-width: 768px) {
  .md\:py-20,
  .md\:py-16,
  .md\:py-12 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}