:root {
  --guide-spring: cubic-bezier(.22, 1.42, .36, 1);
  --guide-soft: cubic-bezier(.22, .8, .32, 1);
}

/* Point d'invocation dans le hero ---------------------------------------- */
.section--hero .hero__inner {
  transform: translateY(0);
  padding-bottom: clamp(104px, 12vh, 122px);
  transition: transform .72s var(--guide-soft), padding-top .72s var(--guide-soft);
}

.mascot-summon.is-available + .hero__inner {
  transform: none;
  padding-top: clamp(330px, 40vh, 360px);
}

.section--hero:has(.mascot-summon.is-available) {
  align-items: flex-start;
}

.mascot-summon {
  position: absolute;
  z-index: 3;
  top: clamp(28px, 6vh, 58px);
  left: 50%;
  width: min(300px, 32vw);
  height: 220px;
  border: 0;
  color: var(--c-text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -18px, 0) scale(.68);
  transform-origin: center 72%;
  transition: opacity .22s ease, visibility 0s linear .4s, transform .55s var(--guide-spring);
  -webkit-tap-highlight-color: transparent;
}

.mascot-summon.is-ready.is-available {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition-delay: 0s;
}

.mascot-summon:focus-visible {
  outline: none;
}

.mascot-summon:focus-visible .mascot-summon__portal {
  border-color: rgba(216, 204, 255, .68);
  box-shadow: 0 0 42px rgba(139,92,246,.38), inset 0 0 18px rgba(216,204,255,.2);
}

.mascot-summon__portal {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 160px;
  height: 40px;
  border: 1px solid rgba(167, 139, 250, .27);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,.27), rgba(139,92,246,.05) 48%, transparent 72%);
  box-shadow: 0 0 34px rgba(139,92,246,.22), inset 0 0 15px rgba(196,181,253,.12);
  transform: translateX(-50%);
  animation: mascot-portal-pulse 2.8s ease-in-out infinite;
}

.mascot-summon__portrait {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-origin: center 75%;
  animation: mascot-summon-idle 3.6s ease-in-out infinite;
  transition: filter .25s ease;
}

.mascot-summon__portrait img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  max-width: none;
  height: 310px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.5)) drop-shadow(0 0 8px rgba(139,92,246,.18));
}

/* Sourire qui se dessine au survol/focus de Simbi avant son invocation :
   calque séparé (mouth.png, déjà utilisé par l'intro) superposé au portrait.
   Doit toujours faire la même taille que .mascot-summon__portrait img
   ci-dessus (310px desktop, 260px mobile ci-dessous) : un calque resté à
   une taille fixe pendant que le portrait change de taille produit un
   sourire visiblement disproportionné. transform-origin calé sur le centre
   réel du sourire dans le fichier (mesuré à 50,9%/68%, voir intro-sequence.css). */
.mascot-summon__portrait::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 310px;
  background: url("/assets/intro-animation/mouth.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scaleX(.38) scaleY(.72);
  transform-origin: 50.9% 68%;
  transition: opacity .16s ease, transform .46s cubic-bezier(.22, 1.42, .36, 1);
}
.mascot-summon:hover .mascot-summon__portrait::after,
.mascot-summon:focus-visible .mascot-summon__portrait::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mascot-summon:hover .mascot-summon__portrait,
.mascot-summon:focus-visible .mascot-summon__portrait {
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(167,139,250,.33));
}

.mascot-summon:active .mascot-summon__portrait {
  animation: none;
  transform: translateY(7px) scale(1.1, .76);
}

.mascot-summon__spark {
  position: absolute;
  z-index: 2;
  color: #d9ccff;
  text-shadow: 0 0 10px rgba(167,139,250,.85);
  pointer-events: none;
  animation: mascot-spark 2.4s ease-in-out infinite;
}
.mascot-summon__spark--one { top: 32px; right: 58px; font-size: 14px; }
.mascot-summon__spark--two { top: 87px; left: 55px; font-size: 10px; animation-delay: -1.1s; }

.mascot-summon__tooltip {
  position: absolute;
  top: 49%;
  left: calc(50% + 68px);
  bottom: auto;
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 99px;
  color: #e4def3;
  background: rgba(9,9,16,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.38);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .035em;
  opacity: 0;
  transform: translate(10px, -50%) scale(.86);
  transition: opacity .2s ease, transform .42s var(--guide-spring);
  pointer-events: none;
}

