:root {
  --bg: #050505;
  --card: #151514;
  --card-soft: #1e1e1b;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --yellow: #ffd322;
  --yellow-2: #ffb900;
  --text: #f7f4ea;
  --muted: #aaa69d;
  --dim: #77736b;
  --green: #55dc78;
  --green-bg: rgba(38, 139, 73, 0.32);
  --radius: 8px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 211, 34, 0.08), transparent 18rem),
    linear-gradient(180deg, #070707 0%, #020202 100%);
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 39%, rgba(255, 211, 34, 0.11), transparent 13rem),
    radial-gradient(circle at 50% 34%, rgba(255, 211, 34, 0.035), transparent 22rem),
    linear-gradient(145deg, #10100f 0%, #050505 58%, #11110f 100%);
  color: var(--text);
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.splash-screen::before,
.splash-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.splash-screen::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 17rem, rgba(255, 211, 34, 0.16) 17.1rem, transparent 17.22rem),
    radial-gradient(circle at 50% 47%, transparent 0 11.9rem, rgba(255, 211, 34, 0.22) 12rem, transparent 12.14rem);
  opacity: 0.26;
}

.splash-screen::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

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

.splash-orbit {
  position: absolute;
  top: 15.5%;
  left: 50%;
  width: min(78vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 186, 0, 0.18);
  transform: translateX(-50%);
}

.splash-orbit::before,
.splash-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(255, 186, 0, 0.16);
}

.splash-orbit::before {
  inset: 38px;
}

.splash-orbit::after {
  inset: 78px;
  border-color: rgba(255, 255, 255, 0.08);
}

.splash-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 430px);
  min-height: min(100vh, 760px);
  padding: 20vh 34px 9vh;
  text-align: center;
}

.splash-hero {
  position: relative;
  width: min(78vw, 310px);
  aspect-ratio: 1.04;
  margin-bottom: 22px;
}

.splash-ring {
  position: absolute;
  left: 50%;
  bottom: 9%;
  display: grid;
  place-items: center;
  width: 66%;
  aspect-ratio: 1;
  border: 6px solid rgba(255, 211, 34, 0.94);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 211, 34, 0.12), transparent 38%),
    linear-gradient(145deg, #191917, #090909);
  box-shadow:
    0 0 28px rgba(255, 211, 34, 0.42),
    inset 0 0 24px rgba(255, 211, 34, 0.08);
  transform: translateX(-50%);
}

.splash-ring span {
  color: var(--yellow);
  font-size: clamp(4.2rem, 19vw, 6.1rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.splash-hero img {
  position: absolute;
  left: 48%;
  bottom: 3%;
  width: 92%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 14px rgba(255, 211, 34, 0.28));
  transform: translateX(-50%);
}

.splash-content h1 {
  margin: 0;
  color: var(--yellow);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: clamp(3.65rem, 17vw, 5.4rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(255, 246, 166, 0.26),
    0 18px 42px rgba(0, 0, 0, 0.6);
}

.splash-content p {
  margin: 22px 0 0;
  color: #969696;
  font-size: clamp(1.2rem, 5.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.splash-content p strong {
  color: var(--yellow);
  font-weight: 820;
}

.splash-loading {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 290px);
  margin-top: auto;
  padding-top: 14vh;
}

.splash-loading > span {
  color: #9c9c9a;
  font-size: 1.08rem;
  font-weight: 520;
}

.splash-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 100%;
  height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(28, 28, 27, 0.94), rgba(11, 11, 10, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.36);
}

.splash-progress i {
  display: block;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffdc30 0%, #ffbd08 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 12px rgba(255, 198, 0, 0.28);
  animation: splash-segment 1.22s ease-in-out infinite;
}

.splash-progress i:nth-child(2) {
  animation-delay: 90ms;
}

.splash-progress i:nth-child(3) {
  animation-delay: 180ms;
}

.splash-progress i:nth-child(4) {
  animation-delay: 270ms;
}

.splash-progress i:nth-child(5) {
  animation-delay: 360ms;
}

.splash-progress i:nth-child(6) {
  animation-delay: 450ms;
}

.splash-progress i:nth-child(7) {
  animation-delay: 540ms;
}

.splash-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 64px;
  color: #8f8f8d;
}

.splash-trust span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  clip-path: polygon(50% 0%, 93% 18%, 82% 88%, 50% 100%, 18% 88%, 7% 18%);
}

.splash-trust img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.splash-trust b {
  font-size: 1rem;
  font-weight: 500;
}

.app {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(14px, calc(var(--safe-top) + 6px)) 18px calc(84px + var(--safe-bottom));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 211, 34, 0.07), transparent 15rem),
    linear-gradient(180deg, #080808 0%, #030303 100%);
}

