/* ============================================================
   AASTHA · "Neural" design system
   Cool gray canvas, violet→pink→amber signature gradient,
   phone-frame presentation on desktop. Bengali echoes retained.
   ============================================================ */

:root {
  --bg: #F4F4F6;
  --surface: #FFFFFF;
  --surface-2: #F1F0F5;
  --surface-3: #E9E8F0;
  --ink: #1E2030;
  --muted: #5B6472;
  --faint: #9AA1AE;
  --line: rgba(30, 32, 48, 0.10);
  --brand: #7C3AED;
  --brand-deep: #6D28D9;
  --brand-deeper: #581C87;
  --brand-soft: #EDE9FE;
  --on-brand: #FFFFFF;
  --grad: linear-gradient(135deg, #6D28D9 0%, #DB2777 55%, #F59E0B 120%);
  --sun: #DB2777;
  --sun-soft: #FCE7F3;
  --gold: #F59E0B;
  --gold-soft: #FEF3C7;
  --sky: #2B6CB0;
  --sky-soft: #E3EEF9;
  --bezel: #1E2030;
  --shadow-1: 0 1px 2px rgba(30, 32, 48, 0.05), 0 4px 16px rgba(30, 32, 48, 0.06);
  --shadow-2: 0 2px 6px rgba(30, 32, 48, 0.08), 0 12px 32px rgba(30, 32, 48, 0.14);
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans Bengali", sans-serif;
  --tabbar-h: 62px;
  --phone-w: 470px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #12141F;
  --surface: #1B1E2E;
  --surface-2: #232738;
  --surface-3: #2B3042;
  --ink: #EDF0F7;
  --muted: #A6ACBD;
  --faint: #6E7688;
  --line: rgba(237, 240, 247, 0.12);
  --brand: #A78BFA;
  --brand-deep: #7C3AED;
  --brand-deeper: #4C1D95;
  --brand-soft: #2A2344;
  --on-brand: #FFFFFF;
  --sun: #F472B6;
  --sun-soft: #3B1830;
  --gold: #FBBF24;
  --gold-soft: #3A2E10;
  --sky: #6FA8DC;
  --sky-soft: #122436;
  --bezel: #05060A;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  min-height: 100dvh;
  transition: background-color .3s, color .3s;
}

img, svg { display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2.5px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--brand-deep); color: var(--on-brand);
  padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 8px; }

/* ---------- shell layout ---------- */
.frame {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px calc(var(--tabbar-h) + 28px);
}
main { min-width: 0; padding-top: 18px; }
.rail { display: none !important; } /* phone-first presentation everywhere */

/* Desktop phone-frame overrides live at the END of this file so they win the cascade. */

/* ---------- appbar ---------- */
.appbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
}
.appbar-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
}
.wordmark { display: flex; align-items: baseline; gap: 7px; user-select: none; }
.wordmark strong {
  font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
}
.wordmark .bn { font-size: 13px; font-weight: 600; color: var(--brand); }
.sun-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad); align-self: center;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sun) 18%, transparent);
}
.appbar-spacer { flex: 1; }

.iconbtn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--muted); border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .15s, color .15s;
}
.iconbtn:active { transform: scale(0.92); }
.iconbtn:hover { color: var(--ink); }

.lang-toggle {
  display: flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; background: var(--surface); font-size: 12.5px; font-weight: 700;
}
.lang-toggle button { padding: 7px 12px; color: var(--muted); }
.lang-toggle button[aria-pressed="true"] { background: var(--brand-deep); color: var(--on-brand); }

.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff; font-weight: 800; font-size: 15px;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--brand);
}

/* ---------- tabbar ---------- */
.rail-item, .rail-sep, .rail-foot { display: none; }

