:root {
  --bg: #07131f;
  --bg-deep: #040b12;
  --card: #10202c;
  --card-2: #112937;
  --card-soft: rgba(20, 47, 63, .72);
  --line: rgba(255, 255, 255, .075);
  --text: #f4f9fb;
  --muted: #8195a3;
  --blue: #42c5f5;
  --blue-2: #1387d2;
  --green: #45dfa2;
  --orange: #ffb86c;
  --danger: #ff6f7d;
  --radius: 22px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; min-height: 100%; background: #02070b; color: var(--text); }
body { overscroll-behavior: none; }
button, input, select { font: inherit; }
button { color: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 22px; height: 22px; fill: currentColor; display: block; }
.app-shell {
  position: relative;
  width: min(100%, 460px);
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(47, 174, 228, .18), transparent 35%),
    linear-gradient(180deg, #071722 0%, var(--bg) 45%, #071019 100%);
  box-shadow: 0 0 80px rgba(0, 0, 0, .65);
}
.screen { min-height: 100dvh; padding: max(18px, env(safe-area-inset-top)) 17px calc(112px + var(--safe-bottom)); }
.page { animation: page-in .24s ease both; }
@keyframes page-in { from { opacity: 0; transform: translateY(5px); } }

.topbar { display: flex; align-items: center; justify-content: space-between; min-height: 48px; margin-bottom: 15px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-avatar { width: 43px; height: 43px; border-radius: 15px; object-fit: cover; box-shadow: 0 7px 24px rgba(23, 162, 220, .22); }
.brand-name { font-size: 18px; font-weight: 760; letter-spacing: -.02em; }
.eyebrow { color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.icon-btn { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 15px; background: rgba(20, 40, 52, .75); display: grid; place-items: center; cursor: pointer; position: relative; }
.notification-dot { position: absolute; top: 9px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px #10202c; }
.page-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.page-title { margin: 0; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.page-subtitle { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.back-btn { width: 43px; height: 43px; border: 1px solid var(--line); background: var(--card-soft); border-radius: 15px; display: grid; place-items: center; cursor: pointer; }
.head-spacer { width: 43px; }

.card { background: linear-gradient(145deg, rgba(19, 42, 55, .98), rgba(11, 27, 38, .98)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(0, 0, 0, .12); }
.balance-card { position: relative; min-height: 204px; padding: 21px; overflow: hidden; isolation: isolate; }
.balance-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -78px; top: -84px; background: radial-gradient(circle, rgba(55, 195, 246, .27), transparent 68%); }
.balance-top { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 12px; }
.balance-label { color: #91a7b4; font-size: 13px; }
.balance-value { margin-top: 7px; font-weight: 760; font-size: 34px; letter-spacing: -.05em; }
.balance-crypto { margin-top: 5px; color: #9db0bb; font-size: 13px; }
.hero-animation { position: absolute; z-index: 1; width: 174px; height: 158px; right: -8px; bottom: -5px; display: grid; place-items: end center; pointer-events: none; filter: drop-shadow(0 0 18px rgba(71, 205, 255, .28)); animation: hero-float 4.8s ease-in-out infinite; }
.hero-animation::before { content: ""; position: absolute; width: 128px; height: 128px; right: 15px; bottom: 5px; border-radius: 50%; background: radial-gradient(circle, rgba(68, 201, 250, .2), transparent 68%); animation: hero-glow 2.8s ease-in-out infinite; }
.hero-animation img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; display: block; object-fit: contain; object-position: center bottom; mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%); }
.hero-motion { opacity: 0; transition: opacity .18s ease; }
.hero-motion.loaded { opacity: 1; }
@keyframes hero-float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -4px, 0); } }
@keyframes hero-glow { 0%, 100% { opacity: .55; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .hero-animation, .hero-animation::before { animation: none; } }
.user-chip { position: absolute; z-index: 3; bottom: 17px; left: 20px; display: flex; align-items: center; gap: 8px; padding: 6px 10px 6px 6px; border-radius: 999px; background: rgba(4, 14, 21, .66); border: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.user-chip img { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; }
.demo-pill { display: inline-flex; gap: 5px; align-items: center; color: var(--green); font-size: 11px; font-weight: 700; margin-top: 8px; }
.demo-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin: 18px 0; }
.action { background: transparent; border: 0; padding: 0; min-width: 0; cursor: pointer; }
.action-circle { width: 56px; height: 56px; margin: auto; display: grid; place-items: center; border-radius: 18px; color: #93ddfb; border: 1px solid rgba(90, 195, 240, .14); background: linear-gradient(160deg, rgba(25, 84, 112, .68), rgba(13, 35, 52, .96)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.action-label { display: block; margin-top: 8px; color: #cbd8df; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.section-row { display: flex; justify-content: space-between; align-items: baseline; margin: 23px 1px 12px; }
.section-title { font-size: 17px; font-weight: 730; margin: 0; }
.section-link { border: 0; background: transparent; color: var(--blue); font-size: 12px; cursor: pointer; }
.assets-list { display: grid; gap: 10px; }
.asset-row { width: 100%; border: 1px solid var(--line); background: rgba(14, 34, 45, .72); border-radius: 19px; padding: 14px; color: var(--text); display: flex; align-items: center; cursor: pointer; text-align: left; }
.coin { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; flex: none; }
.coin img { width: 29px; height: 29px; }
.asset-main { min-width: 0; margin-left: 12px; flex: 1; }
.asset-name { font-weight: 700; font-size: 14px; }
.asset-rate { color: var(--muted); font-size: 11px; margin-top: 4px; }
.asset-value { text-align: right; }
.asset-rub { font-weight: 690; font-size: 14px; }
.asset-amount { color: var(--muted); font-size: 11px; margin-top: 4px; }
.asset-rub, .asset-amount { display: block; white-space: nowrap; }
.network-tag { display: inline-flex; border-radius: 999px; padding: 3px 7px; background: rgba(70, 193, 242, .1); color: #84d9f9; font-size: 9px; font-weight: 750; margin-left: 5px; vertical-align: 2px; }

.promo { position: relative; padding: 18px; min-height: 122px; overflow: hidden; background: linear-gradient(130deg, #124362, #0e283a 58%, #15242e); }
.promo-kicker { color: #7fd9fb; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.promo-title { margin: 8px 0 5px; width: 70%; font-size: 17px; line-height: 1.25; }
.promo-text { color: #8ea4b1; font-size: 11px; width: 68%; line-height: 1.4; }
.promo-qr { position: absolute; width: 83px; height: 83px; right: 18px; top: 20px; padding: 8px; border-radius: 18px; background: rgba(188, 237, 255, .95); color: #082337; }
.promo-qr .icon { width: 100%; height: 100%; }

.bottom-nav { position: fixed; z-index: 50; bottom: 0; left: 50%; width: min(calc(100% - 20px), 440px); transform: translateX(-50%); padding: 8px 8px calc(8px + var(--safe-bottom)); display: grid; grid-template-columns: repeat(5, 1fr); background: rgba(4, 12, 19, .88); border: 1px solid rgba(255,255,255,.08); border-bottom: 0; border-radius: 27px 27px 0 0; backdrop-filter: blur(20px); box-shadow: 0 -10px 38px rgba(0,0,0,.25); }
.nav-item { min-width: 0; border: 0; background: transparent; color: #637886; padding: 7px 2px 2px; display: flex; align-items: center; flex-direction: column; gap: 5px; cursor: pointer; font-size: 9px; }
.nav-item .icon { width: 21px; height: 21px; }
.nav-item.active { color: #71d2f6; }
.nav-item.qr { transform: translateY(-20px); }
.nav-item.qr .nav-icon { width: 57px; height: 57px; border-radius: 20px; display: grid; place-items: center; color: #041019; background: linear-gradient(140deg, #70dbff, #2d9ee3); box-shadow: 0 9px 25px rgba(42, 171, 226, .35), 0 0 0 6px #07131f; }
.nav-item.qr .icon { width: 27px; height: 27px; }
.nav-item.qr span:last-child { transform: translateY(9px); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-tile { position: relative; min-height: 138px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, #133a52, #0d2231); padding: 17px; text-align: left; cursor: pointer; overflow: hidden; }
.service-tile::after { content: ""; position: absolute; width: 90px; height: 90px; right: -25px; bottom: -25px; border-radius: 50%; background: rgba(58, 192, 243, .1); }
.service-icon { width: 44px; height: 44px; border-radius: 15px; display: grid; place-items: center; background: rgba(86, 208, 252, .14); color: #79d8fb; }
.service-name { margin-top: 20px; font-size: 14px; font-weight: 700; }
.service-desc { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.badge { position: absolute; right: 12px; top: 12px; border-radius: 99px; padding: 4px 7px; background: rgba(255, 184, 108, .13); color: var(--orange); font-size: 9px; font-weight: 800; }

.scanner { position: relative; height: calc(100dvh - 157px); min-height: 510px; margin: -3px -2px 0; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at center, #143d52, #07131f 70%); border: 1px solid var(--line); }
.scanner-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; display: none; }
.scanner.active .scanner-video { display: block; }
.scanner-bg { position: absolute; inset: 0; background: linear-gradient(rgba(5, 15, 22, .18), rgba(3, 10, 16, .74)); }
.scanner-head { position: absolute; z-index: 2; top: 18px; left: 18px; right: 18px; text-align: center; }
.scanner-title { font-weight: 740; font-size: 18px; }
.scanner-sub { color: #b3c3cb; font-size: 12px; margin-top: 6px; }
.scan-frame { position: absolute; z-index: 2; width: 230px; height: 230px; top: 46%; left: 50%; transform: translate(-50%, -50%); border-radius: 27px; box-shadow: 0 0 0 999px rgba(2, 9, 14, .36); }
.corner { position: absolute; width: 38px; height: 38px; border-color: #79ddff; border-style: solid; }
.c1 { left: 0; top: 0; border-width: 3px 0 0 3px; border-radius: 20px 0 0 0; }
.c2 { right: 0; top: 0; border-width: 3px 3px 0 0; border-radius: 0 20px 0 0; }
.c3 { left: 0; bottom: 0; border-width: 0 0 3px 3px; border-radius: 0 0 0 20px; }
.c4 { right: 0; bottom: 0; border-width: 0 3px 3px 0; border-radius: 0 0 20px 0; }
.scan-line { position: absolute; left: 15px; right: 15px; height: 2px; top: 18px; background: linear-gradient(90deg, transparent, #6ee1ff, transparent); filter: drop-shadow(0 0 6px #3cc9f8); animation: scan 2.4s ease-in-out infinite alternate; }
@keyframes scan { to { transform: translateY(192px); } }
.scanner-actions { position: absolute; z-index: 3; left: 18px; right: 18px; bottom: 20px; display: grid; gap: 10px; }
.button { min-height: 52px; border: 0; border-radius: 17px; padding: 0 20px; font-weight: 720; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; }
.button.primary { background: linear-gradient(135deg, #69d9ff, #249adb); color: #04131e; box-shadow: 0 12px 28px rgba(31, 157, 216, .22); }
.button.secondary { background: rgba(255,255,255,.08); color: #dce7ec; border: 1px solid rgba(255,255,255,.07); }
.button.danger { background: rgba(255, 111, 125, .12); color: #ff9aa4; border: 1px solid rgba(255,111,125,.16); }
.button:disabled { opacity: .45; cursor: default; }
.hidden-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.segments { display: grid; grid-template-columns: repeat(3, 1fr); padding: 4px; border-radius: 16px; background: rgba(255,255,255,.045); margin: 17px 0 21px; }
.segment { border: 0; background: transparent; color: var(--muted); border-radius: 13px; padding: 10px 4px; font-size: 11px; cursor: pointer; }
.segment.active { background: #173548; color: #dff7ff; box-shadow: 0 5px 14px rgba(0,0,0,.16); }
.day-title { margin: 20px 2px 9px; color: #78909e; font-size: 11px; font-weight: 720; text-transform: uppercase; letter-spacing: .06em; }
.tx-list { display: grid; gap: 9px; }
.tx { display: flex; align-items: center; width: 100%; color: var(--text); border: 1px solid var(--line); background: rgba(14, 34, 45, .72); padding: 13px; border-radius: 18px; text-align: left; cursor: pointer; }
.tx-icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.tx-icon.in { color: var(--green); background: rgba(69,223,162,.1); transform: rotate(90deg); }
.tx-icon.out { color: #72d4f7; background: rgba(66,197,245,.1); transform: rotate(-45deg); }
.tx-icon.pay { color: var(--orange); background: rgba(255,184,108,.1); }
.tx-main { flex: 1; min-width: 0; margin-left: 11px; }
.tx-title { font-size: 13px; font-weight: 680; }
.tx-meta { color: var(--muted); font-size: 10px; margin-top: 5px; }
.tx-value { text-align: right; font-size: 12px; font-weight: 700; }
.tx-value.plus { color: var(--green); }
.tx-status { color: var(--muted); font-size: 9px; margin-top: 5px; }

.profile-hero { padding: 18px; display: flex; align-items: center; }
.profile-photo { width: 62px; height: 62px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); }
.profile-main { flex: 1; margin-left: 13px; }
.profile-name { font-size: 17px; font-weight: 740; }
.profile-id { color: var(--muted); font-size: 11px; margin-top: 5px; }
.level { display: inline-flex; margin-top: 7px; border-radius: 99px; padding: 4px 8px; background: rgba(69,223,162,.1); color: var(--green); font-size: 9px; font-weight: 750; }
.menu-label { margin: 22px 3px 8px; color: #687f8d; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-card { overflow: hidden; }
.menu-row { width: 100%; min-height: 57px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; padding: 9px 14px; cursor: pointer; text-align: left; }
.menu-row:last-child { border-bottom: 0; }
.menu-icon { width: 37px; height: 37px; border-radius: 12px; display: grid; place-items: center; color: #78d4f5; background: rgba(60, 171, 218, .1); }
.menu-icon .icon { width: 18px; height: 18px; }
.menu-title { flex: 1; margin-left: 11px; font-size: 13px; }
.menu-right { color: var(--muted); font-size: 11px; margin-right: 8px; }
.menu-row > .icon { width: 16px; height: 16px; color: #526874; }

.sheet-backdrop { position: fixed; z-index: 100; inset: 0; background: rgba(0, 4, 7, .72); backdrop-filter: blur(5px); animation: fade .18s ease both; }
.sheet { position: fixed; z-index: 101; bottom: 0; left: 50%; width: min(100%, 460px); max-height: 92dvh; overflow-y: auto; transform: translateX(-50%); background: linear-gradient(180deg, #102634, #08151f); border: 1px solid rgba(255,255,255,.08); border-bottom: 0; border-radius: 29px 29px 0 0; padding: 10px 18px calc(22px + var(--safe-bottom)); box-shadow: 0 -20px 60px rgba(0,0,0,.42); animation: sheet-in .25s ease both; }
@keyframes sheet-in { from { transform: translate(-50%, 40px); opacity: .4; } }
@keyframes fade { from { opacity: 0; } }
.sheet-handle { width: 42px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.16); margin: 1px auto 18px; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }
.sheet-title { font-size: 20px; font-weight: 760; letter-spacing: -.025em; }
.sheet-close { width: 36px; height: 36px; border: 0; border-radius: 12px; display: grid; place-items: center; color: #8ca0ab; background: rgba(255,255,255,.06); cursor: pointer; }
.sheet-close .icon { width: 19px; height: 19px; }
.field { margin: 14px 0; }
.field-label { display: block; color: #90a4af; font-size: 11px; margin: 0 0 7px 3px; }
.input-wrap { min-height: 57px; padding: 0 14px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 17px; background: rgba(3, 13, 19, .38); }
.input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 15px; }
.select { appearance: none; cursor: pointer; }
.input-hint { color: var(--muted); font-size: 11px; margin-top: 7px; line-height: 1.4; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); padding: 14px; color: var(--text); text-align: left; cursor: pointer; }
.choice.active { border-color: rgba(92, 211, 255, .45); background: rgba(61, 177, 222, .1); }
.choice-top { display: flex; align-items: center; gap: 9px; font-weight: 720; }
.choice-top img { width: 27px; height: 27px; }
.choice-meta { color: var(--muted); font-size: 10px; margin-top: 8px; }
.summary { border: 1px solid var(--line); border-radius: 19px; background: rgba(4, 17, 24, .4); padding: 14px; margin: 15px 0; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; margin: 9px 0; color: var(--muted); font-size: 12px; }
.summary-row strong { color: #e9f3f7; text-align: right; font-weight: 690; }
.summary-row.total { padding-top: 12px; border-top: 1px solid var(--line); color: #d7e7ed; }
.summary-row.total strong { font-size: 15px; }
.qr-box { width: 190px; height: 190px; margin: 8px auto 16px; padding: 15px; border-radius: 25px; color: #05141e; background: #eefcff; box-shadow: 0 12px 30px rgba(31, 174, 226, .13); }
.address { display: flex; align-items: center; gap: 9px; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: rgba(4,13,19,.42); color: #aec0c8; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; word-break: break-all; }
.address button { border: 0; background: transparent; color: var(--blue); padding: 4px; cursor: pointer; flex: none; }
.address .icon { width: 18px; height: 18px; }
.notice { display: flex; gap: 10px; border-radius: 16px; padding: 12px; margin: 13px 0; color: #8ba3b0; background: rgba(71, 191, 235, .07); font-size: 10px; line-height: 1.45; }
.notice .icon { width: 17px; height: 17px; color: var(--blue); flex: none; }

.success-view { padding: 18px 0 5px; text-align: center; }
.success-icon { width: 78px; height: 78px; margin: 0 auto 17px; display: grid; place-items: center; border-radius: 27px; background: rgba(69,223,162,.12); color: var(--green); box-shadow: 0 0 40px rgba(69,223,162,.08); }
.success-icon .icon { width: 38px; height: 38px; }
.success-title { font-size: 23px; font-weight: 780; }
.success-text { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 8px auto 20px; max-width: 280px; }
.searching { padding: 27px 0; text-align: center; }
.radar { position: relative; width: 125px; height: 125px; margin: 0 auto 22px; border-radius: 50%; border: 1px solid rgba(77,205,250,.22); display: grid; place-items: center; }
.radar::before, .radar::after { content: ""; position: absolute; inset: 15px; border-radius: 50%; border: 1px solid rgba(77,205,250,.19); animation: radar 1.8s ease-out infinite; }
.radar::after { inset: 34px; animation-delay: .5s; }
@keyframes radar { 0% { transform: scale(.7); opacity: .3; } 70% { opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.radar-center { width: 48px; height: 48px; border-radius: 18px; background: linear-gradient(135deg, #70ddff, #2399dc); color: #04131d; display: grid; place-items: center; z-index: 2; }

.detail-amount { text-align: center; padding: 15px 0 22px; }
.detail-amount .coin { margin: auto; width: 58px; height: 58px; }
.detail-value { margin-top: 12px; font-size: 29px; font-weight: 780; letter-spacing: -.04em; }
.detail-rub { color: var(--muted); font-size: 13px; margin-top: 5px; }
.status-chip { display: inline-flex; gap: 6px; align-items: center; margin-top: 9px; border-radius: 99px; padding: 6px 10px; background: rgba(69,223,162,.1); color: var(--green); font-size: 10px; font-weight: 750; }
.status-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pin-dots { display: flex; justify-content: center; gap: 13px; margin: 24px 0; }
.pin-dot { width: 13px; height: 13px; border-radius: 50%; background: rgba(255,255,255,.12); }
.pin-dot.filled { background: var(--blue); box-shadow: 0 0 15px rgba(66,197,245,.4); }
.pin-pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pin-key { height: 57px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.04); color: var(--text); font-size: 18px; cursor: pointer; }

.toast-root { position: fixed; z-index: 200; left: 50%; bottom: calc(103px + var(--safe-bottom)); width: min(calc(100% - 40px), 410px); transform: translateX(-50%); pointer-events: none; }
.toast { width: fit-content; max-width: 100%; margin: 8px auto; border-radius: 14px; padding: 11px 15px; color: #dceaf0; background: rgba(5, 14, 21, .94); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 10px 30px rgba(0,0,0,.28); font-size: 11px; animation: toast-in .2s ease both; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

@media (min-width: 700px) {
  body { padding: 20px 0; }
  .app-shell { min-height: calc(100dvh - 40px); border-radius: 32px; }
  .screen { min-height: calc(100dvh - 40px); }
  .bottom-nav { bottom: 20px; border-radius: 27px; border-bottom: 1px solid rgba(255,255,255,.08); }
}