.view {
  display: none;
  animation: rise 180ms ease both;
}

.view-active {
  display: block;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

h1 {
  margin-bottom: 0;
  color: var(--yellow);
  font-size: 2.34rem;
  font-weight: 800;
  line-height: 1;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.1;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.05;
}

.bell-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(180deg, #1c1c1b, #0f0f0e);
  color: #f4f1e7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.bell-button span {
  position: absolute;
  top: 2px;
  right: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 211, 34, 0.65);
}

.lang-switcher {
  position: relative;
  z-index: 5;
}

.lang-button {
  display: inline-grid;
  grid-template-columns: 1fr 16px;
  align-items: center;
  gap: 5px;
  min-width: 58px;
  height: 42px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31, 31, 29, 0.98), rgba(13, 13, 12, 0.98));
  color: #f4f1e7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 12px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.lang-button > span {
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 20px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.lang-button i,
.lang-button svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 138px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(13, 13, 12, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lang-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 6px;
  background: transparent;
  color: #ddd7cc;
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
}

.lang-menu button span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 18px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 850;
}

.lang-menu button:hover {
  background: rgba(255, 211, 34, 0.1);
  color: var(--yellow);
}

.balance-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  margin-top: 24px;
  padding: 12px 13px 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 48%, rgba(255, 211, 34, 0.09), transparent 4.8rem),
    linear-gradient(100deg, rgba(24, 24, 22, 0.98), rgba(11, 11, 10, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 38px rgba(0, 0, 0, 0.32);
}

.balance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 24%),
    radial-gradient(circle at 91% 54%, rgba(255, 185, 0, 0.1), transparent 4.2rem);
}

.balance-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.balance-copy > span,
.wallet-card > span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.balance-copy strong {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  color: var(--yellow);
  font-size: 1.66rem;
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: 0;
}

.balance-copy small {
  color: var(--yellow);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1;
}

.balance-ton-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.balance-ton-badge img {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: none;
}

.home-section {
  margin-top: 32px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--yellow);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
}

.view-all i {
  width: 22px;
  height: 22px;
}

.active-scooters {
  display: grid;
  gap: 10px;
}

.active-card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 12px;
  min-height: 148px;
  padding: 13px 14px 13px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(17, 17, 16, 0.99) 56%, rgba(12, 12, 11, 0.99));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.scooter-stage {
  position: relative;
  min-height: 122px;
}

.scooter-stage::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 6px;
  bottom: 8px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
}

.scooter-stage img {
  position: absolute;
  left: 48%;
  bottom: 2px;
  z-index: 1;
  width: 184px;
  height: 136px;
  object-fit: contain;
  filter: contrast(1.04) saturate(1.02) drop-shadow(0 16px 18px rgba(0, 0, 0, 0.5));
  transform: translateX(-50%) scale(var(--asset-scale));
}

.active-copy {
  min-width: 0;
}

.active-top {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 8px;
  align-items: start;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-top: 8px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 550;
}

.ready .status-pill {
  background: rgba(255, 211, 34, 0.18);
  color: var(--yellow);
}

.lock-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #232321, #171716);
  color: var(--yellow);
  cursor: pointer;
  line-height: 0;
}

.lock-button i,
.lock-button svg {
  display: block;
  width: 13px;
  height: 13px;
  margin: 0;
}

.mobility-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  margin-top: 12px;
}

.mobility-stats div {
  min-width: 0;
  padding: 0 5px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.mobility-stats div:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 5px;
}

.mobility-stats div:nth-child(2) {
  padding-left: 5px;
}

.mobility-stats i {
  width: 9px;
  height: 9px;
  color: #e9e6dc;
}

.mobility-stats strong,
.mobility-stats span {
  display: block;
}

.mobility-stats strong {
  margin-top: 5px;
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 550;
  line-height: 1;
  white-space: nowrap;
}

.mobility-stats span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.page-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 96px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
}

.section,
.history-list,
.shop-list {
  margin-top: 16px;
}

.shop-list,
.history-list {
  display: grid;
  gap: 10px;
}

.shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  margin-bottom: 13px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.shop-head h2 {
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1;
}

.shop-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.32;
}

.shop-cart {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.shop-cart i,
.shop-cart svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.35;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feature-card,
.wallet-card,
.scooter-card,
.history-item,
.empty-state {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(31, 31, 29, 0.98), rgba(16, 16, 15, 0.98));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.scooter-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  min-height: 144px;
  padding: 14px;
  overflow: hidden;
}