.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.tab-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--faint); position: relative;
}
.tab-item[aria-current="page"] { color: var(--brand); }
.tab-item[aria-current="page"]::before {
  content: ""; position: absolute; top: 0; width: 22px; height: 3px;
  border-radius: 0 0 4px 4px; background: var(--grad);
}
.tab-send {
  width: 46px; height: 46px; margin-top: -18px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff; box-shadow: var(--shadow-2);
  border: 3px solid var(--bg);
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  display: flex; align-items: center; gap: 8px;
}
.eyebrow .bn-echo { color: var(--faint); font-weight: 600; letter-spacing: 0; text-transform: none; }
.display { font-size: clamp(26px, 5vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
.page-head { margin: 6px 0 18px; display: grid; gap: 6px; }
.page-head .sub { color: var(--muted); font-size: 15px; max-width: 56ch; }

.stitch {
  height: 2px; border: 0; margin: 4px 0 0; width: 74px;
  background: repeating-linear-gradient(90deg, var(--sun) 0 9px, transparent 9px 16px);
}
.stitch.gold { background: repeating-linear-gradient(90deg, var(--gold) 0 9px, transparent 9px 16px); }
.stitch.wide { width: 100%; opacity: .5; }

.section { margin: 26px 0 14px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.section h2 { font-size: 17.5px; font-weight: 800; letter-spacing: -0.01em; }
.section .see-all { font-size: 12.5px; font-weight: 700; color: var(--brand); letter-spacing: .04em; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 18px;
}
.card.tight { padding: 14px; }
.card.brand {
  position: relative; overflow: hidden;
  background: var(--grad);
  color: #fff; border: 0;
}
.card.brand::before, .card.brand::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.13); pointer-events: none;
}
.card.brand::before { width: 210px; height: 210px; right: -70px; top: -90px; }
.card.brand::after { width: 130px; height: 130px; left: -50px; bottom: -60px; }
.card.brand > * { position: relative; z-index: 1; }
.card.brand .eyebrow { color: rgba(255, 255, 255, 0.85); }
.card.brand .eyebrow .bn-echo { color: rgba(255, 255, 255, 0.6); }
.card.gold-wash { background: linear-gradient(160deg, var(--gold-soft), var(--surface)); }

.ticket::before, .ticket::after { display: none; } /* perforations retired in this skin */

/* ---------- buttons / chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-md); padding: 13px 20px;
  font-weight: 800; font-size: 14.5px; letter-spacing: .01em;
  transition: transform .12s, filter .15s, background .15s;
  user-select: none;
}
.btn:active { transform: scale(0.97); }
.btn.solid { background: var(--grad); color: #fff; }
.btn.solid:hover { filter: brightness(1.08); }
.btn.sun { background: var(--sun); color: #fff; }
.btn.tonal { background: var(--brand-soft); color: var(--brand-deep); }
[data-theme="dark"] .btn.tonal { color: var(--ink); }
.btn.ghost { border: 1.5px solid var(--line); color: var(--ink); background: var(--surface); }
.btn.paper { background: #fff; color: var(--brand-deep); }
.btn.block { width: 100%; }
.btn.sm { padding: 8px 14px; font-size: 13px; border-radius: 12px; }
.btn[disabled] { opacity: .55; cursor: default; transform: none; }

.chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 8px 15px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  background: var(--surface); border: 1.5px solid var(--line); color: var(--muted);
  transition: background .15s, color .15s, border-color .15s;
}
.chip[aria-pressed="true"] { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.badge.green { background: var(--brand-soft); color: var(--brand-deep); }
[data-theme="dark"] .badge.green { color: var(--brand); }
.badge.red { background: var(--sun-soft); color: var(--sun); }
.badge.gold { background: var(--gold-soft); color: #B45309; }
[data-theme="dark"] .badge.gold { color: var(--gold); }
.badge.line { border: 1px solid var(--line); color: var(--muted); }
.badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ---------- service tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 359px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
.tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 4px 11px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s;
}
.tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.tile:active { transform: scale(.95); }
.tile .glyph {
  width: 44px; height: 44px; border-radius: 15px;
  display: grid; place-items: center; color: var(--tile-c, var(--brand));
  background: color-mix(in srgb, var(--tile-c, var(--brand)) 12%, var(--surface));
}
.tile span { font-size: 11px; font-weight: 700; letter-spacing: .02em; color: var(--muted); text-align: center; }

/* ---------- lists ---------- */
.rows { display: grid; gap: 10px; }
.row-card {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 13px 14px;
  transition: transform .15s;
}
.row-card:active { transform: scale(.985); }
.row-card .lead {
  width: 44px; height: 44px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 20px;
  background: var(--surface-2); color: var(--brand);
}
.row-card .body { flex: 1; min-width: 0; }
.row-card .body b { font-size: 14.5px; display: block; }
.row-card .body small { color: var(--muted); font-size: 12.5px; }
.row-card .end { text-align: right; flex: none; }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.input, select.input, textarea.input {
  width: 100%; padding: 13px 14px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--surface);
  font-size: 15px; font-weight: 600;
  transition: border-color .15s;
}
.input:focus { border-color: var(--brand); outline: none; }
.amount-input { display: flex; align-items: center; gap: 10px; }
.amount-input .input { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; }
.amount-input .cur { font-weight: 800; color: var(--muted); font-size: 15px; flex: none; }

