/--glow-core for the inner orb.
/--glow for the outer blur.
/--title-color for > Bravo Dark Thirty.

:root {
  --bg: #070707;
  --text: #d8d0c4;
  --muted: #7e7568;
  --frame: rgba(255, 255, 255, 0.06);
  --surface: rgba(255, 255, 255, 0.02);
  --glow: rgba(255, 124, 42, 0.24);
  --glow-core: rgba(255, 186, 120, 0.12);
  --title-color: #ff9a52;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #070707;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Source Code Pro", monospace;
  overflow: hidden;
}

.scene {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding: clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.stage {
  align-self: center;
  justify-self: start;
  width: min(460px, 72vw);
  transform: translateY(-4vh);
}

.mood-frame {
  margin: 0;
  position: relative;
  border: 1px solid var(--frame);
  padding: 10px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 20px 80px rgba(0, 0, 0, 0.45);
}

.mood-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.02);
}

.mood-glow {
  position: absolute;
  inset: auto 8% 12% auto;
  width: 32vw;
  height: 32vw;
  max-width: 420px;
  max-height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--glow-core) 0%, var(--glow) 35%, transparent 72%);
  filter: blur(46px);
  opacity: 0.95;
  pointer-events: none;
  mix-blend-mode: screen;
}

.site-title {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(16px, 3vw, 28px);
  margin: 0;
  max-width: 5ch;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-align: right;
  color: #ff9a52;
  opacity: 0.96;
}

.status {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 36px);
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.season-autumn {
  --glow: rgba(255, 124, 42, 0.24);
  --glow-core: rgba(255, 186, 120, 0.12);
}

.season-winter {
  --glow: rgba(108, 154, 255, 0.18);
  --glow-core: rgba(188, 219, 255, 0.12);
}

.season-summer {
  --glow: rgba(86, 200, 183, 0.18);
  --glow-core: rgba(255, 212, 113, 0.14);
}

@media (max-width: 760px) {
  .scene {
    grid-template-columns: 1fr;
  }

  .stage {
    width: min(100%, 420px);
    align-self: center;
  }

  .site-title {
    left: 20px;
    right: 20px;
    bottom: 84px;
    max-width: none;
    text-align: left;
    font-size: clamp(30px, 10vw, 54px);
  }

  .status {
    bottom: 22px;
  }

  .mood-glow {
    inset: auto 0 10% auto;
    width: 58vw;
    height: 58vw;
  }
}
```