.scooter-card.shop-card {
  grid-template-columns: 116px 1fr;
  gap: 7px 8px;
  min-height: 148px;
  padding: 10px 10px 9px 14px;
  border-color: rgba(255, 255, 255, 0.13);
  border-left: 2px solid rgba(255, 211, 34, 0.78);
  background: linear-gradient(105deg, rgba(28, 28, 26, 0.98), rgba(16, 16, 15, 0.99));
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.24);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.shop-visual {
  position: relative;
  grid-row: span 2;
  min-height: 114px;
}

.shop-visual::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 2px;
  bottom: 5px;
  height: 21px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.56), transparent 72%);
}

.shop-visual img {
  position: absolute;
  left: 50%;
  bottom: 5px;
  z-index: 1;
  width: 166px;
  height: 122px;
  object-fit: contain;
  filter: contrast(1.04) saturate(1.03) drop-shadow(0 11px 13px rgba(0, 0, 0, 0.5));
  transform: translateX(-50%) scale(var(--asset-scale));
}

.shop-copy {
  min-width: 0;
  padding-top: 9px;
}

.shop-copy h3 {
  margin-bottom: 9px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.05;
}

.shop-yield {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 9px;
  color: #dedbd2;
  font-size: 0.71rem;
  line-height: 1.18;
}

.shop-yield strong {
  color: #f1eee4;
  font-weight: 600;
}

.shop-yield span,
.shop-yield small {
  color: var(--muted);
  font-size: 0.7rem;
}

.shop-payback {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
}

.shop-payback strong {
  color: #d8d3c6;
  font-weight: 500;
}

.shop-available {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0;
  color: #d8d3c6;
  font-size: 0.66rem;
  line-height: 1;
}

.shop-available i,
.shop-available svg {
  width: 12px;
  height: 12px;
  color: #d8d3c6;
}

.shop-action {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
}

.shop-action .primary-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 35px;
  padding: 0 12px;
  border: 1px solid rgba(255, 206, 28, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 238, 135, 0.28), transparent 32%),
    linear-gradient(180deg, #ffd426 0%, #ffc20e 56%, #ffb300 100%);
  color: #171100;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 238, 128, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 159, 0.46),
    inset 0 -1px 0 rgba(134, 84, 0, 0.24),
    0 7px 12px rgba(255, 190, 0, 0.12);
}

.shop-action .primary-button::before {
  content: "";
  position: absolute;
  inset: 1px 2px auto;
  height: 36%;
  border-radius: 7px 7px 11px 11px;
  background: linear-gradient(180deg, rgba(255, 246, 178, 0.2), transparent);
  pointer-events: none;
}

.shop-action .primary-button:disabled {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  color: #d6d1c4;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.shop-card.is-working .shop-action .primary-button:disabled {
  border-color: rgba(255, 211, 34, 0.22);
  background:
    linear-gradient(180deg, rgba(33, 33, 30, 0.98), rgba(18, 18, 17, 0.98));
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 720;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(255, 211, 34, 0.09);
}

.scooter-main,
.scooter-side {
  position: relative;
  z-index: 1;
}

.tier {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 211, 34, 0.42);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 650;
}

.scooter-main h3 {
  margin-top: 12px;
}

.yield-line,
.timer-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.yield-line strong,
.timer-line strong {
  color: var(--text);
}

.scooter-side {
  display: grid;
  justify-items: end;
  align-content: space-between;
  min-width: 102px;
}

.price {
  text-align: right;
}

.price strong {
  display: block;
  font-size: 1.25rem;
}

.price span {
  color: var(--muted);
  font-size: 0.75rem;
}

.primary-button,
.icon-button {
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 211, 34, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffe15a, #ffb600);
  color: #15120a;
  font-weight: 650;
}

.primary-button.ghost {
  background: rgba(255, 211, 34, 0.1);
  color: var(--text);
}

.primary-button:disabled {
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1c1c1a, #10100f);
  color: var(--yellow);
}

.icon-button.small {
  width: 34px;
  height: 34px;
}

.friends-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 54px;
  margin-bottom: 12px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.friends-head h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1;
}

.friends-add {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.friends-add i,
.friends-add svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.35;
}

.friends-card,
.friend-stat,
.team-list {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(15, 15, 14, 0.99));
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.24);
}

.friends-card,
.friend-stat {
  border-left-color: rgba(255, 211, 34, 0.34);
}

.invite-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.invite-card h3 {
  color: #d9d4c8;
  font-size: 0.76rem;
  font-weight: 560;
}

.invite-link {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  min-height: 42px;
  padding-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28, 28, 27, 0.98), rgba(15, 15, 14, 0.98));
  color: #b9b4aa;
  font-size: 0.67rem;
  line-height: 1;
}

.invite-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invite-link button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: #d8d3c7;
  cursor: pointer;
}

