:root {
  --bg: #050607;
  --panel: rgba(18, 20, 24, 0.78);
  --panel-strong: rgba(24, 26, 32, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f6f8;
  --muted: #a7abb5;
  --soft: #6f7480;
  --red: #d43cff;
  --pink: #f2b5ff;
  --violet: #8d2fff;
  --deep-violet: #35106d;
  --cyan: #65dcff;
  --green: #7ff0c8;
  --radius: 8px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 47, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #060708 0%, #0a0b0f 45%, #050607 100%);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.site-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  filter: saturate(1.16) contrast(1.06);
  transform-origin: 50% 50%;
  animation: canvasReveal 1450ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  pointer-events: none;
}

.topbar-cluster {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 50%;
  display: flex;
  width: min(1220px, calc(100vw - 40px));
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  animation: navDrop 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.topbar {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  height: 64px;
  grid-template-columns: 170px minmax(610px, 1fr) auto;
  align-items: center;
  padding: 0 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 10, 12, 0.72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
  overflow: visible;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.topbar::before {
  position: absolute;
  z-index: 0;
  inset: -1px;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 46%, transparent 58%),
    radial-gradient(circle at 10% 0%, rgba(242, 181, 255, 0.16), transparent 18rem);
  content: "";
  opacity: 0.24;
  pointer-events: none;
  transform: none;
}

.topbar.scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(9, 10, 12, 0.86);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.52);
}

.brand,
.nav-links,
.nav-actions,
.language-toggle,
.nav-cta,
.primary-button,
.secondary-button,
.play-button,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1;
}

.brand {
  position: relative;
  justify-self: start;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #050607;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(242, 181, 255, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.nav-links {
  position: relative;
  display: flex;
  width: min(680px, 100%);
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.nav-cta {
  transition:
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff;
}

.nav-actions {
  position: relative;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}

.language-picker {
  position: relative;
}

.topbar-language {
  z-index: 2;
  flex: 0 0 auto;
}

.language-toggle {
  box-sizing: border-box;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.language-toggle:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.language-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform 160ms ease;
}

.language-picker.open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(12, 13, 16, 0.9);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: none;
}

.language-picker.open .language-menu {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) scale(1) !important;
}

.language-menu button {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  padding: 0 10px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-checked="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.flag {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.language-label {
  min-width: 28px;
  text-align: left;
}

.nav-cta {
  box-sizing: border-box;
  gap: 4px;
  min-width: 118px;
  height: 40px;
  padding: 0 14px;
  border: 2px solid rgba(8, 9, 12, 0.86);
  border-radius: 7px;
  background:
    linear-gradient(180deg, #fbfbfc, #e5e6e8);
  color: #24262b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 830;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26),
    0 0 0 2px rgba(0, 0, 0, 0.68),
    0 12px 34px rgba(255, 255, 255, 0.08),
    0 16px 52px rgba(0, 0, 0, 0.42);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:not(:disabled):hover {
  transform: translateY(-1px);
}

.secondary-button.is-disabled,
.secondary-button:disabled {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  cursor: not-allowed;
}

.nav-cta svg,
.primary-button svg,
.secondary-button svg,
.waitlist-form button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
}

.download-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 18px;
}

.download-option-icon {
  display: grid;
  place-items: center;
  color: currentColor;
  line-height: 0;
}

.download-icons {
  --icon-eye: #f3f4f6;
}

.os-icon {
  display: block;
  color: currentColor;
  fill: currentColor;
  overflow: visible;
}

.download-icons .platform-icon {
  display: none !important;
  color: currentColor;
  fill: currentColor;
  overflow: visible;
}

.download-icons .platform-icon-download {
  display: block !important;
  width: 18px;
  height: 18px;
  color: currentColor;
}

html[data-device-platform="apple"] .download-icons .platform-icon,
html[data-device-platform="android"] .download-icons .platform-icon {
  display: none !important;
}

