html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  background: #fbf5ea;
  color: #1a1208;
}
.font-display {
  font-family: "Fraunces", serif;
}
.hero-grad {
  background:
    radial-gradient(
      1200px 600px at 90% -10%,
      rgba(255, 177, 77, 0.55),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at -10% 100%,
      rgba(63, 125, 52, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #fff7ec 0%, #fbf5ea 100%);
}
.leaf-grad {
  background: linear-gradient(135deg, #2f6126 0%, #1f4419 100%);
}
.glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 236, 0.7);
}
.marquee {
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker {
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.slide {
  display: none;
}
.slide.active {
  display: block;
  animation: fade 0.8s ease both;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dot {
  transition: all 0.3s;
}
.dot.active {
  width: 28px;
  background: #d85f00;
}
.reveal-mask {
  clip-path: inset(0 100% 0 0);
  animation: mask 1.1s 0.2s ease forwards;
}
@keyframes mask {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.hover-lift {
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
}
details[open] summary .chev {
  transform: rotate(180deg);
}
.chev {
  transition: transform 0.3s;
}
/* Modal */
.modal {
  display: none;
}
.modal.open {
  display: flex;
}
/* Investor dropdown */
.ir-wrap:hover .ir-menu,
.ir-wrap:focus-within .ir-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.ir-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.2s ease;
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 95, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(216, 95, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 95, 0, 0);
  }
}
.pulse-ring {
  animation: pulseRing 2s infinite;
}
