body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  font-family: "Bricolage Grotesque", sans-serif;
  transition: background-color 1s ease-in-out; 
}

canvas#hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-origin: center center; /* for zoom animation */
  transition: transform 0.4s ease-out; /* smooth zoom fallback */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}

p {
  font-weight: 400;
}

.progress-ring {
  transition: stroke-dashoffset 0.2s ease-out;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

/* === new section styling for the reveal part === */
#second-section {
  background: #fff;
  color: #000;
  z-index: 2;
  position: relative;
  transition: opacity 1s ease-in-out;
}
#hero-section {
  position: relative;
  z-index: 1;
}


#chat-section {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.2px;
}
.chat-message {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