.mascot-summon:hover .mascot-summon__tooltip,
.mascot-summon:focus-visible .mascot-summon__tooltip {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.mascot-summon.is-departing {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 12px, 0) scale(.28, .82) rotate(8deg);
  transition: opacity .22s ease .08s, transform .36s cubic-bezier(.6,-.18,.72,.32);
}

.mascot-summon.is-returning-in .mascot-summon__portrait {
  animation: mascot-return-pop .72s var(--guide-spring) both;
}

.mascot-summon.is-refusing .mascot-summon__portrait {
  animation: mascot-mobile-refusal .62s cubic-bezier(.36,.07,.19,.97) both;
}

.mascot-summon.is-refusing .mascot-summon__tooltip {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

/* Compagnon vivant ------------------------------------------------------- */
.mascot-guide {
  --guide-look-x: 0px;
  --guide-look-y: 0px;
  position: fixed;
  z-index: 175;
  right: 62px;
  bottom: 50px;
  width: 192px;
  height: 186px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(20px, 34px, 0) scale(.72);
  transform-origin: right bottom;
  transition: opacity .25s ease, visibility 0s linear .5s, transform .58s var(--guide-spring);
}

.mascot-guide.is-ready:not(.is-dormant):not(.is-returning) {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.mascot-guide.is-dormant {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mascot-guide.is-returning {
  opacity: 0;
  visibility: visible;
  transform: translate3d(28px, 22px, 0) scale(.35, .76) rotate(7deg);
  transition: opacity .24s ease .1s, transform .4s cubic-bezier(.55,-.2,.7,.3);
}

.mascot-guide__character {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 192px;
  height: 174px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--c-text);
  pointer-events: auto;
  isolation: isolate;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mascot-guide.is-saying-goodbye .mascot-guide__dismiss,
.mascot-guide.is-saying-goodbye .mascot-guide__close {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mascot-guide.is-saying-goodbye .mascot-guide__character {
  cursor: default;
}

.mascot-guide__character:focus-visible {
  outline: 2px solid var(--c-accent-hi);
  outline-offset: 4px;
}

/* Halo elliptique : toujours centré sous la silhouette, quelle que soit l'expression. */
.mascot-guide__aura {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -18px;
  width: 134px;
  height: 32px;
  border: 1px solid rgba(167, 139, 250, .22);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,.27), rgba(139,92,246,.06) 48%, transparent 72%);
  box-shadow: 0 0 35px rgba(139,92,246,.19), inset 0 0 16px rgba(196,181,253,.1);
  transform: translateX(-50%);
  animation: mascot-ground-aura 3.4s ease-in-out infinite;
}

.mascot-guide__float {
  position: absolute;
  inset: 0;
  transform-origin: 50% 83%;
  animation: mascot-float 4.6s ease-in-out infinite;
  will-change: transform;
}

.mascot-guide__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translate3d(var(--guide-look-x), var(--guide-look-y), 0);
  transition: transform .75s var(--guide-soft), filter .3s ease;
  will-change: transform;
}

.mascot-guide__stage img {
  width: 320px;
  max-width: none;
  height: 320px;
  object-fit: contain;
  transform: translate(-55px, -30px);
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 13px 13px rgba(0,0,0,.48)) drop-shadow(0 0 9px rgba(139,92,246,.15));
}

.mascot-guide__character:hover .mascot-guide__stage {
  filter: brightness(1.1) drop-shadow(0 0 13px rgba(167,139,250,.28));
}

/* Pointer down : la mascotte reste aplatie tant que le bouton est maintenu. */
.mascot-guide.is-pressed .mascot-guide__float {
  animation: none;
  transform: translateY(14px) scale(1.13, .68);
  transition: transform .14s cubic-bezier(.3,.1,.5,1);
}

/* Pointer up : elle libère ensuite toute l'énergie accumulée. */
.mascot-guide.is-releasing .mascot-guide__float {
  animation: mascot-release-bounce .74s var(--guide-spring) both;
}

.mascot-guide.is-summoning .mascot-guide__character {
  animation: mascot-live-arrival .78s var(--guide-spring) both;
}