html[data-device-platform="apple"] .download-icons .platform-icon-apple,
html[data-device-platform="android"] .download-icons .platform-icon-android {
  display: block !important;
}

html[data-device-platform="apple"] .download-icons .platform-icon-download,
html[data-device-platform="android"] .download-icons .platform-icon-download {
  display: none !important;
}

.os-icon-apple,
.nav-cta .os-icon-apple {
  width: 17px;
  height: 17px;
  transform: translateY(-0.15px);
}

.os-icon-android,
.nav-cta .os-icon-android {
  width: 29px;
  height: 29px;
  transform: translateY(0.85px);
  transform-origin: center;
}

.nav-cta .platform-icon-apple {
  width: 20px;
  height: 20px;
  transform: translateY(-0.25px);
}

.nav-cta .platform-icon-android {
  width: 20px;
  height: 20px;
  transform: translateY(0.8px);
}

.nav-cta .platform-icon-download {
  width: 18px;
  height: 18px;
}

.android-eye {
  fill: var(--icon-eye);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 130px 24px 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after,
.hero-aurora,
.hero-sparks,
.hero-noise {
  display: none;
}

.hero-aurora,
.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-aurora span {
  position: absolute;
  left: 42%;
  top: 40%;
  width: 520px;
  height: 380px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 181, 255, 0.16), rgba(141, 47, 255, 0.08) 45%, transparent 72%);
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0.58;
  transform: translate(-50%, -50%) scale(1);
  animation: mistDrift 10s ease-in-out infinite alternate;
}

.hero-aurora span:nth-child(2) {
  width: 620px;
  height: 420px;
  left: 66%;
  top: 36%;
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 220, 255, 0.12), rgba(53, 16, 109, 0.08) 46%, transparent 74%);
  filter: blur(38px);
  animation-delay: 900ms;
}

.hero-aurora span:nth-child(3) {
  width: 480px;
  height: 360px;
  left: 52%;
  top: 58%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), rgba(242, 181, 255, 0.07) 42%, transparent 72%);
  filter: blur(44px);
  animation-delay: 1600ms;
}

.hero-aurora span:nth-child(4) {
  width: 760px;
  height: 520px;
  left: 48%;
  top: 44%;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at center, rgba(141, 47, 255, 0.1), transparent 68%);
  filter: blur(54px);
  animation-delay: 2400ms;
}

.hero-sparks {
  z-index: -1;
  opacity: 0.4;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 34%, rgba(101, 220, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 58%, rgba(242, 181, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 43% 66%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px);
  animation: sparksDrift 8s ease-in-out infinite alternate;
  mask-image: radial-gradient(circle at center, black 0 34%, transparent 68%);
}

.hero-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 46%, transparent 0 24rem, rgba(5, 6, 7, 0.16) 37rem, rgba(5, 6, 7, 0.72) 64rem),
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.08) 26%, rgba(5, 6, 7, 0.08) 74%, #050607 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.02), #050607 96%);
  content: "";
}

