:root {
  --ink: #09090c;
  --muted: #555964;
  --line: #111116;
  --paper: #fffdfa;
  --soft: #f6f3ef;
  --blue: #3834f4;
  --teal: #54d6b3;
  --mint: #dff8ec;
  --yellow: #ffd12d;
  --red: #ff6b63;
  --green: #1e9d55;
  --shadow: 6px 6px 0 #0b0b0f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 10, 12, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  font-size: 22px;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 42px);
  flex: 1;
}

.nav button,
.link-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 2px;
  font-weight: 700;
}

.nav button.active {
  color: var(--blue);
  box-shadow: 0 3px 0 var(--blue);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 3px 3px 0 #0a0a0d;
  text-decoration: none;
}

.btn.primary {
  background: var(--blue);
  color: white;
}

.btn.teal {
  background: var(--teal);
}

.btn.ghost {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.62);
}

.btn.block {
  width: 100%;
}

.language {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #cfcbd7;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.language button {
  border: 0;
  padding: 8px 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.language button.active {
  background: #ecebff;
  color: var(--blue);
}

.page {
  padding: clamp(20px, 4vw, 56px);
}

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 5vw, 68px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.9) 0%, rgba(255, 253, 250, 0.72) 43%, rgba(255, 253, 250, 0.12) 100%),
    url("/assets/hero-bg.webp") center / cover;
  border-bottom: 2px solid rgba(10, 10, 10, 0.12);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h1 span {
  color: var(--blue);
}

.lead {
  max-width: 610px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 22px;
}

.platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.protocol-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 24px;
  font-weight: 900;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.card {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card.soft {
  box-shadow: none;
  border-color: rgba(12, 12, 16, 0.26);
}

.card-title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  color: #343743;
  margin-bottom: 12px;
}

.price {
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.price small {
  font-size: 18px;
}

.meter {
  height: 10px;
  background: #e5e1dc;
  border-radius: 99px;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: var(--value, 48%);
  background: var(--blue);
  border-radius: inherit;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 34px;
}

.feature-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
}

.icon-tile {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  box-shadow: 4px 4px 0 #0c0c12;
  font-size: 32px;
}

.icon-tile.teal {
  background: var(--teal);
  color: var(--ink);
}

.icon-tile.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.icon-tile.red {
  background: var(--red);
  color: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 24px;
}

.map-card img,
.map-bg {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.map-bg {
  min-height: 320px;
  background: url("/assets/network-map.webp") center / contain no-repeat;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 22px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: calc(100vh - 80px);
}

.sidebar {
  border-right: 1px solid rgba(10, 10, 12, 0.12);
  padding: 24px;
  background: rgba(255, 253, 250, 0.74);
}

.side-nav {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.side-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.side-nav button.active {
  border-color: #c7c5ff;
  background: #f1f0ff;
  color: var(--blue);
}

.content {
  padding: clamp(20px, 4vw, 42px);
}

.status-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.status-card > div {
  border-right: 1px solid rgba(10, 10, 12, 0.13);
  padding-right: 18px;
}

.status-card > div:last-child {
  border-right: 0;
}

.status {
  color: var(--green);
  font-size: 34px;
  font-weight: 950;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 22px;
  margin-top: 24px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form {
  display: grid;
  gap: 12px;
}

.input,
select {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid #c9c6bf;
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}

.tabs,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 16px;
  border: 1.5px solid #c9c6bf;
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.chip.active {
  border-color: var(--blue);
  color: var(--blue);
  background: #f0efff;
}

.node-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.node-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1.5px solid #ded9d1;
  border-radius: 8px;
  background: #fff;
}

.node-row.active {
  border-color: var(--blue);
  background: #f5f3ff;
}

.wallet-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.topup-option {
  min-height: 82px;
  border: 1.5px solid #cbc7bf;
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.topup-option.active {
  border: 2px solid var(--blue);
  color: var(--blue);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px 8px;
  border-bottom: 1px solid #e5e0d9;
  text-align: left;
  font-size: 14px;
}

.download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 253, 250, 0.96), rgba(255, 253, 250, 0.74)),
    url("/assets/hero-bg.webp") center / cover;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.client-card {
  min-height: 320px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.secondary-link:hover {
  text-decoration: underline;
}

.device-orbit {
  position: relative;
  min-height: 330px;
}

.device {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 12px;
  border: 3px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 12px 12px 0 #0b0b0f;
  padding: 20px;
  font-weight: 950;
}

.device span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--teal);
  font-size: 28px;
}