.mascot-guide__spark {
  position: absolute;
  z-index: 3;
  color: #c9b7ff;
  text-shadow: 0 0 10px rgba(167,139,250,.75);
  pointer-events: none;
  animation: mascot-spark 2.7s ease-in-out infinite;
}
.mascot-guide__spark--one { right: 22px; top: 20px; font-size: 14px; }
.mascot-guide__spark--two { left: 15px; top: 64px; font-size: 24px; animation-delay: -.8s; }
.mascot-guide__spark--three { right: 15px; bottom: 45px; font-size: 11px; animation-delay: -1.6s; }

.mascot-guide__bubble {
  position: absolute;
  right: 154px;
  bottom: 91px;
  width: min(320px, calc(100vw - 240px));
  padding: 19px 21px 17px;
  border: 1px solid rgba(167,139,250,.36);
  border-radius: 13px 13px 4px 13px;
  background: linear-gradient(145deg, rgba(23,23,42,.98), rgba(12,12,24,.98));
  box-shadow: 0 22px 65px rgba(0,0,0,.46), 0 0 34px rgba(139,92,246,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(20px, 15px, 0) scale(.72) rotate(2deg);
  transform-origin: right bottom;
  transition: opacity .18s ease, visibility 0s linear .45s, transform .55s var(--guide-spring);
  pointer-events: none;
}

.mascot-guide__bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 17px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(167,139,250,.36);
  border-right: 1px solid rgba(167,139,250,.36);
  background: #0d0d19;
  transform: rotate(45deg);
}