.hero-section::after {
  position: absolute;
  z-index: -2;
  inset: -18%;
  background:
    radial-gradient(circle at 35% 42%, rgba(242, 181, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 70% 38%, rgba(101, 220, 255, 0.08), transparent 25rem);
  content: "";
  opacity: 0.76;
  pointer-events: none;
  animation: fieldBreath 9s ease-in-out infinite alternate;
}

.hero-noise {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  text-align: center;
}

.hero-kicker,
.hero-intro,
.hero-actions {
  opacity: 0;
  animation: softRise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-kicker {
  animation-delay: 260ms;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 106px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.02em;
}

.hero-title span {
  display: block;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(38px) scale(0.985);
  animation: titleReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title span:nth-child(1) {
  animation-delay: 390ms;
}

.hero-title span:nth-child(2) {
  animation-delay: 520ms;
}

.hero-title span:nth-child(3) {
  animation-delay: 650ms;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 0 auto 32px;
  color: rgba(245, 246, 248, 0.84);
  font-size: 18px;
  line-height: 1.72;
}

.hero-intro {
  animation-delay: 900ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation-delay: 1080ms;
}

.primary-button,
.secondary-button {
  min-height: 46px;
  border-radius: 7px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.primary-button {
  padding: 0 20px;
  background: #f4f4f5;
  color: #101115;
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.secondary-button:disabled,
.secondary-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.section {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section,
.flow-card,
.scene-grid article,
.launch-panel,
.product-stage {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

body.reveal-ready .section,
body.reveal-ready .flow-card,
body.reveal-ready .scene-grid article,
body.reveal-ready .launch-panel,
body.reveal-ready .product-stage {
  opacity: 0;
  transform: translateY(28px);
}

.section.is-visible,
.section.is-visible .flow-card,
.section.is-visible .scene-grid article,
.section.is-visible .launch-panel,
.section.is-visible .product-stage {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.demo-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.flow-tabs {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: -10px auto 26px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  overflow-x: auto;
  scrollbar-width: none;
}

.flow-tabs::-webkit-scrollbar {
  display: none;
}

.flow-tabs button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 0 16px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  overflow: hidden;
}

.flow-tabs button::after {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.flow-tabs button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.25;
}

.flow-tabs button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.flow-tabs button.active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

.flow-tabs button.active::after {
  opacity: 1;
  animation: tabProgress 5.2s linear both;
}

.flow-board,
.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-board {
  perspective: 1200px;
}

.flow-card,
.scene-grid article,
.launch-panel,
.command-window,
.phone-screen {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.flow-card::after,
.scene-grid article::after,
.product-stage::after,
.launch-panel::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 70% 0%, rgba(66, 213, 255, 0.1), transparent 12rem);
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.flow-card > *,
.scene-grid article > *,
.product-stage > *,
.launch-panel > * {
  position: relative;
  z-index: 1;
}

.flow-card::before,
.scene-grid article::before,
.command-window::before,
.launch-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.14), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.flow-card:hover,
.scene-grid article:hover,
.command-window:hover,
.launch-panel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(141, 47, 255, 0.08);
}

.flow-card:hover::before,
.scene-grid article:hover::before,
.command-window:hover::before,
.launch-panel:hover::before {
  opacity: 1;
}

.flow-card {
  --i: 0;
  min-height: 248px;
  padding: 24px;
  transform-style: preserve-3d;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    opacity 360ms cubic-bezier(0.3, 0, 1, 1),
    filter 360ms cubic-bezier(0.3, 0, 1, 1),
    transform 360ms cubic-bezier(0.3, 0, 1, 1);
  transition-delay: calc(var(--i) * 52ms);
}

.flow-card.is-leaving {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(34px, 10px, 0) rotateX(6deg) scale(0.985);
}

.flow-card.is-entering {
  animation: cardWaveIn 640ms cubic-bezier(0.05, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--i) * 78ms);
}

.flow-card svg,
.scene-grid svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 1.9;
}

.flow-card h3,
.scene-grid h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.flow-card p,
.scene-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.demo-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 46px;
  align-items: center;
}

.demo-copy {
  max-width: 460px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.metrics-row div {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.metrics-row strong,
.metrics-row span {
  display: block;
}

.metrics-row strong {
  margin-bottom: 6px;
  font-size: 24px;
}

.metrics-row span {
  color: var(--muted);
  font-size: 13px;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 300px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(141, 47, 255, 0.2), transparent 22rem),
    rgba(255, 255, 255, 0.03);
}

.command-window {
  min-height: 480px;
  padding: 18px;
}

.window-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 13px;
}

.window-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5f57;
}

.window-header span:nth-child(2) {
  background: #ffbd2e;
}

.window-header span:nth-child(3) {
  background: #28c840;
}

.window-header p {
  margin: 0 0 0 auto;
}

.prompt-line,
.analysis-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prompt-line {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #dfe2e8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.prompt-line svg,
.analysis-list svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.chat-snippet {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.chat-snippet p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef0f4;
  line-height: 1.5;
}

.chat-snippet p:nth-child(2) {
  justify-self: end;
  background: rgba(141, 47, 255, 0.2);
}

.analysis-list {
  display: grid;
  gap: 12px;
}

.analysis-list div {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.phone-preview {
  padding: 12px;
  border-radius: 34px;
  background: #010203;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 28px 90px rgba(141, 47, 255, 0.12);
}

.phone-screen {
  min-height: 560px;
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #090a0d;
}

.album-art {
  display: grid;
  height: 220px;
  place-items: end start;
  padding: 20px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(66, 213, 255, 0.85), transparent 38%),
    radial-gradient(circle at 76% 68%, rgba(141, 47, 255, 0.95), transparent 42%),
    linear-gradient(135deg, #15171e, #050607);
  background-size: 120% 120%, 120% 120%, 100% 100%;
}

.album-art span {
  font-size: 30px;
  font-weight: 850;
}

.lyric-stack {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.lyric-stack p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.5;
}

.lyric-stack .active {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.player {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
}

.play-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111318;
  cursor: pointer;
}

.play-button svg {
  width: 18px;
  height: 18px;
}

.progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  animation: progressPulse 2.4s ease-in-out infinite;
}

.player > span {
  color: var(--muted);
  font-size: 13px;
}

.scenes-section {
  padding-top: 72px;
}

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

.scene-grid article {
  min-height: 236px;
  padding: 24px;
}

.launch-panel {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 44px;
  background:
    radial-gradient(circle at 85% 15%, rgba(66, 213, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 10% 90%, rgba(141, 47, 255, 0.18), transparent 22rem),
    var(--panel-strong);
}

.launch-panel h2 {
  max-width: 680px;
}

.launch-panel > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  width: min(620px, 100%);
  margin-top: 24px;
}

.waitlist-form label {
  color: #fff;
  font-weight: 780;
}

.waitlist-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input {
  min-width: 0;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 16px;
  outline: 0;
}

.waitlist-form input:focus {
  border-color: rgba(66, 213, 255, 0.5);
}

.waitlist-form button {
  height: 52px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #111318;
  cursor: pointer;
  font-weight: 820;
  padding: 0 18px;
}

.waitlist-form small {
  color: var(--soft);
}

.download-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.download-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.download-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 5, 0.74);
  backdrop-filter: blur(16px);
}

