:root {
  --bg: #f9f5ee;
  --bg-alt: #fffdf8;
  --ink: #1b1714;
  --accent: #f05f30;
  --accent-2: #0b6f74;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(145deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.38;
  pointer-events: none;
}

.bg-orb-one {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -90px;
  right: -90px;
}

.bg-orb-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 72%);
  bottom: -140px;
  left: -130px;
}

.stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 16vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.motto {
  margin: 0.7rem 0 0;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(27, 23, 20, 0.75);
}
