:root {
  --ink: #0b1320;
  --ink-2: #142033;
  --foam: #f4fff0;
  --lime: #c8ff3d;
  --coral: #ff5a36;
  --aqua: #3de8ff;
  --sand: #ffe6a3;
  --muted: rgba(244, 255, 240, 0.62);
  --font-display: "Syne", sans-serif;
  --font-body: "Bricolage Grotesque", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--foam);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(200, 255, 61, 0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(255, 90, 54, 0.2), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(61, 232, 255, 0.12), transparent 55%),
    linear-gradient(165deg, #071018 0%, #101b2c 45%, #0b1320 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.chaos {
  /* no filter on body — it breaks position:fixed confetti canvas */
}

@keyframes hue-shift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

body.chaos .noise {
  opacity: 0.22;
}

body.chaos .hero__bg .orb {
  animation-duration: 2.2s;
  opacity: 0.7;
}

body.chaos .hero__brand,
body.chaos .finale__brand {
  animation: brand-in 1.1s var(--ease) both, hue-shift 3.5s linear infinite;
}

img,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cursor-blob {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  will-change: transform;
}

.cursor-blob.hot {
  width: 42px;
  height: 42px;
  background: var(--coral);
}

#confetti {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 40;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  mix-blend-mode: difference;
}

.topbar__mark {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.topbar__btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--foam);
  background: transparent;
  border: 1px solid rgba(244, 255, 240, 0.35);
  border-radius: var(--radius);
  padding: 0.45rem 0.9rem;
  cursor: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.topbar__btn:hover,
.topbar__btn.is-on {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 6.5rem 1.25rem 2.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}

.orb--a {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: var(--coral);
  top: 8%;
  right: -8%;
}

.orb--b {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  background: var(--lime);
  bottom: 18%;
  left: -10%;
  animation-delay: -3s;
}

.orb--c {
  width: min(35vw, 260px);
  height: min(35vw, 260px);
  background: var(--aqua);
  top: 35%;
  left: 40%;
  animation-delay: -5s;
  opacity: 0.35;
}

