/* ==========================================================================
   Gminzo — Kleine Spiele. Grosse Revanche.
   Design tokens live on :root. No hex values are used anywhere below :root;
   every colour is a token, a derived token, or an rgba() tint of a token.
   ========================================================================== */

/* Self-hosted variable fonts (SIL Open Font License), latin subset */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/Outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/Manrope-latin.woff2") format("woff2");
}

:root {
  /* --- Brand tokens (exact, from the brief) --------------------------- */
  --bg:       #141812;  /* Basis Dunkelgrün-Schwarz */
  --deep:     #0B1009;  /* Tiefster Hintergrund */
  --lime:     #DDFC78;  /* Hauptakzent, Logo-G, Buttons */
  --white:    #F8FBEF;  /* Haupttext */
  --muted:    #B6BDAA;  /* Sekundärtext */
  --olive:    #252C1C;  /* Karten, Panels */
  --line:     #59633C;  /* Konturen, Rahmen und Linien, nie für Text */
  --blue:     #39A9F5;  /* Bot 1 */
  --orange:   #F79332;  /* Bot 2 */
  --lavender: #AE75E5;  /* Bot 3 */
  --gold:     #F5CB4D;  /* Krone, Sieg, Skin-Badge */
  --red:      #F45B69;  /* Nur Fehler und Warnungen */

  /* --- Derived shades, taken verbatim from the brief's snippets -------- */
  --bg-grad-top:   #171C14;
  --bg-grad-mid:   #10150E;
  --field-top:     #0A0E08;
  --field-bottom:  #0D120A;
  --placeholder:   #5C664A;
  --ink:           #131810;  /* dark arrow on lime */
  --pupil:         #161B12;
  --figure-light:  #F0FFB4;
  --figure-mid:    #C2E85C;
  --figure-dark:   #A8D043;
  --crown-light:   #FFE9A3;
  --crown-dark:    #E0A81F;

  /* --- Type ------------------------------------------------------------ */
  --font-display: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* --- Motion ---------------------------------------------------------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 150ms;
  --t-page: 180ms;
}

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

