/* ========================================
   ASPYRE Coming Soon
   ======================================== */

/* 1. Variables / Theme */
@font-face {
      font-family: "Geist Pixel Square";
      font-style: normal;
      font-display: swap;
      font-weight: 400;
      src: url("https://cdn.jsdelivr.net/npm/geist@1.7.0/dist/fonts/geist-pixel/GeistPixel-Square.woff2") format("woff2");
    }

    @font-face {
      font-family: "Geist Pixel Grid";
      font-style: normal;
      font-display: swap;
      font-weight: 400;
      src: url("https://cdn.jsdelivr.net/npm/geist@1.7.0/dist/fonts/geist-pixel/GeistPixel-Grid.woff2") format("woff2");
    }

    :root {
      --navy: #1f1b52;
      --purple: #7F77DD;
      --purple-deep: #645dc7;
      --blue: #56c6ee;
      --yellow: #ffd31a;
      --orange: #ff9e52;
      --surface: #F8F7FF;
      --stage: #eeedfe;
      --card: #ffffff;
      --border: #d9d5f3;
      --shadow: 0 28px 90px rgba(31, 27, 82, 0.14);
      --soft-shadow: 0 12px 30px rgba(31, 27, 82, 0.08);
      --text: #3d3a63;
      --muted: #747095;
      --font-pixel: "Geist Pixel Square", "Geist Pixel", "Geist Mono", monospace;
      --font-pixel-grid: "Geist Pixel Grid", "Geist Pixel Square", "Geist Pixel", "Geist Mono", monospace;
      --font-body: "Geist Mono", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --mx: 0px;
      --my: 0px;
    }

/* 2. Reset / Base */
    * {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      background: var(--surface);
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--text);
      font-family: var(--font-body);
      background:
        radial-gradient(circle at 16% 18%, rgba(144, 112, 255, 0.18), transparent 30%),
        radial-gradient(circle at 84% 22%, rgba(88, 202, 240, 0.16), transparent 28%),
        radial-gradient(circle at 52% 92%, rgba(255, 210, 135, 0.16), transparent 32%),
        var(--surface);
      overflow-x: hidden;
    }

/* 3. Page Background */
    body::before,
    body::after {
      position: fixed;
      z-index: 0;
      display: block;
      content: "";
      border-radius: 999px;
      filter: blur(36px);
      pointer-events: none;
      opacity: 0.78;
      animation: blobFloat 16s ease-in-out infinite;
    }

    body::before {
      top: 8rem;
      left: -7rem;
      width: 24rem;
      height: 24rem;
      background: rgba(144, 112, 255, 0.18);
      transform: translate3d(calc(var(--mx) * 0.018), calc(var(--my) * 0.018), 0);
    }

    body::after {
      right: -7rem;
      top: 20rem;
      width: 23rem;
      height: 23rem;
      background: rgba(88, 202, 240, 0.16);
      animation-delay: -6s;
      transform: translate3d(calc(var(--mx) * -0.014), calc(var(--my) * -0.014), 0);
    }

    .page {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 16px 0 42px;
    }

    .page::before,
    .page::after {
      position: fixed;
      z-index: -1;
      content: "";
      pointer-events: none;
    }

    .page::before {
      inset: 0;
      opacity: 0.42;
      background-image:
        radial-gradient(circle, rgba(127, 119, 221, 0.42) 0 2px, transparent 2.5px),
        radial-gradient(circle, rgba(88, 202, 240, 0.32) 0 1.5px, transparent 2px);
      background-position: 12% 28%, 82% 18%;
      background-size: 180px 180px, 230px 230px;
      animation: sparkleDrift 18s linear infinite;
    }

    .page::after {
      top: 9rem;
      left: 50%;
      width: min(760px, 80vw);
      aspect-ratio: 1 / 0.45;
      border: 1px solid rgba(127, 119, 221, 0.12);
      border-radius: 50%;
      transform: translateX(-50%) rotate(-4deg);
      animation: orbitBreathe 14s ease-in-out infinite;
    }

/* 4. Header / Logo */
    .brand {
      display: flex;
      justify-content: center;
      margin-bottom: 8px;
    }

    .brand img {
      display: block;
      width: min(430px, 68vw);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 18px 20px rgba(31, 27, 82, 0.08));
    }

