/* Layout */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Spacing */
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.py-16 { padding-block: 4rem; }

/* Typography */
.text-xl { font-size: 1.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.font-bold { font-weight: 700; }

/* Colors */
.text-white { color: #fff; }
.bg-black { background: #000; }

/* Flex */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Anim helpers */
.will-change { will-change: transform, opacity; }


/* header */
/* Default (top of page) */
.site-header {
  background: transparent !important;
    backdrop-filter: blur(0);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, height 0.3s ease;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Sticky state */
.site-header.elementor-sticky--active {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(14px);
}

/* Ensure hero content stays above canvas */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #0E1117;
}

#canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

/* Reveal layer */
/* ------------------------ Responsive ------------------------ */
@media (min-width: 768px) {

}