html {
  color-scheme: dark;
  background: var(--deep);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(90% 55% at 50% -8%, rgba(221, 252, 120, 0.10), transparent 62%),
    radial-gradient(120% 80% at 50% 120%, rgba(89, 99, 60, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-grad-top) 0%, var(--bg-grad-mid) 55%, var(--deep) 100%);
  background-attachment: scroll;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Background overlays (decorative, pointer-events none)
   -------------------------------------------------------------------------- */

.grid {
  position: fixed;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(89, 99, 60, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 99, 60, 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(75% 60% at 50% 42%, #000 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 60% at 50% 42%, #000 8%, transparent 78%);
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Page frame
   -------------------------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 44px) 20px 20px;
  text-align: center;
}

.page__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-block: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Wordmark
   -------------------------------------------------------------------------- */

.logo {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}

.logo--small {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.logo__g {
  color: var(--lime);
  text-shadow: 0 0 40px rgba(221, 252, 120, 0.55), 0 0 14px rgba(221, 252, 120, 0.40);
}

.logo--small .logo__g {
  text-shadow: 0 0 22px rgba(221, 252, 120, 0.45), 0 0 8px rgba(221, 252, 120, 0.35);
}

a.logo:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
  border-radius: 4px;
}

.claim {
  margin: 13px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Coming-soon label
   -------------------------------------------------------------------------- */

.status {
  margin: 16px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(89, 99, 60, 0.9);
  background: linear-gradient(180deg, rgba(37, 44, 28, 0.9), rgba(20, 24, 18, 0.9));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(221, 252, 120, 0.18), 0 0 10px rgba(221, 252, 120, 0.9);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;    box-shadow: 0 0 0 3px rgba(221, 252, 120, 0.18), 0 0 10px rgba(221, 252, 120, 0.9); }
  50%      { opacity: 0.55; box-shadow: 0 0 0 6px rgba(221, 252, 120, 0.08), 0 0 4px rgba(221, 252, 120, 0.5); }
}

/* --------------------------------------------------------------------------
   Board (Screen 1)
   -------------------------------------------------------------------------- */

.board {
  position: relative;
  width: 100%;
  max-width: min(70%, 760px);
  margin: 26px auto 0;
}

.board::before {
  content: "";
  position: absolute;
  inset: 6% 4% 8%;
  background: radial-gradient(closest-side, rgba(221, 252, 120, 0.16), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.board__svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 30rem);
  mask-image: radial-gradient(118% 104% at 50% 45%, #000 48%, transparent 86%);
  -webkit-mask-image: radial-gradient(118% 104% at 50% 45%, #000 48%, transparent 86%);
}

/* Short, soft sheen where the slab meets the ground; sits on the board's lower edge */
.board__glow {
  position: absolute;
  left: 50%;
  bottom: 9.5%;
  width: 40%;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(221, 252, 120, 0.28), transparent 100%);
  filter: blur(7px);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Primary button (Screen 1)
   -------------------------------------------------------------------------- */

.cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(221, 252, 120, 0.85);
  background: linear-gradient(180deg, rgba(221, 252, 120, 0.13), rgba(221, 252, 120, 0.04));
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 26px rgba(221, 252, 120, 0.20),
    0 10px 26px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: box-shadow var(--t-fast) ease, transform var(--t-fast) ease, background var(--t-fast) ease;
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(221, 252, 120, 0.18), rgba(221, 252, 120, 0.06));
  box-shadow:
    0 0 38px rgba(221, 252, 120, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.hint {
  margin: 15px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer (all pages)
   -------------------------------------------------------------------------- */

.legal {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
}

.legal a {
  color: var(--muted);
  text-decoration: none;
  text-underline-offset: 0.2em;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color var(--t-fast) ease;
}

.legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

.legal a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  color: var(--white);
}

.legal__sep {
  margin: 0 8px;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Sign-up form (Screen 2)
   -------------------------------------------------------------------------- */

.signup {
  width: min(100%, 440px);
  margin: 34px auto 0;
}

.field {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 7px 7px 7px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--field-top), var(--field-bottom));
  border: 1.5px solid rgba(89, 99, 60, 0.95);
  box-shadow:
    0 0 0 5px rgba(221, 252, 120, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.field:focus-within {
  border-color: var(--lime);
  box-shadow:
    0 0 0 5px rgba(221, 252, 120, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.field.is-invalid {
  border-color: var(--red);
}

.field.is-invalid:focus-within {
  box-shadow:
    0 0 0 5px rgba(244, 91, 105, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.field__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 12px 0 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px; /* 16px keeps iOS from zooming into the field */
  outline: none;
}

.field__input::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.signup.is-submitting .field__input {
  color: var(--muted);
}

.field__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(221, 252, 120, 0.35), 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: box-shadow var(--t-fast) ease, transform var(--t-fast) ease;
}

.field__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(221, 252, 120, 0.5), 0 6px 14px rgba(0, 0, 0, 0.4);
}

.field__submit:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.field__submit:disabled {
  cursor: default;
  transform: none;
}

.field__submit svg {
  display: block;
}

.field__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.2px solid rgba(19, 24, 16, 0.25);
  border-top-color: var(--ink);
  animation: spin 800ms linear infinite;
}

.signup.is-submitting .field__arrow { display: none; }
.signup.is-submitting .field__spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.field__messages {
  min-height: 20px;
  margin-top: 8px;
}

.field__error {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  color: var(--red);
}

/* Without JavaScript the server redirects to /anmelden#fehler-…; :target reveals the matching message */
.field__error--static {
  display: none;
}

.field__error--static:target {
  display: block;
}

.signup:has(.field__error--static:target) .field {
  border-color: var(--red);
}

.field__note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Honeypot: invisible to people, present for bots */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back {
  display: inline-block;
  margin-top: 22px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

.back:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.back:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  color: var(--white);
}

/* Blurred bot capsules behind the form (Screen 2 only) */
.bots {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bot {
  --bot-h: 55px;
  position: absolute;
  width: calc(var(--bot-h) * 0.64);
  height: var(--bot-h);
  border-radius: 999px;
  opacity: 0.25;
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.22), inset 0 6px 10px rgba(255, 255, 255, 0.22);
}

.bot::before,
.bot::after {
  content: "";
  position: absolute;
  top: 30%;
  width: 20%;
  height: 15%;
  border-radius: 50%;
  background: var(--white);
}

.bot::before { left: 22%; }
.bot::after  { right: 22%; }

/* Outer edge zones only: never near logo, field or text */
.bot--orange {
  left: 7%;
  top: 16%;
  background: var(--orange);
  filter: blur(3px);
  animation: float 7s ease-in-out infinite;
}

.bot--lavender {
  right: 7%;
  top: 30%;
  --bot-h: 50px;
  background: var(--lavender);
  filter: blur(3.6px);
  animation: float 9s ease-in-out -3s infinite;
}

.bot--blue {
  left: 12%;
  bottom: 14%;
  --bot-h: 46px;
  background: var(--blue);
  filter: blur(3.2px);
  animation: float 6s ease-in-out -1.5s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   Confirmation (Screen 3)
   -------------------------------------------------------------------------- */

.hero-figure {
  position: relative;
  width: 220px;
  height: 236px;
  margin: 34px auto 0;
}

.hero-figure__light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(221, 252, 120, 0.20), transparent 70%);
  pointer-events: none;
}

.hero-figure__ring {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 158px;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(221, 252, 120, 0.35);
  box-shadow: 0 0 24px rgba(221, 252, 120, 0.22);
  pointer-events: none;
}

.figure {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 98px;
  height: 152px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(158deg, var(--figure-light), var(--figure-mid) 62%, var(--figure-dark));
  box-shadow:
    inset 0 -18px 34px rgba(0, 0, 0, 0.20),
    inset 0 14px 24px rgba(255, 255, 255, 0.30),
    0 0 60px rgba(221, 252, 120, 0.32);
  animation: rise 300ms var(--ease-out) both, breathe 4s ease-in-out 300ms infinite;
}

.figure__eyes {
  position: absolute;
  top: 34%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 13%;
}

.figure__eye {
  position: relative;
  width: 24px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
}

.figure__eye::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--pupil);
}

.crown {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 112px;
  height: 46px;
  transform: translateX(-50%);
}

@keyframes rise {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -4px); }
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confetti span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: 50%;
  opacity: var(--o, 0.6);
  transform: translate(var(--dx), var(--dy));
  animation: scatter 600ms var(--ease-out) both;
}

