:root {
  --color-bg: #050816;
  --color-bg-soft: #0a1026;
  --color-primary: #4f8cff;
  --color-secondary: #6c63ff;
  --color-accent: #00e5ff;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-text-soft: rgba(255, 255, 255, 0.56);
  --color-panel: rgba(9, 15, 38, 0.58);
  --color-panel-strong: rgba(15, 23, 52, 0.82);
  --border-soft: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.46);
  --shadow-glow: 0 0 38px rgba(0, 229, 255, 0.26);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --font-main: "Poppins", sans-serif;
  --shell-width: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 180ms var(--ease-out);
  --medium: 420ms var(--ease-out);
  --hero-size: 4rem;
}

@media (max-width: 767px) {
  :root {
    --hero-size: 3rem;
    --radius-lg: 22px;
  }
}

@media (min-width: 1600px) {
  :root {
    --shell-width: 1320px;
    --hero-size: 4.75rem;
  }
}

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

html {
  min-height: 100%;
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 140, 255, 0.3), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(0, 229, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #050816 0%, #071024 46%, #050816 100%);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

::selection {
  background: rgba(0, 229, 255, 0.3);
  color: var(--color-text);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: transform var(--fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.no-select,
.status-badge,
.action-button,
.install-button {
  user-select: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 140, 255, 0.28), transparent 18rem),
    var(--color-bg);
  color: var(--color-text);
  opacity: 1;
  transition: opacity 640ms var(--ease-out), visibility 640ms var(--ease-out);
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader__ring {
  position: absolute;
  width: 8.25rem;
  height: 8.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.42));
  animation: spin 1.1s linear infinite;
}

.loader__logo {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-glow);
}

.loader p {
  margin: 8.4rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 62%);
  filter: blur(12px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity var(--medium);
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#particles-js,
.scene__grid,
.scene__noise,
.aurora,
.moving-light,
.floating-shape {
  position: absolute;
  inset: 0;
}

#particles-js {
  opacity: 0.5;
}

.scene__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
}

.scene__noise {
  opacity: 0.14;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%),
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.aurora {
  width: 58rem;
  height: 58rem;
  border-radius: 999px;
  opacity: 0.44;
  filter: blur(84px);
  mix-blend-mode: screen;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

.aurora--one {
  top: -20rem;
  left: -18rem;
  background: rgba(79, 140, 255, 0.56);
}

.aurora--two {
  top: -16rem;
  right: -20rem;
  background: rgba(108, 99, 255, 0.48);
  animation-delay: -6s;
}

.aurora--three {
  right: 12%;
  bottom: -28rem;
  background: rgba(0, 229, 255, 0.32);
  animation-delay: -12s;
}

.moving-light {
  width: 42rem;
  height: 12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(28px);
  transform: rotate(-20deg);
  animation: lightSweep 11s ease-in-out infinite;
}

.moving-light--one {
  top: 8%;
  left: -30%;
}

.moving-light--two {
  right: -35%;
  bottom: 8%;
  animation-delay: -4s;
}

.floating-shape {
  inset: auto;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  animation: floatShape 9s ease-in-out infinite;
}

.floating-shape--one {
  top: 16%;
  left: 8%;
}

.floating-shape--two {
  right: 6%;
  top: 36%;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  animation-delay: -3s;
}

.floating-shape--three {
  right: 18%;
  bottom: 12%;
  width: 6.5rem;
  height: 6.5rem;
  transform: rotate(16deg);
  animation-delay: -6s;
}

.maintenance-shell {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--shell-width));
  min-height: calc(100vh - 8rem);
  margin: 0 auto;
  padding: 4rem 0 1.5rem;
  display: grid;
  place-items: center;
}

.glass-card {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-panel), var(--color-panel)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(79, 140, 255, 0.68), rgba(0, 229, 255, 0.38), rgba(255, 255, 255, 0.12)) border-box;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(145%);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.2), transparent 32%, rgba(255, 255, 255, 0.08) 68%, transparent);
  opacity: 0.56;
  pointer-events: none;
}