.invite-link i,
.invite-link svg {
  width: 17px;
  height: 17px;
}

.invite-button {
  width: 100%;
  min-height: 36px;
  border-color: rgba(255, 206, 28, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 238, 135, 0.28), transparent 32%),
    linear-gradient(180deg, #ffd426 0%, #ffc20e 56%, #ffb300 100%);
  color: #171100;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 760;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 159, 0.46),
    inset 0 -1px 0 rgba(134, 84, 0, 0.24),
    0 7px 12px rgba(255, 190, 0, 0.12);
}

.invite-button i,
.invite-button svg {
  width: 16px;
  height: 16px;
}

.friends-stats {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 8px;
  margin-top: 10px;
}

.friend-stat {
  position: relative;
  min-height: 74px;
  padding: 12px;
  overflow: hidden;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.friend-stat > span {
  display: block;
  color: #aaa59a;
  font-size: 0.68rem;
  font-weight: 460;
}

.friend-stat strong {
  display: block;
  margin-top: 14px;
  color: #f5f1e7;
  font-size: 1.28rem;
  font-weight: 680;
  line-height: 1;
}

.friend-stat small {
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 760;
}

.friend-stat i,
.friend-stat svg,
.ton-stat-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 25px;
  height: 25px;
}

.friend-stat i,
.friend-stat svg {
  color: var(--yellow);
  fill: rgba(255, 211, 34, 0.18);
}

.ton-stat-icon {
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.4));
}

.referral-section {
  margin-top: 14px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.referral-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.referral-title h3 {
  color: #d8d3c7;
  font-size: 0.78rem;
  font-weight: 650;
}

.referral-levels {
  display: grid;
  gap: 7px;
}

.referral-level {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-left-color: rgba(255, 211, 34, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(14, 14, 13, 0.99));
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.22);
}

.referral-level strong,
.referral-level span {
  display: block;
}

.referral-level strong {
  color: #f0eadf;
  font-size: 0.76rem;
  font-weight: 680;
}

.referral-level span {
  margin-top: 4px;
  color: #8d887f;
  font-size: 0.58rem;
  line-height: 1;
}

.referral-level b {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 720;
  white-space: nowrap;
}

.team-section {
  margin-top: 16px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.team-section > h3 {
  margin-bottom: 8px;
  color: #d8d3c7;
  font-size: 0.78rem;
  font-weight: 650;
}

.team-list {
  display: grid;
  padding: 6px 8px;
}

.team-member {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.team-member:last-child {
  border-bottom: 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #f8f3e8;
  font-size: 0.72rem;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.avatar-a {
  background: linear-gradient(145deg, #6f5138, #1c2620);
}

.avatar-b {
  background: linear-gradient(145deg, #d9c0a6, #44322a);
}

.avatar-c {
  background: linear-gradient(145deg, #9b5f45, #2f1717);
}

.avatar-d {
  background: linear-gradient(145deg, #c9d0d2, #333736);
}

.avatar-e {
  background: linear-gradient(145deg, #d8bbaa, #29231f);
}

.team-member strong,
.team-member span {
  display: block;
}

.team-member strong {
  color: #ece7dc;
  font-size: 0.7rem;
  font-weight: 650;
}

.team-member span {
  margin-top: 2px;
  color: #77736b;
  font-size: 0.54rem;
  line-height: 1;
}

.team-member b {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 650;
  white-space: nowrap;
}

.tasks-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 54px;
  margin-bottom: 14px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.tasks-head h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1;
}

.tasks-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.tasks-icon i,
.tasks-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.35;
}

.tasks-summary {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(15, 15, 14, 0.99));
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.24);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.tasks-summary div {
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.tasks-summary span {
  display: block;
  color: #aaa59a;
  font-size: 0.62rem;
  font-weight: 500;
}

.tasks-summary strong {
  display: block;
  margin-top: 13px;
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.task-section {
  margin-top: 16px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.task-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.task-section-title h3 {
  color: #d8d3c7;
  font-size: 0.78rem;
  font-weight: 650;
}

.task-list {
  display: grid;
  gap: 8px;
}

.task-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid rgba(255, 211, 34, 0.46);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(14, 14, 13, 0.99));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.task-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 211, 34, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #23231f, #151514);
  color: var(--yellow);
}

.task-mark i,
.task-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.task-copy {
  min-width: 0;
}

.task-copy h3 {
  color: #f0eadf;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
}

.task-copy p {
  margin: 4px 0 0;
  color: #918c84;
  font-size: 0.58rem;
  line-height: 1.22;
}

.task-copy span {
  display: block;
  margin-top: 6px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 720;
}

.task-button {
  min-width: 72px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 206, 28, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 238, 135, 0.24), transparent 32%),
    linear-gradient(180deg, #ffd426 0%, #ffc20e 56%, #ffb300 100%);
  color: #171100;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.64rem;
  font-weight: 760;
  cursor: pointer;
}

.task-card.is-done {
  border-left-color: rgba(85, 220, 120, 0.44);
}

.task-card.is-done .task-mark {
  border-color: rgba(85, 220, 120, 0.2);
  color: var(--green);
}

.task-button:disabled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: #8b867d;
  cursor: default;
}

.info-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 54px;
  margin-bottom: 20px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.info-head h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1;
}

.info-help {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.info-help i,
.info-help svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.35;
}

.how-section,
.faq-section {
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.how-section > h3,
.faq-section > h3 {
  margin-bottom: 10px;
  color: #e8e2d8;
  font-size: 0.92rem;
  font-weight: 620;
}

.how-list {
  display: grid;
  gap: 8px;
}

.how-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 82px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 90px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(15, 15, 14, 0.99));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.step-badge {
  display: grid;
  place-items: center;
  align-self: start;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd426, #ffb400);
  color: #171100;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 242, 159, 0.45);
}

.how-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 70px;
}

.scooter-media img {
  width: 92px;
  height: 70px;
  object-fit: contain;
  transform: translateX(-5px);
  filter: contrast(1.04) saturate(1.04) drop-shadow(0 8px 10px rgba(0, 0, 0, 0.52));
}

.clock-media {
  width: 66px;
  height: 66px;
  justify-self: center;
  border: 0;
  background: transparent;
}

.clock-media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.42));
}