@keyframes scatter {
  from { opacity: 0; transform: translate(0, 0); }
  to   { opacity: var(--o, 0.6); transform: translate(var(--dx), var(--dy)); }
}

.thanks__title {
  margin: 26px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.thanks__text {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--white);
}

.thanks__doi {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 203, 77, 0.16), rgba(245, 203, 77, 0.05));
  border: 1px solid rgba(245, 203, 77, 0.4);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(245, 203, 77, 0.14);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge svg {
  display: block;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.page--legal {
  text-align: left;
  align-items: stretch;
  max-width: 680px;
}

.page--legal .logo {
  align-self: center;
}

.legal-text {
  margin-top: 34px;
  font-size: 14px;
  color: var(--muted);
}

.legal-text h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.legal-text h2 {
  margin: 28px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.legal-text p,
.legal-text li {
  margin: 0 0 10px;
}

.legal-text a {
  color: var(--white);
  text-underline-offset: 0.2em;
}

.legal-text a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 2px;
}

.placeholder {
  display: inline-block;
  padding: 1px 6px;
  border: 1px dashed var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.page--legal .back {
  align-self: center;
}

/* --------------------------------------------------------------------------
   Page transitions
   -------------------------------------------------------------------------- */

.js .page {
  opacity: 0;
  transform: translateY(8px);
}

.js.is-ready .page {
  opacity: 1;
  transform: none;
  transition: opacity var(--t-page) ease-out, transform var(--t-page) var(--ease-out);
}

.js.is-leaving .page {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) ease-in, transform var(--t-fast) ease-in;
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .pulse,
  .bot--orange,
  .bot--lavender,
  .bot--blue,
  .figure,
  .confetti span,
  .field__spinner {
    animation: none;
  }

  .figure {
    opacity: 1;
    transform: translateX(-50%);
  }

  .field__spinner {
    border-top-color: rgba(19, 24, 16, 0.25);
  }

  .js .page,
  .js.is-ready .page,
  .js.is-leaving .page {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .field,
  .field__submit,
  .back,
  .legal a {
    transition: none;
  }

  .button:hover,
  .field__submit:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .logo {
    font-size: 40px;
  }

  .logo--small {
    font-size: 26px;
  }

  .board {
    max-width: 100%;
  }

  .board__svg {
    max-height: none;
  }

  .cta {
    margin-top: 24px;
  }

  .thanks__title {
    font-size: 22px;
  }

  .hero-figure {
    width: 200px;
    height: 200px;
  }

  .figure {
    width: 78px;
    height: 120px;
  }

  .figure__eye {
    width: 19px;
    height: 22px;
  }

  .crown {
    width: 88px;
    height: 36px;
    top: -28px;
  }

  .hero-figure__light {
    width: 190px;
    height: 190px;
  }

  .hero-figure__ring {
    width: 132px;
    height: 30px;
  }

  /* One small figure at the bottom is enough on phones */
  .bot { --bot-h: 38px; }
  .bot--orange,
  .bot--lavender { display: none; }
  .bot--blue { left: 10%; bottom: 12%; }
}
