/**
 * Figma Glass (phone orb 50×50, x:1328 y:25)
 * Fill #D9D9D9 / 20%
 * Light −45° · intensity 80% · refraction 80 · depth 20 · dispersion 50 · frost 4 · splay 0
 */
.liquid-glass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: rgba(217, 217, 217, 0.2);
  box-shadow:
    inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.8),
    inset -3px -4px 10px rgba(11, 34, 63, 0.2);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* Light angle −45° → highlight from top-left, intensity 80% */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.18) 26%,
    transparent 55%
  );
  mix-blend-mode: overlay;
}

.liquid-glass > :not(.liquid-glass-fx):not(.liquid-glass-svg) {
  position: relative;
  z-index: 1;
}

.liquid-glass-fx {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}

/* Hero Book Now — 170×55, fill #FFFFFF / 10%, same Glass light as the orb */
.liquid-glass.btn-glass {
  background: rgba(255, 255, 255, 0.1);
}