/* 5. Hero / Typography */
    .hero {
      position: relative;
      min-height: 498px;
      padding: 4px 0 0;
      text-align: center;
    }

    .hero-copy {
      position: relative;
      z-index: 3;
      max-width: 860px;
      margin: 0 auto;
    }

    .coming-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      margin-bottom: 12px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 999px;
      color: var(--navy);
      background: #ffffff;
      box-shadow: var(--soft-shadow);
      font-size: 0.95rem;
      font-weight: 850;
      font-family: var(--font-pixel);
    }

    h1 {
      margin: 0;
      color: var(--navy);
      font-family: var(--font-pixel-grid);
      font-size: clamp(3.5rem, 4.6vw, 4rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .typing-headline {
      display: grid;
    }

    .typing-headline::before {
      grid-area: 1 / 1;
      content: attr(data-headline);
      visibility: hidden;
      white-space: normal;
    }

    .typing-line {
      grid-area: 1 / 1;
    }

    .typing-text {
      visibility: hidden;
    }

    .typing-text.is-ready {
      visibility: visible;
    }

    .typing-cursor {
      display: inline-block;
      width: 0.08em;
      margin-left: 0.08em;
      color: var(--purple);
      animation: cursorBlink 1.0s steps(1, end) infinite;
    }

    .typing-cursor.is-complete {
      opacity: 0.45;
    }

    .hero-copy p {
      max-width: 760px;
      margin: 15px auto 0;
      color: #514d79;
      font-size: clamp(1rem, 1.55vw, 1.2rem);
      line-height: 1.55;
    }

/* 6. Mascot Scene / Speech Bubbles */
    .mascot-stage {
      position: relative;
      z-index: 2;
      height: 285px;
      max-width: 850px;
      margin: 24px auto 0;
      border: 0;
      border-radius: 36px;
      background: var(--stage);
      box-shadow: none;
      pointer-events: none;
      overflow: hidden;
    }

    .mascot-stage::before {
      position: absolute;
      right: 8%;
      bottom: 18px;
      left: 8%;
      height: 76px;
      content: "";
      border-radius: 50%;
      background:
        radial-gradient(ellipse at center, rgba(127, 119, 221, 0.22), transparent 63%),
        radial-gradient(ellipse at 30% 55%, rgba(86, 198, 238, 0.16), transparent 60%),
        radial-gradient(ellipse at 72% 45%, rgba(255, 211, 26, 0.18), transparent 62%);
      filter: blur(2px);
    }

    .mascot-stage::after {
      position: absolute;
      inset: 38px 6% 18px;
      content: "";
      border: 2px dashed rgba(127, 119, 221, 0.24);
      border-radius: 48% 52% 46% 54%;
      mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
      animation: orbitSpin 34s linear infinite;
    }

    .mascot {
      position: absolute;
      user-select: none;
      filter: drop-shadow(0 18px 22px rgba(57, 45, 126, 0.13));
    }

    .mascot img {
      display: block;
      width: 100%;
      height: auto;
    }

    .mascot-y {
      right: 50%;
      bottom: 10px;
      width: clamp(158px, 18vw, 220px);
      transform: translateX(50%);
      animation: yBounce 4.4s ease-in-out infinite;
    }

    .mascot-y::after {
      position: absolute;
      right: 6%;
      bottom: -21px;
      left: 6%;
      height: 24px;
      content: "";
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(127, 119, 221, 0.36), transparent 70%);
      filter: blur(4px);
      animation: glowPulse 4.4s ease-in-out infinite;
    }

    .mascot-cloud {
      left: clamp(52px, 10vw, 116px);
      bottom: 34px;
      width: clamp(118px, 15vw, 184px);
      animation: cloudFloat 7s ease-in-out infinite;
    }

    .mascot-spark {
      right: clamp(54px, 10vw, 118px);
      bottom: 48px;
      width: clamp(108px, 13vw, 164px);
      transform-origin: 50% 56%;
      animation: sparkOrbit 4.8s ease-in-out infinite;
    }

    .bubble {
      position: absolute;
      z-index: 4;
      max-width: 230px;
      padding: 14px 18px;
      border: 1px solid rgba(103, 82, 180, 0.14);
      border-radius: 24px;
      color: var(--navy);
      background: #ffffff;
      box-shadow: 0 16px 36px rgba(80, 62, 150, 0.16);
      font-size: 1.04rem;
      font-weight: 800;
      line-height: 1.2;
      backdrop-filter: blur(15px);
    }

    .bubble::after {
      position: absolute;
      bottom: -8px;
      width: 18px;
      height: 18px;
      content: "";
      border-radius: 4px 0 14px;
      background: #ffffff;
      transform: rotate(45deg);
    }

    .bubble-cloud {
      left: clamp(102px, 16vw, 180px);
      top: 18px;
      animation: cloudFloat 7s ease-in-out infinite;
    }

    .bubble-cloud::after {
      left: 24px;
    }

    .bubble-spark {
      right: clamp(86px, 13vw, 154px);
      top: 16px;
      animation: bubbleBob 5s ease-in-out infinite;
    }

    .bubble-spark::after {
      right: 27px;
    }

    .orbit {
      position: absolute;
      right: clamp(58px, 10vw, 126px);
      bottom: 44px;
      width: clamp(168px, 24vw, 275px);
      aspect-ratio: 1;
      border: 2px dotted rgba(127, 119, 221, 0.35);
      border-radius: 50%;
      opacity: 0.58;
      animation: orbitSpin 24s linear infinite;
    }

    .twinkle {
      position: absolute;
      width: 12px;
      height: 12px;
      color: var(--yellow);
      animation: twinkle 2.6s ease-in-out infinite;
    }

    .twinkle::before,
    .twinkle::after {
      position: absolute;
      inset: 0;
      content: "";
      border-radius: 2px;
      background: currentColor;
    }

    .twinkle::before {
      transform: scaleX(0.28);
    }

    .twinkle::after {
      transform: scaleY(0.28);
    }

    .t1 {
      top: 42px;
      left: 29%;
      color: #7bd6f3;
    }

    .t2 {
      top: 74px;
      right: 28%;
      animation-delay: 0.8s;
    }

    .t3 {
      right: 45%;
      bottom: 58px;
      color: #a88aff;
      animation-delay: 1.3s;
    }

/* 7. Waitlist / Progress */
    .waitlist {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
      max-width: 760px;
      margin: 22px auto 0;
      padding: 32px;
      border: 1.5px solid var(--border);
      border-radius: 32px;
      background: var(--card);
      box-shadow: 0 32px 100px rgba(31, 27, 82, 0.16), 0 0 0 8px rgba(127, 119, 221, 0.04);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .waitlist:hover {
      transform: translateY(-4px);
      box-shadow: 0 38px 110px rgba(31, 27, 82, 0.18), 0 0 0 8px rgba(127, 119, 221, 0.06);
    }

    .waitlist-note {
      max-width: 620px;
      min-width: 0;
      text-align: center;
      margin: 0 auto;
    }

    .feature-icon {
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      width: 50px;
      height: 50px;
      border-radius: 18px;
      color: #ffffff;
      background: var(--purple);
      box-shadow: 0 12px 24px rgba(127, 119, 221, 0.22);
    }

    .waitlist-note strong {
      display: block;
      color: var(--navy);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      line-height: 1.08;
      font-family: var(--font-pixel);
    }

    .waitlist-note span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.45;
    }

    label {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    input {
      width: 100%;
      min-height: 62px;
      padding: 0 22px;
      border: 1px solid var(--border);
      border-radius: 18px;
      outline: none;
      color: var(--navy);
      background: #ffffff;
      font: inherit;
      transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    input:focus {
      border-color: var(--purple);
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(127, 119, 221, 0.14);
    }

    input[aria-invalid="true"] {
      border-color: #e26b69;
      box-shadow: 0 0 0 5px rgba(226, 107, 105, 0.13);
    }

    .primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 64px;
      padding: 0 34px;
      border: 0;
      border-radius: 20px;
      color: #ffffff;
      background: var(--navy);
      box-shadow: 0 18px 36px rgba(31, 27, 82, 0.22);
      cursor: pointer;
      font: inherit;
      font-family: var(--font-pixel);
      font-weight: 850;
      white-space: nowrap;
      transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    }

    .primary-btn:hover,
    .primary-btn:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(31, 27, 82, 0.26), 0 0 0 6px rgba(127, 119, 221, 0.14);
      outline: none;
    }

    .form-message {
      min-height: 1.2em;
      margin: -6px 4px 0;
      color: #4f4389;
      font-size: 0.92rem;
      font-weight: 750;
      text-align: center;
    }

    .form-message.error {
      color: #b34c53;
    }

    .signup-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
    }

    .waitlist-progress {
      display: grid;
      gap: 10px;
      padding-top: 2px;
    }

    .progress-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--navy);
      font-size: 0.95rem;
      font-weight: 850;
      font-family: var(--font-pixel);
    }

    .progress-track {
      height: 12px;
      overflow: hidden;
      border-radius: 999px;
      background: #efeff8;
    }

    .progress-fill {
      display: block;
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: var(--purple);
      box-shadow: 0 0 0 1px rgba(127, 119, 221, 0.2), 0 8px 18px rgba(127, 119, 221, 0.28);
    }

    .social-proof {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 750;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-left: -8px;
      border: 2px solid #ffffff;
      border-radius: 50%;
      color: var(--navy);
      background: #f2f1ff;
      font-size: 0.75rem;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(31, 27, 82, 0.08);
    }

    .avatar:first-child {
      margin-left: 0;
    }

