:root {
  --mint-1: #38d996;
  --mint-2: #5be8b5;
  --mint-3: #2abf87;
  --mint-4: #2fe0a1;
  --ink: #0f2f25;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  color: #ffffff;
  background: linear-gradient(180deg, #50F1AB 0%, #43C6A7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(255, 255, 255, 0.25), transparent 70%),
    radial-gradient(500px 280px at 80% 30%, rgba(15, 47, 37, 0.15), transparent 70%),
    radial-gradient(700px 400px at 50% 90%, rgba(255, 255, 255, 0.12), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
  filter: blur(0.5px);
  opacity: 0.55;
}

.orb.orb-left {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 20%;
}

.orb.orb-right {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 10%;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(6, 40, 28, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
}

.quote-frame {
  position: relative;
  padding: 48px 56px;
}

.quote-frame .corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.75);
}

.quote-frame .corner.tl {
  top: 0;
  left: 0;
  border-left: 4px solid;
  border-top: 4px solid;
}

.quote-frame .corner.tr {
  top: 0;
  right: 0;
  border-right: 4px solid;
  border-top: 4px solid;
}

.quote-frame .corner.bl {
  bottom: 0;
  left: 0;
  border-left: 4px solid;
  border-bottom: 4px solid;
}

.quote-frame .corner.br {
  bottom: 0;
  right: 0;
  border-right: 4px solid;
  border-bottom: 4px solid;
}

@media (max-width: 640px) {
  .quote-frame {
    padding: 36px 28px;
  }
}