.payout-media {
  isolation: isolate;
}

.payout-media img:first-child {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

.payout-media img:last-child {
  position: absolute;
  left: 2px;
  bottom: 8px;
  z-index: -1;
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.44));
}

.how-copy {
  min-width: 0;
}

.how-copy strong,
.how-copy p {
  display: block;
}

.how-copy strong {
  color: #f0eadf;
  font-size: 0.8rem;
  font-weight: 670;
  line-height: 1.12;
}

.how-copy p {
  margin: 6px 0 0;
  color: #a29d94;
  font-size: 0.62rem;
  line-height: 1.28;
}

.faq-section {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(25, 25, 23, 0.98), rgba(14, 14, 13, 0.99));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr 16px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: #c8c2b7;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.66rem;
  font-weight: 520;
  text-align: left;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item i,
.faq-item svg {
  width: 15px;
  height: 15px;
  color: #9f9a90;
}

.faq-sheet {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end center;
  padding: 18px 12px calc(18px + var(--safe-bottom));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.faq-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.faq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.faq-panel {
  position: relative;
  width: min(100%, 406px);
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid rgba(255, 211, 34, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.99), rgba(13, 13, 12, 0.99));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.faq-sheet.is-open .faq-panel {
  transform: translateY(0);
}

.faq-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.faq-panel-head span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 720;
  text-transform: uppercase;
}

.faq-panel-head h3 {
  color: #f3eee3;
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.12;
}

.faq-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #20201e, #141413);
  color: #d6d0c5;
  cursor: pointer;
}

.faq-close i,
.faq-close svg {
  width: 16px;
  height: 16px;
}

.faq-panel > p {
  margin: 0;
  color: #aaa49a;
  font-size: 0.74rem;
  line-height: 1.45;
}

.faq-detail-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.faq-detail-list div {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 8px;
  min-height: 32px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.faq-detail-list i,
.faq-detail-list svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.faq-detail-list span {
  color: #d6d0c5;
  font-size: 0.68rem;
  line-height: 1.28;
}

.wallet-sheet {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: grid;
  place-items: end center;
  padding: 18px 12px calc(18px + var(--safe-bottom));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.wallet-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wallet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.wallet-panel {
  position: relative;
  width: min(100%, 406px);
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid rgba(255, 211, 34, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.99), rgba(13, 13, 12, 0.99));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.wallet-sheet.is-open .wallet-panel {
  transform: translateY(0);
}

.onboarding-sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(12px);
}

.onboarding-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.onboarding-panel {
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 30, 27, 0.99), rgba(10, 10, 9, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 26px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(8px) scale(0.98);
  transition: transform 180ms ease;
}

.onboarding-sheet.is-open .onboarding-panel {
  transform: translateY(0) scale(1);
}

.onboarding-logo {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1;
}

.onboarding-panel h3 {
  color: #f3eee3;
  font-size: 1.12rem;
  font-weight: 780;
}

.onboarding-panel p {
  margin: 7px 0 0;
  color: #9d978e;
  font-size: 0.76rem;
}

.language-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.language-choice-grid button {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #eee8dc;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
}

.language-choice-grid button:hover {
  border-color: rgba(255, 211, 34, 0.42);
  background: rgba(255, 211, 34, 0.08);
}

.language-choice-grid span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.tutorial-steps {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.tutorial-steps article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.tutorial-steps b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  color: #171407;
  font-size: 0.82rem;
  font-weight: 850;
}

.tutorial-steps strong,
.tutorial-steps span {
  display: block;
}

.tutorial-steps strong {
  color: #f0eadf;
  font-size: 0.82rem;
  font-weight: 760;
}

.tutorial-steps span {
  margin-top: 4px;
  color: #9d978e;
  font-size: 0.64rem;
  line-height: 1.3;
}

.tutorial-start {
  width: 100%;
  min-height: 39px;
  margin-top: 14px;
}

.wallet-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.wallet-panel-head span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 720;
  text-transform: uppercase;
}