/* 8. Feature Cards */
    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 860px;
      margin: 16px auto 0;
    }

    .feature-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      min-height: 0;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: #ffffff;
      box-shadow: var(--soft-shadow);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      margin-bottom: 0;
      border-radius: 16px;
    }

    .feature-card:nth-child(2) .feature-icon {
      background: var(--purple);
    }

    .feature-card:nth-child(3) .feature-icon {
      background: var(--purple);
    }

    .feature-card h2 {
      margin: 0;
      color: var(--navy);
      font-family: var(--font-pixel);
      font-size: 1rem;
      line-height: 1.2;
    }

    .feature-card p {
      margin: 5px 0 0;
      color: #625e86;
      font-size: 0.88rem;
      line-height: 1.4;
    }

    .bottom-cloud {
      display: none;
    }

    .bottom-cloud.left {
      left: -7rem;
    }

    .bottom-cloud.right {
      right: -8rem;
    }

/* 9. Custom Mascot Cursor */
    .mascot-cursor {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: 42px;
      height: 42px;
      opacity: 0;
      pointer-events: none;
      transform: translate3d(-100px, -100px, 0) rotate(0deg) scale(1);
      transform-origin: 50% 50%;
      transition: opacity 180ms ease, scale 180ms ease;
      will-change: transform, opacity;
    }

    .mascot-cursor.is-visible {
      opacity: 1;
    }

    .mascot-cursor.is-active {
      scale: 1.16;
    }

    .mascot-cursor img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(127, 119, 221, 0.22)) drop-shadow(0 0 14px rgba(255, 211, 26, 0.34));
      animation: cursorFloat 2.6s ease-in-out infinite;
    }

    .cursor-sparkle {
      position: fixed;
      z-index: 9998;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--yellow);
      box-shadow: 0 0 12px rgba(255, 211, 26, 0.7);
      pointer-events: none;
      transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(1);
      animation: cursorSparkleFade 520ms ease-out forwards;
    }

    .cursor-sparkle::after {
      position: absolute;
      inset: -3px;
      content: "";
      border-radius: 999px;
      border: 1px solid rgba(127, 119, 221, 0.28);
    }