.mascot-guide.is-bubble-open .mascot-guide__bubble {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.mascot-guide__identity { margin: 0 30px 9px 0; color: var(--c-accent-hi); font-size: .61rem; font-weight: 750; letter-spacing: .14em; }
.mascot-guide__identity span { display: inline-block; margin-right: 5px; animation: mascot-identity-star 2.2s ease-in-out infinite; }
.mascot-guide__message { margin: 0; color: var(--c-text); font-size: .9rem; font-weight: 520; line-height: 1.55; }

.mascot-guide__close {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 27px;
  height: 27px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1;
  transition: color .2s, border-color .2s, background .2s, transform .35s var(--guide-spring);
}
.mascot-guide__close:hover { color: #fff; border-color: var(--c-border-hi); background: var(--c-accent-dim); transform: rotate(8deg) scale(1.08); }

/* Contrôle discret, à l'extérieur du personnage : aucun texte sur l'illustration. */
.mascot-guide__dismiss {
  position: absolute;
  z-index: 5;
  top: 58px;
  right: -28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167,139,250,.24);
  border-radius: 50%;
  color: #aaa3bb;
  background: rgba(9,9,16,.86);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  font-size: 1rem;
  line-height: 1;
  pointer-events: auto;
  opacity: .5;
  transition: opacity .2s, color .2s, border-color .2s, background .2s, transform .35s var(--guide-spring);
}

.mascot-guide__dismiss:hover,
.mascot-guide__dismiss:focus-visible {
  opacity: 1;
  color: #fff;
  border-color: var(--c-border-hi);
  background: rgba(34,29,58,.96);
  transform: rotate(7deg) scale(1.1);
}

.mascot-guide__dismiss-label {
  position: absolute;
  top: 50%;
  right: 36px;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 99px;
  color: #ded8eb;
  background: rgba(9,9,16,.94);
  font-size: .61rem;
  font-weight: 650;
  opacity: 0;
  transform: translate(7px, -50%) scale(.9);
  transition: opacity .18s ease, transform .35s var(--guide-spring);
  pointer-events: none;
}

.mascot-guide__dismiss:hover .mascot-guide__dismiss-label,
.mascot-guide__dismiss:focus-visible .mascot-guide__dismiss-label {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.mascot-guide__stage.is-changing { animation: mascot-expression-out .17s cubic-bezier(.55,-.25,.72,.35) both; }
.mascot-guide__stage.is-entering { animation: mascot-expression-in .68s var(--guide-spring) both; }
.mascot-guide__stage.is-nudging { animation: mascot-nudge .75s var(--guide-spring); }

@keyframes mascot-summon-idle {
  0%, 100% { transform: translateY(3px) rotate(-.7deg) scale(1); }
  48% { transform: translateY(-5px) rotate(.8deg) scale(1.025); }
  72% { transform: translateY(-2px) rotate(.2deg) scale(1.01); }
}
@keyframes mascot-portal-pulse {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(.86); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.09); }
}
@keyframes mascot-return-pop {
  0% { transform: translateY(-13px) scale(.35, 1.18); opacity: 0; }
  42% { transform: translateY(7px) scale(1.13, .76); opacity: 1; }
  70% { transform: translateY(-4px) scale(.94, 1.07); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes mascot-mobile-refusal {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  14% { transform: translate3d(-8px, 1px, 0) rotate(-3deg); }
  29% { transform: translate3d(8px, -1px, 0) rotate(3deg); }
  44% { transform: translate3d(-6px, 0, 0) rotate(-2deg); }
  59% { transform: translate3d(6px, 1px, 0) rotate(2deg); }
  74% { transform: translate3d(-3px, 0, 0) rotate(-1deg); }
  88% { transform: translate3d(2px, 0, 0) rotate(.7deg); }
}
@keyframes mascot-live-arrival {
  0% { transform: translateY(34px) scale(.35, 1.25) rotate(8deg); opacity: 0; }
  38% { transform: translateY(8px) scale(1.17, .72) rotate(-3deg); opacity: 1; }
  62% { transform: translateY(-13px) scale(.91, 1.12) rotate(2deg); }
  82% { transform: translateY(3px) scale(1.04, .96) rotate(-.6deg); }
  100% { transform: translateY(0) scale(1) rotate(0); }
}
@keyframes mascot-float {
  0%, 100% { transform: translate3d(0, 2px, 0) rotate(-.8deg); }
  48% { transform: translate3d(0, -8px, 0) rotate(1deg); }
  70% { transform: translate3d(0, -5px, 0) rotate(.25deg); }
}
@keyframes mascot-ground-aura {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(.88); }
  50% { opacity: .94; transform: translateX(-50%) scale(1.08); }
}
@keyframes mascot-spark {
  0%, 100% { opacity: .18; transform: translateY(4px) scale(.65) rotate(-8deg); }
  48% { opacity: .9; transform: translateY(-4px) scale(1.08) rotate(7deg); }
}
@keyframes mascot-identity-star { 0%,100% { transform: scale(.75) rotate(0); opacity: .5; } 50% { transform: scale(1.15) rotate(15deg); opacity: 1; } }
@keyframes mascot-expression-out {
  0% { transform: translate3d(var(--guide-look-x),var(--guide-look-y),0) scale(1) rotate(0); opacity: 1; }
  55% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) + 5px),0) scale(1.12,.72) rotate(-4deg); opacity: .9; }
  100% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) - 12px),0) scale(.38,1.18) rotate(9deg); opacity: 0; }
}
@keyframes mascot-expression-in {
  0% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) - 24px),0) scale(.45,1.3) rotate(-9deg); opacity: 0; }
  38% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) + 7px),0) scale(1.16,.78) rotate(3deg); opacity: 1; }
  62% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) - 5px),0) scale(.92,1.08) rotate(-1deg); }
  82% { transform: translate3d(var(--guide-look-x),calc(var(--guide-look-y) + 2px),0) scale(1.04,.97) rotate(.4deg); }
  100% { transform: translate3d(var(--guide-look-x),var(--guide-look-y),0) scale(1) rotate(0); }
}
@keyframes mascot-release-bounce {
  0% { transform: translateY(14px) scale(1.13, .68); }
  30% { transform: translateY(-20px) scale(.88, 1.16) rotate(2.5deg); }
  55% { transform: translateY(5px) scale(1.07, .92) rotate(-1.2deg); }
  73% { transform: translateY(-7px) scale(.96, 1.06) rotate(.5deg); }
  88% { transform: translateY(2px) scale(1.02, .98); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes mascot-nudge { 0%,100% { transform: translate3d(var(--guide-look-x),var(--guide-look-y),0) rotate(0); } 35% { transform: translate3d(calc(var(--guide-look-x) - 7px),var(--guide-look-y),0) rotate(-5deg); } 68% { transform: translate3d(calc(var(--guide-look-x) + 4px),var(--guide-look-y),0) rotate(3deg); } }

@media (max-width: 1050px) and (min-width: 769px) {
  .mascot-summon { top: 34px; transform: translate3d(-50%, -12px, 0) scale(.78); }
  .mascot-summon.is-ready.is-available { transform: translate3d(-50%, 0, 0) scale(.78); }
  .mascot-guide { right: 48px; bottom: 46px; }
  .mascot-guide.is-ready:not(.is-dormant):not(.is-returning) { transform: scale(.82); }
  .mascot-guide__bubble { width: 320px; }
}

@media (max-width: 768px) {
  .mascot-summon.is-available + .hero__inner {
    transform: none;
    padding-top: clamp(292px, 37vh, 326px);
  }

  html:not(.simbi-mobile-enabled) .mascot-guide { display: none !important; }

  html.simbi-mobile-enabled .mascot-guide {
    display: block;
    right: 12px;
    bottom: 16px;
    width: calc(100vw - 24px);
    height: 138px;
  }

  html.simbi-mobile-enabled .mascot-guide__character {
    width: 142px;
    height: 130px;
  }

  html.simbi-mobile-enabled .mascot-guide__stage img {
    width: 236px;
    height: 236px;
    transform: translate(-40px, -22px);
  }

  html.simbi-mobile-enabled .mascot-guide__aura {
    bottom: -12px;
    width: 96px;
    height: 24px;
  }

  html.simbi-mobile-enabled .mascot-guide__spark--one { right: 15px; top: 12px; }
  html.simbi-mobile-enabled .mascot-guide__spark--two { left: 10px; top: 47px; font-size: 18px; }
  html.simbi-mobile-enabled .mascot-guide__spark--three { right: 10px; bottom: 32px; }

  html.simbi-mobile-enabled .mascot-guide__dismiss {
    top: 26px;
    right: -2px;
  }

  html.simbi-mobile-enabled .mascot-guide__dismiss-label {
    display: none;
  }

  html.simbi-mobile-enabled .mascot-guide__bubble {
    position: absolute;
    right: 122px;
    bottom: 10px;
    width: min(320px, calc(100vw - 146px));
    max-height: min(160px, calc(100dvh - 32px));
    padding: 15px 17px 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 13px 4px 13px 13px;
    transform-origin: right center;
    scrollbar-width: thin;
  }

  html.simbi-mobile-enabled .mascot-guide__identity {
    margin-bottom: 7px;
    font-size: .56rem;
  }

  html.simbi-mobile-enabled .mascot-guide__message {
    font-size: clamp(.76rem, 3.25vw, .86rem);
    line-height: 1.45;
  }

  .mascot-summon {
    display: block;
    top: calc(var(--navbar-height) + 8px);
    width: 240px;
    height: 180px;
  }

  .mascot-summon__portrait img {
    width: 260px;
    height: 260px;
  }

  .mascot-summon__portrait::after {
    width: 260px;
    height: 260px;
  }

  .mascot-summon__portal {
    bottom: 0;
    width: 132px;
    height: 32px;
  }

  .mascot-summon__spark--one { top: 25px; right: 42px; }
  .mascot-summon__spark--two { top: 72px; left: 41px; }

  .mascot-summon__tooltip {
    top: auto;
    left: 50%;
    bottom: -18px;
    max-width: 225px;
    text-align: center;
    white-space: normal;
    transform: translate(-50%, 8px) scale(.86);
  }

  .mascot-summon:hover .mascot-summon__tooltip,
  .mascot-summon:focus-visible .mascot-summon__tooltip {
    opacity: 0;
    transform: translate(-50%, 8px) scale(.86);
  }

  .mascot-summon.is-refusing .mascot-summon__tooltip {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 520px) {
  html.simbi-mobile-enabled .mascot-guide__bubble {
    right: 116px;
    width: min(320px, calc(100vw - 140px));
  }

  .mascot-summon {
    top: calc(var(--navbar-height) + 6px);
    width: 220px;
    height: 166px;
  }

  .mascot-summon__portrait img {
    width: 232px;
    height: 232px;
  }

  .mascot-summon__portrait::after {
    width: 232px;
    height: 232px;
  }

  .mascot-summon__portal {
    bottom: 3px;
    width: 120px;
    height: 29px;
  }

  .mascot-summon.is-available + .hero__inner {
    transform: none;
    padding-top: calc(var(--navbar-height) + 218px);
  }
}

@media (max-height: 560px) and (min-width: 769px) {
  .mascot-guide,
  .mascot-summon { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-guide, .mascot-guide *, .mascot-guide *::before, .mascot-guide *::after,
  .mascot-summon, .mascot-summon *, .mascot-summon *::before, .mascot-summon *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