.wallet-panel-head h3 {
  color: #f3eee3;
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.12;
}

.wallet-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #20201e, #141413);
  color: #d6d0c5;
  cursor: pointer;
}

.wallet-close i,
.wallet-close svg {
  width: 16px;
  height: 16px;
}

.amount-field {
  display: grid;
  gap: 8px;
}

.amount-field > span {
  color: #aaa49a;
  font-size: 0.68rem;
  font-weight: 560;
}

.amount-field div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28, 28, 27, 0.98), rgba(15, 15, 14, 0.98));
}

.amount-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f3eee3;
  font: 800 1.15rem/1 "Inter Tight", "Manrope", Inter, sans-serif;
}

.amount-field input::placeholder {
  color: #615d56;
}

.amount-field b {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
}

.wallet-modal-notes {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.wallet-modal-notes:empty {
  display: none;
}

.wallet-modal-notes div {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  color: #d6d0c5;
  font-size: 0.66rem;
}

.wallet-modal-notes i,
.wallet-modal-notes svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.wallet-submit {
  width: 100%;
  min-height: 38px;
  margin-top: 14px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 760;
}

.feature-card,
.wallet-card {
  padding: 18px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

.feature-icon,
.wallet-large {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  color: var(--yellow);
}

.wallet-large {
  object-fit: contain;
}

.wallet-card {
  display: grid;
  gap: 10px;
}

.wallet-card strong {
  font-size: 1.9rem;
}

.wallet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 54px;
  margin-bottom: 14px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.wallet-head h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1;
}

.wallet-chart-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}

.wallet-chart-icon i,
.wallet-chart-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.35;
}

.wallet-balance-card,
.wallet-connect-card,
.wallet-actions button {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(15, 15, 14, 0.99));
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.24);
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.wallet-balance-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  min-height: 82px;
  padding: 13px 13px 13px 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 211, 34, 0.035), transparent 40%),
    linear-gradient(105deg, rgba(25, 25, 23, 0.99), rgba(13, 13, 12, 0.99));
}

.wallet-balance-card > div > span {
  display: block;
  margin-bottom: 7px;
  color: #aaa59a;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
}

.wallet-balance-card strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--yellow);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.wallet-balance-card strong span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.wallet-ton-badge {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 211, 34, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 34, 0.12), transparent 62%),
    linear-gradient(145deg, #24231e, #111110);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 5px rgba(255, 211, 34, 0.035);
}

.wallet-ton-badge img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.03) drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
}

.wallet-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.wallet-actions button {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 66px;
  color: #e8e2d8;
  cursor: pointer;
}

.wallet-actions i,
.wallet-actions svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffd426, #ffb400);
  color: #171100;
  stroke-width: 2.8;
}

.wallet-actions span {
  font-size: 0.68rem;
  font-weight: 650;
}

.wallet-connect-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border-left-color: rgba(255, 211, 34, 0.4);
}

.connect-art {
  position: relative;
  min-height: 72px;
}