/* 10. Animations */
    @keyframes yBounce {
      0%, 100% { transform: translateX(50%) translateY(0); }
      50% { transform: translateX(50%) translateY(-13px); }
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.8; transform: scaleX(1); }
      50% { opacity: 0.48; transform: scaleX(0.86); }
    }

    @keyframes cloudFloat {
      0%, 100% { transform: translateX(0) translateY(0); }
      50% { transform: translateX(14px) translateY(-8px); }
    }

    @keyframes sparkOrbit {
      0%, 100% { transform: translate(0, 0) rotate(-3deg); }
      50% { transform: translate(8px, -16px) rotate(7deg); }
    }

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

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

    @keyframes twinkle {
      0%, 100% { opacity: 0.28; transform: scale(0.65) rotate(0deg); }
      50% { opacity: 1; transform: scale(1.18) rotate(20deg); }
    }

    @keyframes blobFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 22px -18px; }
    }

    @keyframes sparkleDrift {
      from { background-position: 12% 28%, 82% 18%; }
      to { background-position: calc(12% + 180px) calc(28% + 180px), calc(82% - 230px) calc(18% + 230px); }
    }

    @keyframes orbitBreathe {
      0%, 100% { opacity: 0.3; transform: translateX(-50%) rotate(-4deg) scale(1); }
      50% { opacity: 0.58; transform: translateX(-50%) rotate(2deg) scale(1.04); }
    }

    @keyframes cursorBlink {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    @keyframes cursorFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -4px; }
    }

    @keyframes cursorSparkleFade {
      0% { opacity: 0.95; transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(1); }
      100% { opacity: 0; transform: translate3d(calc(var(--spark-x) - 8px), calc(var(--spark-y) + 12px), 0) scale(0.25); }
    }