.maintenance-card {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2rem, 3rem);
  transform-style: preserve-3d;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand-block__logo {
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 auto;
  border-radius: 1.35rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(0, 229, 255, 0.26);
}

.brand-block__eyebrow,
.brand-block__name,
.hero-copy__kicker,
.section-heading p,
.status-card p,
.progress-note,
.site-footer p,
.info-box p {
  margin: 0;
}

.brand-block__eyebrow {
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.brand-block__name {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}

.status-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  padding: 0.56rem 0.86rem;
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.12);
  color: #dffcff;
  font-size: 0.9rem;
  font-weight: 700;
  overflow: hidden;
}

.status-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255, 255, 255, 0.32), transparent 65% 100%);
  transform: translateX(-120%);
  animation: reflection 4s ease-in-out infinite;
}

.status-badge__dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--color-danger);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.48);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-copy {
  max-width: 58rem;
}

.hero-copy__kicker {
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.1rem 0 0;
  color: var(--color-text);
  font-size: var(--hero-size);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(79, 140, 255, 0.36);
}

.hero-copy__subtitle {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-copy__message {
  max-width: 49rem;
  margin-top: 1.35rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.hero-copy__message p {
  margin: 0;
}

.hero-copy__message p + p {
  margin-top: 0.55rem;
}

.countdown,
.progress-panel,
.status-grid,
.action-row,
.info-box {
  position: relative;
  margin-top: 1.45rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.section-heading p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading strong {
  color: var(--color-text);
  font-size: 1rem;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.time-card,
.status-card,
.info-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(8, 14, 33, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hover-light {
  position: relative;
  overflow: hidden;
  transition: transform var(--medium), border-color var(--medium), box-shadow var(--medium);
}

.hover-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 229, 255, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity var(--medium);
}

.hover-light:hover,
.hover-light:focus-visible {
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 52px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(0, 229, 255, 0.12);
  transform: translateY(-4px);
}

.hover-light:hover::before,
.hover-light:focus-visible::before {
  opacity: 1;
}

.time-card {
  min-height: 8rem;
  padding: 1.1rem 0.8rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.time-card__value {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 800;
}

.time-card__value.is-changing {
  animation: numberPop 420ms var(--ease-out);
}

.time-card__label {
  position: relative;
  z-index: 1;
  color: var(--color-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.progress-panel {
  border-radius: var(--radius-md);
}

.progress-track {
  position: relative;
  width: 100%;
  height: 0.82rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-success));
  background-size: 220% 100%;
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.36);
  animation: gradientRun 4s linear infinite;
  transition: width 900ms var(--ease-out);
}

.progress-note {
  margin-top: 0.75rem;
  color: var(--color-text-soft);
  font-size: 0.85rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.status-card {
  min-height: 6.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-card i {
  position: relative;
  z-index: 1;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 1rem;
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.14);
}

.status-card div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.status-card p {
  color: var(--color-text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--color-text);
  font-size: 1rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.action-button,
.install-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  padding: 0.92rem 1.25rem;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform var(--medium), box-shadow var(--medium), border-color var(--medium);
  will-change: transform;
}

.action-button::before,
.install-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  background-size: 180% 100%;
  transition: filter var(--medium), transform var(--medium);
  animation: gradientRun 6s linear infinite;
}

.action-button::after,
.install-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(5, 8, 22, 0.2);
  opacity: 0;
  transition: opacity var(--medium);
}

.action-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.action-button--secondary::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(79, 140, 255, 0.28), rgba(0, 229, 255, 0.12));
}

.action-button:hover,
.action-button:focus-visible,
.install-button:hover,
.install-button:focus-visible {
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(0, 229, 255, 0.26);
  transform: translateY(-2px);
}

.action-button:hover::before,
.action-button:focus-visible::before,
.install-button:hover::before,
.install-button:focus-visible::before {
  filter: saturate(1.25) brightness(1.12);
}

.action-button--secondary:hover::after,
.action-button--secondary:focus-visible::after {
  opacity: 0.3;
}

.ripple {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 720ms ease-out forwards;
}

.info-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
}

.info-box > i {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-success);
}

