/*
 * Wasserglas storytelling — reimplementation of the Framer pinned scroll
 * section that a static snapshot cannot run. Mounted by wasserglas.js onto the
 * existing CSS `position:sticky` pin. Over the pin's scroll progress (0->1):
 * the glass drains, the ENERGIE toggle slides red->teal, and the headline
 * cross-fades from state 1 to state 2.
 */
.ht-wg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  background: #ffffff;
  overflow: hidden;
  font-family: Inter, "Inter Placeholder", sans-serif;
}

.ht-wg-eyebrow {
  position: absolute;
  top: 27%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.ht-wg-eyebrow-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1a1a1a;
}
.ht-wg-switch {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background: #e8442e;
}
.ht-wg-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
}

.ht-wg-headline {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(1120px, 92vw);
  transform: translate(-50%, -50%);
}
.ht-wg-state {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.4;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: #000000;
}
.ht-wg-state span { color: #32b5cf; }

.ht-wg-glass {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  height: 20vh;
  max-height: 200px;
}
.ht-wg-glass-img {
  height: 100%;
  width: auto;
  display: block;
}
/* Receding water surface: page-coloured cover with a soft meniscus edge. */
.ht-wg-drain {
  position: absolute;
  top: 0;
  left: -3%;
  right: -3%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff calc(100% - 14px),
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 810px) {
  .ht-wg-eyebrow { top: 20%; }
  .ht-wg-headline { top: 42%; width: 92vw; }
  .ht-wg-glass { height: 26vh; }
}