.device.desktop {
  inset: 20px 8px auto 0;
  min-height: 205px;
}

.device.phone {
  right: 0;
  bottom: 8px;
  width: 145px;
  min-height: 240px;
  background: #f2f0ff;
}

.setup-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}

.setup-strip ol {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: setup;
}

.setup-strip li {
  counter-increment: setup;
  padding: 10px 12px;
  border: 1.5px solid #d8d3cb;
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.setup-strip li::before {
  content: counter(setup) ". ";
  color: var(--blue);
}

.config-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.qr-wrap {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 12px 0 18px;
  padding: 14px;
  border: 1.5px solid #ded9d1;
  border-radius: 8px;
  background: #fff;
}

.qr-wrap img {
  width: 180px;
  height: 180px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 30px;
  padding: 36px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(10, 10, 12, 0.12);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 30;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

pre {
  overflow: auto;
  padding: 14px;
  border-radius: 8px;
  background: #101118;
  color: #e9f6ef;
  white-space: pre-wrap;
}

@media (max-width: 980px) {
  .topbar,
  .nav,
  .actions {
    flex-wrap: wrap;
  }

  .hero,
  .section-grid,
  .download-hero,
  .download-grid,
  .dashboard-layout,
  .two-col,
  .status-card,
  .setup-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 12, 0.12);
  }

  .side-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid,
  .trust-strip,
  .wallet-options {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .status-card > div {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 12, 0.12);
    padding-bottom: 14px;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .topbar .brand {
    min-width: 0;
    font-size: 19px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .nav button {
    font-size: 13px;
    text-align: center;
  }

  .actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .page,
  .hero,
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 46px;
  }

  .stats-grid,
  .trust-strip,
  .wallet-options,
  .download-grid,
  .three-col,
  .side-nav {
    grid-template-columns: 1fr;
  }

  .device-orbit {
    min-height: 250px;
  }

  .device.desktop {
    right: 42px;
  }

  .config-head,
  .quick-actions,
  .qr-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-actions {
    justify-content: stretch;
  }

  .qr-wrap img {
    width: 100%;
    max-width: 220px;
    height: auto;
  }

  .setup-strip ol {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 64px 1fr;
  }

  .icon-tile {
    width: 64px;
    height: 64px;
  }
}

/* Motion and visual polish */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background:
    repeating-linear-gradient(90deg, rgba(56, 52, 244, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(10, 10, 12, 0.025) 0 1px, transparent 1px 96px),
    var(--paper);
}

.topbar {
  animation: topbarEnter 520ms var(--ease-out-quint) both;
}

.brand img {
  filter: drop-shadow(0 8px 12px rgba(56, 52, 244, 0.18));
  transform-origin: 50% 70%;
  animation: markBreathe 4.8s var(--ease-out-quart) infinite;
}

.nav button,
.link-button,
.side-nav button,
.language,
.btn,
.chip,
.topup-option,
.node-row,
.input,
select,
.protocol-pill,
.icon-tile,
.accordion details {
  transition:
    transform 190ms var(--ease-out-quart),
    box-shadow 190ms var(--ease-out-quart),
    border-color 190ms var(--ease-out-quart),
    background 190ms var(--ease-out-quart),
    color 190ms var(--ease-out-quart),
    opacity 190ms var(--ease-out-quart);
}

.nav button:hover,
.link-button:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.language:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn:hover,
.chip:hover,
.topup-option:hover,
.node-row:hover,
.protocol-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #0a0a0d;
}

.protocol-pill:hover {
  box-shadow: 8px 8px 0 #0b0b0f;
}