.download-dialog {
  position: relative;
  width: min(480px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(101, 220, 255, 0.15), transparent 14rem),
    radial-gradient(circle at 4% 100%, rgba(242, 181, 255, 0.18), transparent 16rem),
    rgba(14, 15, 19, 0.985);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(10px) scale(0.985);
  transition: transform 180ms ease;
}

.download-modal.open .download-dialog {
  transform: translateY(0) scale(1);
}

.download-dialog h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.download-dialog p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.68;
}

.download-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.download-close svg {
  width: 17px;
  height: 17px;
}

.download-options {
  display: grid;
  gap: 10px;
}

.download-options button,
.download-options a {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: not-allowed;
  opacity: 0.72;
  padding: 0 14px;
  text-align: left;
}

.download-options .download-option-web {
  border-color: rgba(110, 242, 207, 0.28);
  background: rgba(110, 242, 207, 0.08);
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.download-options .download-option-web.is-disabled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  cursor: not-allowed;
  opacity: 0.72;
}

.download-options .download-option-web.is-disabled:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  transform: none;
}

.download-options .download-option-web:hover {
  border-color: rgba(110, 242, 207, 0.46);
  background: rgba(110, 242, 207, 0.12);
  transform: translateY(-1px);
}

.download-option-icon {
  width: 32px;
  height: 32px;
  justify-self: center;
  color: currentColor;
  --icon-eye: rgba(14, 15, 19, 0.94);
}

.download-option-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.download-option-icon .os-icon-apple {
  width: 25px;
  height: 25px;
  transform: translateY(-0.1px);
}

.download-option-icon .os-icon-android {
  width: 29px;
  height: 29px;
  transform: translateY(2.05px);
}