/* 11. Responsive */
    @media (max-width: 900px) {
      .page {
        width: min(100% - 28px, 760px);
        padding-top: 14px;
      }

      .brand img {
        width: min(360px, 74vw);
      }

  /* 9. Custom Mascot Cursor */
    .mascot-cursor {
        width: 32px;
        height: 32px;
      }

  /* 5. Hero / Typography */
    .hero {
        min-height: 470px;
      }

      h1 {
        font-size: clamp(2.75rem, 7vw, 3.25rem);
        line-height: 1.1;
      }

  /* 6. Mascot Scene / Speech Bubbles */
    .mascot-stage {
        height: 270px;
        margin-top: 18px;
      }

      .bubble-cloud {
        left: 8%;
        top: 12px;
      }

      .bubble-spark {
        right: 6%;
        top: 12px;
      }

  /* 7. Waitlist / Progress */
    .waitlist {
        grid-template-columns: 1fr;
        max-width: 640px;
        padding: 18px;
      }

      .signup-row {
        grid-template-columns: 1fr;
      }

      .primary-btn {
        width: 100%;
      }

      .form-message {
        grid-column: 1;
        margin: 0 4px;
      }

  /* 8. Feature Cards */
    .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 620px) {
      .page {
        width: min(100% - 24px, 430px);
        padding-bottom: 34px;
      }

  /* 4. Header / Logo */
    .brand {
        margin-bottom: 8px;
      }

      .brand img {
        width: min(300px, 80vw);
      }

  /* 5. Hero / Typography */
    .hero {
        min-height: 492px;
        padding-top: 0;
      }

      .coming-badge {
        min-height: 34px;
        margin-bottom: 10px;
        padding: 0 15px;
        font-size: 0.86rem;
      }

      h1 {
        font-size: clamp(2.25rem, 10vw, 2.625rem);
        line-height: 1.12;
      }

      .hero-copy p {
        margin-top: 12px;
        font-size: 0.98rem;
      }

  /* 6. Mascot Scene / Speech Bubbles */
    .mascot-stage {
        height: 230px;
        margin-top: 14px;
      }

      .mascot-stage::after {
        inset: 58px 0 24px;
      }

      .mascot-y {
        bottom: 24px;
        width: 152px;
      }

      .mascot-cloud {
        left: -2px;
        bottom: 78px;
        width: 92px;
        opacity: 0.9;
      }

      .mascot-spark {
        right: 0;
        bottom: 88px;
        width: 84px;
        opacity: 0.92;
      }

      .bubble {
        max-width: 122px;
        padding: 9px 10px;
        border-radius: 18px;
        font-size: 0.72rem;
      }

      .bubble-cloud {
        left: 0;
        top: 16px;
      }

      .bubble-spark {
        right: 0;
        top: 16px;
      }

      .orbit {
        display: none;
      }

      .t1,
      .t2 {
        display: none;
      }

  /* 7. Waitlist / Progress */
    .waitlist {
        margin-top: 0;
        border-radius: 26px;
        padding: 16px;
      }

      .waitlist-note {
        align-items: flex-start;
      }

      .social-proof {
        justify-content: flex-start;
      }

  /* 8. Feature Cards */
    .features {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: 0;
      }

      .mascot-cursor,
      .cursor-sparkle {
        display: none;
      }
    }

/* 12. Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }

      .progress-fill {
        width: 20%;
        animation: none !important;
        transition: none !important;
      }

      .typing-text {
        visibility: visible;
      }

      .typing-cursor {
        display: none;
      }

      .mascot-cursor,
      .cursor-sparkle {
        display: none;
      }
    }