.info-box h2 {
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font-size: 1rem;
}

.info-box p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.install-button {
  margin-top: 0.8rem;
  padding-inline: 1rem;
}

.site-footer {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--shell-width));
  margin: 0 auto;
  padding: 0.25rem 0 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  color: var(--color-text-soft);
  text-align: center;
  font-size: 0.85rem;
}

.site-footer span {
  color: var(--color-accent);
  font-weight: 800;
}

.security-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  width: min(100% - 2rem, 28rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: rgba(20, 8, 20, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.security-toast[hidden] {
  display: none;
}

.security-toast i {
  color: var(--color-danger);
}

.security-toast p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.security-toast button {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  cursor: pointer;
}

.offline-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.offline-shell {
  width: min(100% - 2rem, 42rem);
}

.offline-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.offline-card__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-glow);
}

.offline-card h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: 2rem;
  line-height: 1.2;
}

.offline-card p {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  color: var(--color-text-muted);
}

:focus-visible {
  outline: 3px solid rgba(0, 229, 255, 0.86);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .maintenance-shell {
    min-height: auto;
    padding-top: 2rem;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    background:
      radial-gradient(circle at 18% 8%, rgba(79, 140, 255, 0.28), transparent 18rem),
      radial-gradient(circle at 86% 12%, rgba(0, 229, 255, 0.14), transparent 16rem),
      var(--color-bg);
  }

  .maintenance-shell {
    width: min(100% - 1rem, var(--shell-width));
    padding-top: 0.5rem;
  }

  .maintenance-card {
    padding: 1.1rem;
  }

  .brand-block {
    align-items: flex-start;
    margin-bottom: 1.4rem;
  }

  .brand-block__logo {
    width: 4rem;
    height: 4rem;
    border-radius: 1.1rem;
  }

  .brand-block__eyebrow {
    font-size: 0.76rem;
  }

  .brand-block__name {
    font-size: 0.9rem;
  }

  .hero-copy__subtitle {
    font-size: 1rem;
  }

  .countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-card {
    min-height: 6.8rem;
  }

  .time-card__value {
    font-size: 1.75rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .action-row,
  .action-button {
    width: 100%;
  }

  .info-box {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: min(100% - 1rem, var(--shell-width));
    padding-bottom: 1rem;
  }
}

@media (max-width: 359px) {
  :root {
    --hero-size: 2.55rem;
  }

  .countdown__grid {
    gap: 0.55rem;
  }

  .time-card {
    padding: 0.85rem 0.55rem;
  }

  .status-badge,
  .action-button,
  .install-button {
    font-size: 0.82rem;
  }
}

@media (min-width: 1200px) {
  .maintenance-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(25rem, 0.85fr);
    column-gap: 2.25rem;
    align-items: start;
  }

  .brand-block,
  .status-badge,
  .hero-copy,
  .action-row,
  .info-box {
    grid-column: 1;
  }

  .countdown,
  .progress-panel,
  .status-grid {
    grid-column: 2;
  }

  .countdown {
    margin-top: 0;
  }

  .progress-panel {
    margin-top: 1rem;
  }

  .info-box {
    align-self: end;
  }
}

@media (min-width: 2200px) {
  body {
    zoom: 1.08;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .hover-light:hover {
    transform: none;
  }
}

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

  .cursor-glow,
  .moving-light,
  .floating-shape,
  .aurora {
    display: none;
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(7rem, 5rem, 0) scale(1.12);
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-20deg);
    opacity: 0;
  }

  45%,
  60% {
    opacity: 0.8;
  }

  70% {
    transform: translate3d(145vw, 18vh, 0) rotate(-20deg);
    opacity: 0;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -1.4rem, 0) rotate(8deg);
  }
}

@keyframes reflection {
  0%,
  45% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.42);
  }

  70% {
    box-shadow: 0 0 0 0.7rem rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes gradientRun {
  to {
    background-position: 200% 0;
  }
}

@keyframes numberPop {
  0% {
    opacity: 0.32;
    filter: blur(8px);
    transform: translateY(0.5rem) scale(0.94);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(22);
  }
}