.connect-art img:first-child {
  position: absolute;
  left: 10px;
  top: 2px;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.connect-art img:last-child {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wallet-connect-card span {
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 720;
}

.wallet-connect-card strong {
  display: block;
  margin-top: 3px;
  color: #f0eadf;
  font-size: 0.86rem;
  font-weight: 700;
}

.wallet-connect-card p {
  margin: 6px 0 0;
  color: #9d978e;
  font-size: 0.62rem;
  line-height: 1.32;
}

.wallet-connect-card.is-connected {
  border-color: rgba(85, 220, 120, 0.24);
}

.wallet-connect-card.is-connected .connect-button {
  border: 1px solid rgba(255, 211, 34, 0.22);
  background: linear-gradient(180deg, rgba(27, 27, 25, 0.98), rgba(11, 11, 10, 0.98));
  color: var(--yellow);
}

.connect-button {
  grid-column: 1 / -1;
  min-height: 34px;
  margin-top: 2px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 760;
}

.wallet-history-section {
  margin-top: 14px;
  font-family: "Inter Tight", "Manrope", Inter, sans-serif;
}

.wallet-history-section .history-list {
  gap: 0;
  margin-top: 0;
}

.wallet-history-section h3 {
  margin-bottom: 8px;
  color: #d8d3c7;
  font-size: 0.78rem;
  font-weight: 650;
}

.history-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.history-list {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(25, 25, 23, 0.98), rgba(14, 14, 13, 0.99));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.history-item:last-child {
  border-bottom: 0;
}

.history-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.history-icon i,
.history-icon svg {
  width: 16px;
  height: 16px;
  color: #fff8df;
  stroke-width: 2.6;
}

.history-item.income .history-icon {
  background: linear-gradient(180deg, #5cc66d, #247d38);
}

.history-item.spend .history-icon {
  background: linear-gradient(180deg, #f05b48, #ad2f25);
}

.history-copy {
  min-width: 0;
}

.history-copy span,
.history-copy small {
  display: block;
}

.history-copy span {
  overflow: hidden;
  color: #e4ded3;
  font-size: 0.66rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-copy small {
  margin-top: 3px;
  color: #77736b;
  font-size: 0.52rem;
  line-height: 1;
}

.history-item strong {
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.history-item.income strong {
  color: var(--green);
}

.history-item.spend strong {
  color: #ff6a55;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border-style: dashed;
  color: var(--muted);
  text-align: center;
}

.admin-entry {
  position: fixed;
  left: 50%;
  bottom: calc(91px + var(--safe-bottom));
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 211, 34, 0.26);
  border-radius: var(--radius);
  background: rgba(18, 18, 16, 0.96);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  transform: translateX(110px);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.admin-entry[hidden] {
  display: none;
}

.admin-entry i,
.admin-entry svg {
  width: 15px;
  height: 15px;
}

.admin-entry.is-active {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  color: #171407;
}

.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 86px;
  margin-bottom: 10px;
}

.admin-head h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.34rem;
  font-weight: 780;
}

.admin-head p {
  margin: 8px 0 0;
  color: #aaa59a;
  font-size: 0.72rem;
  line-height: 1.35;
}

.admin-lock {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 211, 34, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(31, 31, 29, 0.98), rgba(13, 13, 12, 0.98));
  color: var(--yellow);
}

.admin-lock i,
.admin-lock svg {
  width: 22px;
  height: 22px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.admin-metrics article {
  min-height: 70px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 211, 34, 0.08), transparent 3.8rem),
    linear-gradient(115deg, rgba(26, 26, 24, 0.98), rgba(11, 11, 10, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-metrics i,
.admin-metrics svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.admin-metrics span {
  display: block;
  margin-top: 7px;
  color: #8f897f;
  font-size: 0.58rem;
  font-weight: 720;
}

.admin-metrics strong {
  display: block;
  margin-top: 2px;
  color: #f5efe2;
  font-size: 1.18rem;
  font-weight: 780;
  line-height: 1;
}

.admin-auto-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(108deg, rgba(25, 25, 23, 0.98), rgba(10, 10, 9, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.admin-auto-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 211, 34, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 211, 34, 0.08);
  color: var(--yellow);
}

.admin-auto-icon i,
.admin-auto-icon svg {
  width: 17px;
  height: 17px;
}

.admin-auto-copy {
  min-width: 0;
}

.admin-auto-copy strong,
.admin-auto-copy span,
.admin-auto-copy b,
.admin-auto-copy small {
  display: block;
}

.admin-auto-copy strong {
  color: #f2ecdf;
  font-size: 0.78rem;
  font-weight: 760;
}

.admin-auto-copy span {
  margin-top: 3px;
  color: #928c82;
  font-size: 0.56rem;
  line-height: 1.25;
}

.admin-auto-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.admin-auto-copy b,
.admin-auto-copy small {
  padding: 3px 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: #a8a299;
  font-size: 0.52rem;
  font-weight: 760;
  line-height: 1;
}

.admin-auto-card.is-enabled .admin-auto-copy b {
  background: rgba(59, 195, 97, 0.14);
  color: #57d476;
}

.admin-auto-toggle {
  min-width: 74px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--yellow), var(--yellow-2));
  color: #171407;
  font-size: 0.62rem;
  font-weight: 820;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.admin-card,
.admin-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(105deg, rgba(27, 27, 25, 0.98), rgba(12, 12, 11, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.admin-card {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.admin-card h3,
.admin-section h3 {
  color: #f2ecdf;
  font-size: 0.88rem;
  font-weight: 760;
}

.admin-card label {
  display: grid;
  gap: 5px;
}

.admin-card label span {
  color: #9f998f;
  font-size: 0.58rem;
  font-weight: 680;
}

.admin-card input,
.admin-card select {
  width: 100%;
  min-height: 37px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(6, 6, 6, 0.48);
  color: #f4efe3;
  font: 650 0.75rem "Manrope", Inter, sans-serif;
}

.admin-card select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #ffd322 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #ffd322 50%, transparent 50%) calc(100% - 11px) 50% / 6px 6px no-repeat,
    rgba(6, 6, 6, 0.48);
}

.admin-card input:focus,
.admin-card select:focus {
  border-color: rgba(255, 211, 34, 0.42);
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}

.admin-save {
  width: 100%;
  min-height: 38px;
  margin-top: 2px;
}

.admin-section {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
}

.admin-task-list {
  display: grid;
  gap: 6px;
}

.admin-task-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.admin-task-row strong,
.admin-task-row span,
.admin-task-row small {
  display: block;
}

.admin-task-row strong {
  color: #eee8dc;
  font-size: 0.72rem;
  font-weight: 740;
}

.admin-task-row span {
  margin-top: 3px;
  color: #8f897f;
  font-size: 0.58rem;
  line-height: 1.25;
}

.admin-task-row small {
  width: max-content;
  margin-top: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 211, 34, 0.18);
  border-radius: 999px;
  background: rgba(255, 211, 34, 0.08);
  color: #ffd322;
  font-size: 0.52rem;
  font-weight: 760;
}

.admin-task-row b {
  color: var(--yellow);
  font-size: 0.68rem;
  white-space: nowrap;
}

.admin-delete-task {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 106, 85, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 106, 85, 0.08);
  color: #ffb0a4;
  font-size: 0.58rem;
  font-weight: 760;
  cursor: pointer;
}

.admin-delete-task i,
.admin-delete-task svg {
  width: 13px;
  height: 13px;
}

.tabbar {
  position: fixed;
  left: 50%;
  bottom: max(8px, var(--safe-bottom));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  width: min(calc(100% - 18px), 414px);
  min-height: 66px;
  padding: 6px 7px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.tab {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 52px;
  border-radius: var(--radius);
  background: transparent;
  color: #99958d;
  cursor: pointer;
}

.tab span {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.62rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab.is-active {
  border: 0;
  background: transparent;
  color: var(--yellow);
}

.tab.is-active i {
  fill: none;
  color: var(--yellow);
}

.tab i,
.tab svg {
  width: 20px;
  height: 20px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(98px + var(--safe-bottom));
  z-index: 4;
  width: min(calc(100% - 28px), 400px);
  padding: 11px 13px;
  border: 1px solid rgba(255, 211, 34, 0.42);
  border-radius: var(--radius);
  background: rgba(16, 16, 15, 0.96);
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

  i[data-lucide] {
  width: 21px;
  height: 21px;
  stroke-width: 2.25;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splash-segment {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleY(0.78);
    filter: saturate(0.82);
  }

  38%,
  68% {
    opacity: 1;
    transform: scaleY(1);
    filter: saturate(1.12);
  }
}

@media (max-width: 380px) {
  .app {
    padding-inline: 12px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .balance-card {
    grid-template-columns: 1fr 50px;
    min-height: 70px;
    padding-inline: 12px;
  }

  .balance-copy strong {
    font-size: 1.56rem;
  }

  .balance-ton-badge {
    width: 48px;
    height: 48px;
  }

  .shop-head {
    min-height: 88px;
  }

  .scooter-card.shop-card {
    grid-template-columns: 104px 1fr;
    min-height: 143px;
    padding: 9px 9px 8px 12px;
  }

  .admin-task-row {
    grid-template-columns: 1fr auto 34px;
    gap: 7px;
  }

  .admin-delete-task {
    padding: 0;
  }

  .admin-delete-task span {
    display: none;
  }

  .shop-visual img {
    width: 152px;
    height: 116px;
  }

  .shop-yield {
    font-size: 0.68rem;
  }

  .active-card {
    grid-template-columns: 41% 1fr;
  }

  .scooter-stage img {
    width: 164px;
  }

  .mobility-stats strong {
    font-size: 0.62rem;
  }

  .mobility-stats span {
    font-size: 0.5rem;
  }

  .splash-content {
    padding: 17vh 24px 7vh;
  }

  .splash-hero {
    width: min(78vw, 270px);
    margin-bottom: 18px;
  }

  .splash-content p {
    margin-top: 16px;
  }

  .splash-loading {
    width: min(100%, 250px);
    padding-top: 11vh;
  }

  .splash-trust {
    margin-top: 46px;
  }

}