.download-options strong,
.download-options small {
  display: block;
}

.download-options small {
  margin-top: 4px;
  color: var(--soft);
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  z-index: 31;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.76);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) scale(1);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.footer {
  display: flex;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 44px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  color: rgba(167, 171, 181, 0.62);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.68;
  gap: 22px;
  justify-content: space-between;
}

.footer-company,
.footer-right,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-company {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
  align-items: flex-start;
  gap: 6px;
}

.footer-company > * {
  display: block;
  width: 100%;
}

.footer-right {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-legal {
  justify-content: flex-end;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.footer a:hover {
  color: rgba(245, 246, 248, 0.76);
  text-shadow: none;
}

.footer a:focus-visible {
  outline: 1px solid rgba(117, 255, 223, 0.55);
  outline-offset: 4px;
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 181, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(101, 220, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, #060708 0%, #0a0b0f 52%, #050607 100%);
}

.legal-shell {
  min-height: 100vh;
}

.legal-header {
  display: flex;
  width: min(1120px, calc(100vw - 40px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  padding: 0 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 10, 12, 0.76);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 7px;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.legal-main {
  width: min(960px, calc(100vw - 40px));
  margin: 72px auto 76px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.legal-meta div,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(18, 20, 24, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 54px rgba(0, 0, 0, 0.24);
}

.legal-meta div {
  padding: 16px;
}

.legal-meta dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 720;
}

.legal-card {
  margin-top: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(23px, 3.6vw, 34px);
  line-height: 1.16;
}

.legal-card h3 {
  margin: 22px 0 8px;
  color: var(--pink);
  font-size: 17px;
}

.legal-card p,
.legal-card li {
  color: #cfd2da;
  font-size: 15px;
  line-height: 1.86;
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2em;
}

.legal-card a {
  color: #d9f7ff;
  text-decoration: underline;
  text-decoration-color: rgba(101, 220, 255, 0.38);
  text-underline-offset: 4px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.support-grid h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.legal-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 212, 255, 0.9));
  color: #08090d !important;
  font-weight: 820;
  text-decoration: none !important;
}

.legal-footer {
  margin-top: 40px;
}

.company-page .site-shell {
  min-height: 100vh;
}

.company-topbar {
  grid-template-columns: 170px minmax(280px, 1fr) auto;
}

.company-nav-links {
  width: min(360px, 100%);
}

.company-home-link {
  min-width: 108px;
  color: #24262b;
}

.company-main {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 168px 0 96px;
}

.company-hero {
  width: min(860px, 100%);
  margin: 0 auto 26px;
  text-align: center;
}

.company-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}

.company-hero p {
  margin: 0 auto;
  color: rgba(245, 246, 248, 0.82);
  font-size: 18px;
  line-height: 1.78;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 14px;
}

.company-info-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(101, 220, 255, 0.1), transparent 12rem),
    rgba(18, 20, 24, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.company-info-grid article::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(141, 47, 255, 0.1), transparent 14rem);
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.company-info-grid article > * {
  position: relative;
  z-index: 1;
}

.company-info-grid svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke-width: 1.9;
}

.company-info-grid h2 {
  margin: 26px 0 14px;
  font-size: 24px;
}

.company-info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.company-info-grid a {
  color: var(--text);
}