.btn:active,
.chip:active,
.topup-option:active,
.node-row:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #0a0a0d;
}

.tap-pop {
  animation: tapPop 210ms var(--ease-out-quart);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 8%, rgba(84, 214, 179, 0.28) 28%, transparent 45%),
    repeating-linear-gradient(115deg, rgba(56, 52, 244, 0.16) 0 1px, transparent 1px 34px);
  mix-blend-mode: multiply;
  opacity: 0.34;
  transform: translateX(-18%);
  animation: signalDrift 10s var(--ease-out-quart) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -30%;
  z-index: -1;
  background: linear-gradient(104deg, transparent 36%, rgba(255, 255, 255, 0.58) 48%, transparent 59%);
  transform: translateX(-72%);
  animation: heroSweep 6.4s var(--ease-out-expo) infinite;
}

.hero > div:first-child {
  animation: heroCopyEnter 760ms var(--ease-out-expo) both;
}

.hero-stack {
  perspective: 1200px;
}

.hero-stack .card {
  animation: cardDeckEnter 720ms var(--ease-out-expo) both;
}

.hero-stack .card:nth-child(2) {
  animation-delay: 130ms;
}

.hero-stack .card:nth-child(3) {
  animation-delay: 260ms;
}

h1 {
  font-size: 88px;
}

.lead {
  font-size: 22px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.52) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 200ms var(--ease-out-quart), transform 520ms var(--ease-out-quart);
}

.card:hover {
  transform: translate(-3px, -3px);
  border-color: rgba(56, 52, 244, 0.75);
  box-shadow: 9px 9px 0 #0b0b0f;
}

.card:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.meter span {
  width: var(--target, var(--value, 48%));
  background: linear-gradient(90deg, var(--blue), #5652ff);
  transform-origin: left center;
  animation: meterGrow 900ms var(--ease-out-expo) both, meterPulse 2.8s var(--ease-out-quart) infinite 950ms;
}

.feature-card:hover .icon-tile {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 6px 6px 0 #0c0c12;
}

.map-bg {
  position: relative;
  overflow: hidden;
}

.map-bg::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: linear-gradient(90deg, transparent, rgba(84, 214, 179, 0.28), rgba(56, 52, 244, 0.2), transparent);
  transform: translateX(-80%);
  animation: mapScan 5.8s var(--ease-out-quint) infinite;
}

.accordion details:hover {
  transform: translateX(4px);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
}

.accordion details[open] {
  background: #f4f2ff;
  border-color: var(--blue);
}

.side-nav button:hover {
  transform: translateX(3px);
  border-color: #c7c5ff;
  background: rgba(241, 240, 255, 0.72);
}

.status {
  text-shadow: 0 0 22px rgba(30, 157, 85, 0.18);
  animation: statusPulse 2.4s var(--ease-out-quart) infinite;
}

.input:focus,
select:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 52, 244, 0.12);
  transform: translateY(-1px);
}

.toast {
  animation: toastIn 320ms var(--ease-out-expo) both;
}

.page,
.dashboard-layout {
  animation: pageEnter 520ms var(--ease-out-quint) both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out-quart) var(--reveal-delay, 0ms), transform 520ms var(--ease-out-quart) var(--reveal-delay, 0ms);
}

@media (min-width: 981px) and (max-width: 1180px) {
  h1 {
    font-size: 72px;
  }

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

  .status-card > div {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 12, 0.13);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .status-card > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 64px;
  }

  .lead {
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 19px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes topbarEnter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardDeckEnter {
  from {
    opacity: 0;
    transform: rotateX(7deg) translateY(28px);
  }
  to {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalDrift {
  from {
    transform: translateX(-18%);
    opacity: 0.22;
  }
  to {
    transform: translateX(10%);
    opacity: 0.4;
  }
}

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

@keyframes mapScan {
  0%,
  18% {
    transform: translateX(-80%);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  82%,
  100% {
    transform: translateX(80%);
    opacity: 0;
  }
}

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

@keyframes meterPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.14);
  }
}

@keyframes markBreathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-2deg);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.84;
  }
}

@keyframes tapPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
