:root {
  --hue: 290;
  --sat: 0.22;
  --glow-intensity: 0.7;
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );

}

.frutiger {
  position: relative
}
.frutiger-aero-button {
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 2px solid var(--fg);
  border-radius: 20px;
  padding: 20px;
}

/* Top Highlight Effect */
.frutiger::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}