.progress { height: 8px; border-radius: 99px; background: var(--surface-3); overflow: hidden; }
.progress i { display: block; height: 100%; border-radius: 99px; background: var(--grad); }

/* ---------- ghost numerals ---------- */
.steps { display: grid; gap: 10px; }
@media (min-width: 620px) { .steps.cols { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; overflow: hidden; padding: 16px 16px 16px 18px; }
.step .ghost {
  position: absolute; right: 6px; bottom: -18px;
  font-size: 84px; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in srgb, var(--brand) 26%, transparent);
  user-select: none; pointer-events: none;
}
.step b { display: block; font-size: 14.5px; margin-bottom: 3px; }
.step small { color: var(--muted); font-size: 12.5px; }

/* ---------- rate hero ---------- */
.rate-hero .rate-line { font-size: clamp(30px, 6.4vw, 38px); font-weight: 800; letter-spacing: -0.03em; }
.rate-hero .rate-line .unit { font-size: .48em; font-weight: 700; opacity: .8; letter-spacing: 0; }
.spark { width: 100%; height: 54px; margin-top: 6px; }
.spark polyline { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spark .area { fill: url(#sparkfill); stroke: none; opacity: .5; }

/* ---------- media rows ---------- */
.media-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 2px 10px; scrollbar-width: none; }
.media-scroll::-webkit-scrollbar { display: none; }
.poster {
  flex: none; width: 158px; border-radius: var(--r-md); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.poster .art {
  height: 96px; display: grid; place-items: center; font-size: 34px;
  color: #fff; position: relative;
}
.poster .art .dur {
  position: absolute; right: 7px; bottom: 7px;
  font-size: 10.5px; font-weight: 800; padding: 2px 7px; border-radius: 6px;
  background: rgba(0, 0, 0, 0.55); color: #fff;
}
.poster .meta { padding: 9px 11px 11px; }
.poster .meta b { font-size: 12.5px; line-height: 1.3; display: block; }
.poster .meta small { color: var(--muted); font-size: 11px; }

/* ---------- chat / community ---------- */
.chat-log { display: grid; gap: 10px; max-height: 300px; overflow-y: auto; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg .who {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 12.5px; font-weight: 800;
  background: var(--surface-3); color: var(--brand);
}
.chat-msg .bubble {
  background: var(--surface-2); border-radius: 4px 14px 14px 14px;
  padding: 8px 12px; font-size: 13.5px;
}
.chat-msg .bubble small { display: block; color: var(--faint); font-size: 10.5px; margin-bottom: 2px; font-weight: 700; }

/* ---------- sheet ---------- */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(18, 20, 31, 0.55);
  animation: fadein .2s;
}
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  max-width: 560px; margin: 0 auto;
  background: var(--surface);
  border-radius: 28px 28px 0 0;
  padding: 10px 20px calc(20px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-2);
  animation: sheetup .28s cubic-bezier(.2, .9, .3, 1);
  max-height: 82dvh; overflow-y: auto;
}
.sheet .grab { width: 40px; height: 4px; border-radius: 99px; background: var(--line); margin: 4px auto 14px; }
@keyframes sheetup { from { transform: translate(var(--sheet-x, 0), 60%); opacity: .4; } }
@media (min-width: 920px) { .sheet { --sheet-x: -50%; } }
@keyframes fadein { from { opacity: 0; } }

/* ---------- toast ---------- */
#toast-root { position: fixed; left: 0; right: 0; bottom: calc(var(--tabbar-h) + 18px); z-index: 120; display: grid; place-items: center; gap: 8px; pointer-events: none; }
.toast {
  background: var(--ink); color: var(--bg);
  border-radius: 999px; padding: 11px 20px;
  font-size: 13.5px; font-weight: 700;
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 8px;
  animation: toastin .25s cubic-bezier(.2, .9, .3, 1);
}
.toast.out { animation: toastout .25s forwards; }
@keyframes toastin { from { transform: translateY(14px); opacity: 0; } }
@keyframes toastout { to { transform: translateY(10px); opacity: 0; } }

/* ---------- FAB ---------- */
.fab {
  position: fixed; right: 16px; bottom: calc(var(--tabbar-h) + 18px); z-index: 70;
  width: 52px; height: 52px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff; box-shadow: var(--shadow-2);
  transition: transform .15s;
}
.fab:active { transform: scale(.9); }
.fab-ping {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 2.5px solid var(--bg);
}

/* ---------- misc ---------- */
.kv { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 13.5px; }
.kv b { font-size: 15px; }
.hr { border: 0; height: 1px; background: var(--line); margin: 14px 0; }
.grid-2 { display: grid; gap: 12px; }
@media (min-width: 680px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 12px; }
@media (min-width: 680px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.center { text-align: center; }
.stack { display: grid; gap: 12px; }
.mt { margin-top: 14px; } .mt-lg { margin-top: 22px; }
.muted { color: var(--muted); } .small { font-size: 12.5px; }
.gold-text { color: #B45309; } [data-theme="dark"] .gold-text { color: var(--gold); }
.sun-text { color: var(--sun); } .brand-text { color: var(--brand-deep); }
[data-theme="dark"] .brand-text { color: var(--brand); }

.accordion details { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); overflow: hidden; }
.accordion summary {
  list-style: none; cursor: pointer; padding: 14px 16px;
  font-weight: 700; font-size: 14.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 18px; color: var(--brand); font-weight: 800; }
.accordion details[open] summary::after { content: "–"; }
.accordion .acc-body { padding: 0 16px 14px; color: var(--muted); font-size: 13.5px; }

.empty-state { text-align: center; padding: 46px 20px; }
.empty-state .big { font-size: 52px; margin-bottom: 10px; }

/* page entrance */
.page-anim > * { animation: rise .4s cubic-bezier(.2, .9, .3, 1) backwards; }
.page-anim > *:nth-child(2) { animation-delay: .04s; }
.page-anim > *:nth-child(3) { animation-delay: .08s; }
.page-anim > *:nth-child(4) { animation-delay: .12s; }
.page-anim > *:nth-child(5) { animation-delay: .16s; }
.page-anim > *:nth-child(n+6) { animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }

::view-transition-old(root) { animation: fadeout .18s forwards; }
::view-transition-new(root) { animation: rise .26s cubic-bezier(.2, .9, .3, 1); }
@keyframes fadeout { to { opacity: 0; } }

/* ---------- small phones (≤359px) ---------- */
@media (max-width: 359px) {
  .appbar-inner { padding: 8px 10px; gap: 7px; }
  .wordmark strong { font-size: 18px; }
  .wordmark .bn { display: none; }
  .lang-toggle button { padding: 6px 9px; font-size: 11.5px; }
  .iconbtn, .avatar { width: 34px; height: 34px; }
  .frame { padding-left: 12px; padding-right: 12px; }
  .rate-hero .rate-line { font-size: 25px; }
  .card { padding: 15px; }
  .btn { padding: 12px 14px; font-size: 13.5px; }
  .display { font-size: 24px; }
}

/* ---------- short landscape phones ---------- */
@media (max-height: 430px) and (max-width: 919px) {
  :root { --tabbar-h: 46px; }
  .tab-item span:not(.tab-send) { display: none; }
  .tab-send { width: 38px; height: 38px; margin-top: -10px; border-radius: 13px; }
  .appbar-inner { padding: 6px 16px; }
  .fab { width: 44px; height: 44px; }
}

/* ---------- desktop: centered phone bezel, like a device on a desk ----------
   Kept last so these beat every base component rule in the cascade. */
@media (min-width: 920px) {
  body { overflow: hidden; }
  #app {
    width: var(--phone-w);
    height: calc(100dvh - 44px);
    max-height: 960px;
    margin: 22px auto;
    background: var(--bg);
    border-radius: 42px;
    box-shadow: 0 0 0 11px var(--bezel), 0 34px 90px rgba(30, 32, 48, 0.4);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    position: relative;
  }
  #app::-webkit-scrollbar { display: none; }
  .frame { max-width: none; }
  .tabbar {
    left: 50%; right: auto; transform: translateX(-50%);
    width: var(--phone-w);
    bottom: 22px;
    border-radius: 0 0 31px 31px;
    overflow: hidden;
  }
  .fab { right: calc(50% - var(--phone-w) / 2 + 14px); bottom: calc(22px + var(--tabbar-h) + 16px); }
  .sheet { width: var(--phone-w); left: 50%; right: auto; transform: translateX(-50%); bottom: 22px; border-radius: 28px 28px 31px 31px; }
  #toast-root { width: var(--phone-w); left: 50%; right: auto; transform: translateX(-50%); bottom: calc(22px + var(--tabbar-h) + 18px); }
  .appbar { border-radius: 31px 31px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