@media (max-width: 900px) {
  .topbar-cluster {
    top: 12px;
    width: calc(100vw - 24px);
    gap: 8px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 58px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: 760px;
  }

  .flow-board,
  .scene-grid,
  .demo-section,
  .product-stage {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    max-width: none;
  }

  .phone-preview {
    width: min(330px, 100%);
    margin: 0 auto;
  }

  .footer {
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .legal-meta,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .company-main {
    padding-top: 130px;
  }

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

@media (max-width: 560px) {
  .topbar-cluster {
    width: calc(100vw - 24px);
    gap: 7px;
  }

  .topbar {
    padding: 0 10px 0 14px;
  }

  .brand span:last-child,
  .language-label {
    display: none;
  }

  .nav-cta {
    min-width: 92px;
    padding: 0 11px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  .language-menu {
    right: -48px;
  }

  .hero-section {
    min-height: 720px;
    padding-inline: 16px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .demo-copy p,
  .launch-panel > p {
    font-size: 16px;
  }

  .section {
    width: calc(100vw - 24px);
    padding: 76px 0;
  }

  .hero-actions,
  .metrics-row,
  .waitlist-form div {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .flow-tabs {
    justify-content: flex-start;
    width: 100%;
    margin-top: -16px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .flow-card,
  .scene-grid article,
  .launch-panel {
    padding: 20px;
  }

  .company-main {
    width: calc(100vw - 24px);
    padding: 118px 0 76px;
  }

  .company-info-grid article {
    min-height: auto;
    padding: 22px;
  }

  .command-window {
    min-height: auto;
  }

  .product-stage {
    padding: 12px;
  }

  .phone-screen {
    min-height: 520px;
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes canvasReveal {
  0% {
    opacity: 0;
    filter: blur(18px) saturate(1.25) contrast(1.2);
    transform: translateY(18px) scale(1.03);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1.08) contrast(1.08);
    transform: translateY(0) scale(1);
  }
}

@keyframes navSheen {
  0%,
  42% {
    transform: translateX(-58%);
  }
  72%,
  100% {
    transform: translateX(62%);
  }
}

@keyframes fieldBreath {
  from {
    opacity: 0.52;
    transform: translate3d(-1.5%, 1%, 0) scale(1);
  }
  to {
    opacity: 0.86;
    transform: translate3d(1.5%, -1%, 0) scale(1.04);
  }
}

@keyframes mistDrift {
  from {
    opacity: 0.42;
    transform: translate(-51%, -49%) scale(0.96);
  }
  to {
    opacity: 0.68;
    transform: translate(-49%, -51%) scale(1.06);
  }
}

@keyframes tabProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes cardWaveIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(-42px, 12px, 0) rotateX(-7deg) scale(0.975);
  }
  55% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(5px, -2px, 0) rotateX(1deg) scale(1.01);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@keyframes panelBreath {
  from {
    opacity: 0.12;
  }
  to {
    opacity: 0.34;
  }
}

@keyframes stageFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes panelLift {
  from {
    transform: translate3d(0, 4px, 0);
  }
  to {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes phoneFloat {
  from {
    transform: translate3d(0, -4px, 0) rotate(-0.35deg);
  }
  to {
    transform: translate3d(0, 6px, 0) rotate(0.35deg);
  }
}

@keyframes albumGlow {
  from {
    background-position: 0% 0%, 100% 100%, center;
    filter: saturate(1);
  }
  to {
    background-position: 18% 12%, 82% 70%, center;
    filter: saturate(1.25);
  }
}

@keyframes lightSweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(48deg) translateX(-170px) scaleX(0.45);
  }
  18% {
    opacity: 0.82;
  }
  48% {
    opacity: 0.7;
    transform: translate(-50%, -50%) rotate(48deg) translateX(90px) scaleX(1);
  }
  74% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(48deg) translateX(220px) scaleX(0.68);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(48deg) translateX(220px) scaleX(0.68);
  }
}

@keyframes sparksDrift {
  from {
    transform: translate3d(-6px, 8px, 0) scale(1);
  }
  to {
    transform: translate3d(8px, -10px, 0) scale(1.04);
  }
}

@keyframes titleReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes promptGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    border-color: rgba(66, 213, 255, 0.36);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 26px rgba(66, 213, 255, 0.08);
  }
}

@keyframes listPulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.045);
  }
  50% {
    background: rgba(66, 213, 255, 0.08);
  }
}

@keyframes progressPulse {
  0%,
  100% {
    width: 54%;
    filter: saturate(1);
  }
  50% {
    width: 70%;
    filter: saturate(1.35);
  }
}

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