.grid-wash {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 255, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 255, 240, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

.hero__brand,
.hero__title,
.hero__lede,
.hero__cta,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 18vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  word-break: break-word;
  background: linear-gradient(120deg, var(--foam) 20%, var(--lime) 55%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-in 1.1s var(--ease) both;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(40px) skewY(3deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title .line {
  display: block;
  animation: rise 0.9s var(--ease) both;
}

.hero__title .line:nth-child(2) {
  animation-delay: 0.12s;
}

.hero__title .accent {
  color: var(--coral);
  -webkit-text-stroke: 1px rgba(255, 90, 54, 0.4);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__lede {
  max-width: 28rem;
  margin: 1.1rem 0 1.6rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.45;
  color: var(--muted);
  animation: rise 1s var(--ease) 0.2s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: rise 1s var(--ease) 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  border: none;
  cursor: none;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(200, 255, 61, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 10px 30px rgba(200, 255, 61, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--foam);
  border: 1.5px solid rgba(244, 255, 240, 0.35);
}

.btn--ghost:hover {
  border-color: var(--foam);
  background: rgba(244, 255, 240, 0.06);
}

.hero__visual {
  justify-self: end;
  margin-top: -1rem;
  animation: cake-pop 1.2s var(--ease) 0.45s both;
}

@keyframes cake-pop {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(-8deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cake {
  position: relative;
  width: min(42vw, 220px);
  height: 180px;
  margin-left: auto;
  animation: cake-bob 3.5s ease-in-out infinite;
}

@keyframes cake-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.cake__plate {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 100%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(244, 255, 240, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cake__layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 6px 6px;
}

.cake__layer--base {
  bottom: 20px;
  width: 86%;
  height: 42px;
  background: linear-gradient(180deg, #ff8f6b, var(--coral));
}

.cake__layer--mid {
  bottom: 56px;
  width: 72%;
  height: 36px;
  background: linear-gradient(180deg, #fff0b8, var(--sand));
}

.cake__layer--top {
  bottom: 86px;
  width: 58%;
  height: 32px;
  background: linear-gradient(180deg, #e8ff9a, var(--lime));
}

.cake__icing {
  position: absolute;
  bottom: 112px;
  left: 50%;
  width: 58%;
  height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 20% 40%, #fff 0 12%, transparent 13%),
    radial-gradient(circle at 50% 30%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 80% 45%, #fff 0 11%, transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent);
  border-radius: 40% 40% 0 0;
}

.candle {
  position: absolute;
  bottom: 126px;
  width: 6px;
  height: 28px;
  background: var(--aqua);
  border-radius: 2px;
}

.candle span {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 10px;
  height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 70%, #fff6a8, #ff8a3d 55%, transparent 70%);
  border-radius: 50% 50% 40% 40%;
  animation: flicker 0.35s ease-in-out infinite alternate;
}

.candle.c1 { left: 38%; }
.candle.c2 { left: 50%; background: var(--coral); }
.candle.c3 { left: 62%; }

@keyframes flicker {
  from { transform: translateX(-50%) scale(1) rotate(-4deg); opacity: 0.85; }
  to { transform: translateX(-50%) scale(1.15) rotate(5deg); opacity: 1; }
}

section {
  position: relative;
  padding: 5rem 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
}

.section-head h2,
.finale__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 32rem;
}

.machine {
  background:
    linear-gradient(180deg, transparent, rgba(200, 255, 61, 0.05) 30%, transparent);
}

.wish-stage {
  max-width: 52rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(244, 255, 240, 0.12);
  border-bottom: 1px solid rgba(244, 255, 240, 0.12);
}

.wish-label {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.wish-text {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 4.2vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  min-height: 5.5em;
  overflow-wrap: anywhere;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

.wish-text.is-swap {
  opacity: 0;
  transform: translateY(12px);
}

.meters {
  margin-top: 2.5rem;
  max-width: 28rem;
}

.meter__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meter__track {
  height: 14px;
  border-radius: var(--radius);
  background: rgba(244, 255, 240, 0.08);
  overflow: hidden;
  border: 1px solid rgba(244, 255, 240, 0.12);
}

.meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--lime), var(--aqua));
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
  transition: width 0.45s var(--ease);
}

@keyframes shimmer {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.orbit {
  overflow: hidden;
}

.fact-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(244, 255, 240, 0.1);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fact.is-in {
  opacity: 1;
  transform: none;
}

.fact__n {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--lime);
  padding-top: 0.35rem;
}

.fact__t {
  margin: 0;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.dial {
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(255, 90, 54, 0.12), transparent 60%);
}

.wheel-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  max-width: 28rem;
  margin: 0 auto;
}

.wheel {
  position: relative;
  width: min(78vw, 300px);
  height: min(78vw, 300px);
  border-radius: 50%;
  border: 4px solid rgba(244, 255, 240, 0.2);
  background: conic-gradient(
    from -90deg,
    var(--coral) 0 60deg,
    var(--lime) 60deg 120deg,
    var(--aqua) 120deg 180deg,
    var(--sand) 180deg 240deg,
    #ff7ad9 240deg 300deg,
    #7a8cff 300deg 360deg
  );
  box-shadow:
    0 0 0 12px rgba(244, 255, 240, 0.04),
    0 30px 60px rgba(0, 0, 0, 0.35);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.08, 1);
}

.wheel__slice {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 1.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  transform-origin: center;
}

.wheel__slice.s1 { transform: rotate(0deg); }
.wheel__slice.s2 { transform: rotate(60deg); }
.wheel__slice.s3 { transform: rotate(120deg); }
.wheel__slice.s4 { transform: rotate(180deg); }
.wheel__slice.s5 { transform: rotate(240deg); }
.wheel__slice.s6 { transform: rotate(300deg); }

.wheel__pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 22px solid var(--foam);
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.wheel__btn {
  z-index: 2;
}

.wheel__result {
  margin: 0;
  text-align: center;
  font-size: 1.15rem;
  color: var(--muted);
  min-height: 1.5em;
}

.certificate {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cert {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border: 1px dashed rgba(244, 255, 240, 0.35);
  background:
    linear-gradient(135deg, rgba(200, 255, 61, 0.06), rgba(61, 232, 255, 0.05));
  overflow: hidden;
}

.cert__stamp {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  animation: stamp 0.8s var(--ease) both;
}

@keyframes stamp {
  from { transform: scale(2.2) rotate(-20deg); opacity: 0; }
  to { transform: scale(1) rotate(12deg); opacity: 1; }
}

.cert__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.cert__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.cert__body {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 34rem;
}

.cert__sign {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--lime);
}

.finale {
  text-align: center;
  padding-bottom: 6rem;
}

.finale__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 16vw, 9rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 0.85;
  background: linear-gradient(100deg, var(--coral), var(--lime), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.finale__text {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

.foot {
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(244, 255, 240, 0.4);
}

.foot p {
  margin: 0;
}

@media (min-width: 780px) {
  .hero {
    padding: 7rem 3rem 3rem;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto auto 1fr;
    align-content: center;
    column-gap: 2rem;
  }

  .hero__brand {
    grid-column: 1 / -1;
    font-size: clamp(4.8rem, 14vw, 13rem);
  }

  .hero__title,
  .hero__lede,
  .hero__cta {
    grid-column: 1;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 2 / 5;
    align-self: center;
    justify-self: end;
    margin: 0;
  }

  .cake {
    width: 260px;
    height: 220px;
  }

  section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .topbar {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .fact-rail {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .cert {
    padding: 3rem;
  }

  .wish-text {
    min-height: 4.5em;
  }
}

@media (max-width: 779px) {
  body {
    cursor: auto;
  }

  .cursor-blob {
    display: none;
  }

  .btn,
  .topbar__btn {
    cursor: pointer;
  }

  .topbar {
    padding:
      max(0.75rem, env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      0.75rem
      max(1rem, env(safe-area-inset-left));
  }

  .topbar__btn {
    min-height: 44px;
    padding: 0.55rem 0.95rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-content: start;
    padding:
      calc(4.75rem + env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      max(1.75rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero__lede {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__visual {
    justify-self: center;
    margin-top: 0.5rem;
  }

  .cake {
    width: min(56vw, 180px);
    height: 150px;
    margin-left: 0;
  }

  .orb {
    filter: blur(28px);
    opacity: 0.4;
  }

  section {
    padding:
      3.5rem
      max(1rem, env(safe-area-inset-right))
      3.5rem
      max(1rem, env(safe-area-inset-left));
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .wish-stage .btn {
    width: 100%;
  }

  .fact__t {
    font-size: 1.05rem;
  }

  .wheel {
    width: min(84vw, 280px);
    height: min(84vw, 280px);
  }

  .wheel__slice {
    font-size: 0.62rem;
    padding-top: 1.1rem;
  }

  .wheel__btn {
    width: min(100%, 280px);
  }

  .wheel__result {
    font-size: 1rem;
    padding-inline: 0.25rem;
  }

  .cert {
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .cert__stamp {
    top: 0.75rem;
    right: 0.75rem;
    width: 58px;
    height: 58px;
    font-size: 0.55rem;
  }

  .cert__title {
    padding-right: 3.5rem;
  }

  .finale {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }

  .finale__brand {
    font-size: clamp(3rem, 18vw, 6rem);
  }

  .finale .btn {
    width: min(100%, 320px);
  }

  .foot {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  /* Chaos: lighter on phones */
  body.chaos .noise {
    opacity: 0.28;
  }

  body.chaos .hero__brand,
  body.chaos .finale__brand {
    animation: brand-in 1.1s var(--ease) both, hue-shift 3s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    cursor: auto;
  }

  .cursor-blob {
    display: none;
  }
}
