:root {
  color-scheme:dark;
  --bg:#031322;
  --panel:#061c2d;
  --line:#21475f;
  --text:#f5f7ff;
  --muted:#b2c3dc;
  --gold:#f4c362;
  --blue:#0868fa;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:radial-gradient(ellipse at 74% 15%,#092b50 0,transparent 48%),linear-gradient(120deg,#02111e,#04192b 60%,#020e1d);
  min-height:100vh;
}

button,input {
  font:inherit;
}

button,a,input {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

button {
  color:inherit;
}

button:focus-visible,a:focus-visible,input:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:5px;
}

button {
  transition:filter .2s,background .2s,transform .2s;
}

button:hover {
  filter:brightness(1.18);
}

button:active {
  transform:translateY(1px);
}

[hidden] {
  display:none!important;
}

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

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

img {
  object-fit:contain;
}

button img {
  pointer-events:none;
}

.panel {
  background:linear-gradient(115deg,rgba(4,24,37,.95),rgba(5,28,45,.8));
  border:1px solid var(--line);
  border-radius:12px;
}

.button {
  border-radius:7px;
  padding:18px 30px;
  font-weight:600;
  border:1px solid transparent;
  min-height:48px;
}

.button-gold {
  color:#07182e;
  background:linear-gradient(155deg,#ffe18d,#ca9447);
  border-color:#fadd90;
  box-shadow:inset 0 0 7px #ffdf8f70;
}

.button-green {
  background:linear-gradient(#2b8b3b,#15572d);
  border-color:#4abb51;
}

.button-outline {
  border-color:var(--gold);
  color:var(--gold);
  background:#021321;
}

.icon-button {
  border:0;
  background:none;
  padding:8px;
}

.login-view {
  max-width:1500px;
  min-height:100vh;
  margin:auto;
  padding:30px 55px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.login-main {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:75px;
}

.brand-intro {
  text-align:center;
  position:relative;
  padding:0 0 40px;
  isolation:isolate;
}

.brand-medallion {
  width:210px;
  height:200px;
  border:1px solid var(--gold);
  border-radius:50%;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  box-shadow:0 0 70px #164f7130;
}

.brand-medallion svg {
  width:125px;
  fill:var(--gold);
}

.brand-intro h1 {
  font-size:44px;
  letter-spacing:5px;
  font-weight:500;
  line-height:1.08;
}

.brand-intro h1 span {
  color:var(--gold);
}

.gold-rule {
  height:2px;
  width:48px;
  background:var(--gold);
  margin:16px auto;
}

.brand-intro h2 {
  font-size:23px;
  color:var(--gold);
  font-weight:500;
  margin-bottom:8px;
}

.brand-intro p {
  font-size:18px;
  color:#e2e8f7;
}

.orbit {
  position:absolute;
  border:1px solid #ad864638;
  border-radius:50%;
  z-index:-1;
  pointer-events:none;
}

.orbit-one {
  width:115%;
  height:75%;
  left:-12%;
  top:-10%;
  transform:rotate(-25deg);
}

.orbit-two {
  width:105%;
  height:65%;
  left:-8%;
  top:-1%;
  transform:rotate(-40deg);
}

.orbit::after {
  content:'';
  position:absolute;
  top:20%;
  left:10%;
  width:4px;
  height:4px;
  background:#ffe4a3;
  box-shadow:0 0 15px 5px #edb45177;
  border-radius:50%;
}

.login-form {
  padding:48px 34px 25px;
  border:1px solid #68839d;
  border-radius:16px;
  background:linear-gradient(130deg,#243f5860,#03152a);
  box-shadow:inset 0 1px 2px #ffffff15;
}

.input-wrap {
  display:flex;
  align-items:center;
  border:1px solid #395771;
  border-radius:9px;
  background:#17304766;
  margin-bottom:20px;
  padding:0 18px;
  min-height:64px;
  gap:18px;
}

.input-wrap>span {
  font-size:30px;
  color:var(--gold);
}

input {
  min-width:0;
  width:100%;
  border:0;
  background:transparent;
  color:var(--text);
  padding:17px 0;
  outline-offset:0;
}

input::placeholder {
  color:#becde4;
}

.input-wrap button {
  background:none;
  border:0;
  padding:0;
  width:28px;
  flex-shrink:0;
}

.input-wrap img {
  width:28px;
  height:28px;
}

.login-form>.button {
  width:100%;
  font-size:24px;
  margin-top:3px;
}

.demo-note {
  text-align:center;
  font-size:11px;
  margin-top:14px;
  color:#96a9bf;
}

.features {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center;
  margin:35px 80px 20px;
}

.features article {
  padding:0 28px;
  position:relative;
}

.features article+article:before {
  content:'';
  position:absolute;
  left:0;
  top:30px;
  bottom:5px;
  width:1px;
  background:#294459;
}

.features img {
  width:72px;
  height:72px;
  margin-bottom:9px;
}

.features h3 {
  font-size:17px;
  font-weight:500;
  margin-bottom:8px;
}

.features p {
  font-size:15px;
}

.built-on {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  gap:25px;
}

.built-on img {
  height:55px;
  width:55px;
}

.built-on strong {
  font-weight:500;
}

.built-on p {
  font-size:14px;
  margin-top:4px;
}

footer {
  text-align:center;
  color:#9eafc6;
  font-size:12px;
  padding-top:20px;
}

footer span {
  display:block;
  font-size:10px;
  margin-top:5px;
  opacity:.7;
}

.site-header {
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:0 4%;
  border-bottom:1px solid #294359;
  background:#001125a6;
}

.brand {
  display:block;
  width:290px;
  flex-shrink:0;
}

.brand img {
  width:100%;
  height:70px;
}

.site-header nav {
  display:flex;
  gap:35px;
  height:100%;
  align-items:stretch;
}

.nav-link {
  position:relative;
  border:0;
  background:none;
  font-size:14px;
  padding:0 3px;
}

.nav-link.active {
  color:var(--gold);
}

.nav-link.active:after {
  content:'';
  position:absolute;
  bottom:17px;
  height:2px;
  background:var(--gold);
  left:25%;
  right:25%;
}

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

.notification img {
  width:36px;
  height:36px;
}

.account-button {
  background:none;
  border:0;
  border-left:1px solid #496784;
  padding-left:20px;
  display:flex;
  align-items:center;
  gap:14px;
}

.account-button>span:first-child {
  font-size:27px;
  border:1px solid var(--gold);
  border-radius:50%;
  height:38px;
  width:38px;
  color:var(--gold);
}

.account-label {
  font-size:13px;
}

.menu-toggle {
  display:none;
}

.dashboard {
  max-width:1680px;
  margin:auto;
  padding:24px 4% 14px;
}

.welcome {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
}

.welcome h1 {
  font-size:32px;
  font-weight:600;
  margin-bottom:5px;
}

.welcome p {
  font-size:18px;
}

.status {
  display:flex;
  align-items:center;
  gap:14px;
  color:#4bdd57;
  border:1px solid #227644;
  background:#082c2270;
  border-radius:30px;
  padding:15px 22px;
  font-size:17px;
  white-space:nowrap;
}

.status i {
  width:15px;
  height:15px;
  border-radius:50%;
  background:#4bd75d;
  box-shadow:0 0 14px #40cc4a25;
}

.balance-layout {
  display:grid;
  grid-template-columns:1.48fr 1fr;
  gap:16px;
}

.balance-card {
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse at 60% -70%,#075fee,transparent 75%),linear-gradient(120deg,#062955,#001c48);
  border:1px solid #1687ff;
  border-radius:12px;
  padding:26px 35px 22px;
}

.eyebrow {
  font-size:15px;
}

.sample-label {
  font-size:9px;
  letter-spacing:1px;
  margin-left:8px;
  opacity:.6;
}

.balance-card h2 {
  font-size:clamp(36px,5.2vw,83px);
  letter-spacing:-2px;
  margin:8px 0 15px;
  position:relative;
  z-index:1;
  white-space:nowrap;
}

.balance-card h2 span {
  font-size:23px;
  letter-spacing:0;
  color:var(--muted);
}

.balance-details {
  display:flex;
  gap:45px;
  border-top:1px solid #385783;
  padding-top:16px;
  max-width:72%;
  position:relative;
  z-index:1;
}

.balance-details>div+div {
  border-left:1px solid #365b8a;
  padding-left:42px;
}

.balance-details p {
  font-size:14px;
  margin-bottom:7px;
}

.balance-details strong {
  font-size:24px;
}

.balance-mark {
  width:150px;
  position:absolute;
  right:30px;
  bottom:45px;
  fill:#a4c2df;
  opacity:.18;
}

.money-actions {
  display:grid;
  gap:16px;
}

.action-card {
  display:flex;
  align-items:center;
  text-align:left;
  padding:13px 24px;
  gap:20px;
  width:100%;
}

.action-card img {
  width:78px;
  height:78px;
}

.action-card strong {
  display:block;
  font-size:18px;
  font-weight:500;
}

.action-card small {
  display:block;
  color:var(--muted);
  font-size:15px;
  margin-top:8px;
}

.chevron {
  margin-left:auto;
  font-size:36px;
  font-weight:300;
  color:var(--muted);
}

.activation {
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:17px;
  padding:18px 25px;
}

.activation h2,.funds h2,.agent-panel h2 {
  font-size:17px;
  font-weight:500;
}

.activation-amount {
  min-width:330px;
}

.activation-amount>div {
  display:flex;
  align-items:center;
  gap:17px;
  margin-top:6px;
}

.activation img {
  width:58px;
  height:58px;
}

.activation-amount strong {
  font-size:36px;
}

.currency,.pill {
  border-radius:24px;
  background:#112f50;
  padding:9px 15px;
  font-size:16px;
}

.activation>p {
  font-size:14px;
  border-left:1px solid #35516a;
  padding-left:30px;
  flex:1;
}

.activation>.button {
  min-width:210px;
  font-size:18px;
}

.funds {
  margin-top:16px;
  padding:8px 24px 14px;
}

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

.section-heading h2 {
  display:flex;
  align-items:center;
  gap:12px;
}

.section-heading img {
  width:48px;
  height:48px;
}

.pill {
  font-size:10px;
  white-space:nowrap;
}

.fund-grid {
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  border:1px solid #1a354a;
  border-radius:9px;
  padding:13px 0;
}

.fund-grid article {
  display:flex;
  align-items:center;
  padding:0 22px;
  gap:19px;
}

.fund-grid article+article {
  border-left:1px solid #36536a;
}

.fund-grid article>strong {
  color:var(--gold);
  font-size:34px;
}

.fund-grid img {
  width:40px;
  height:40px;
}

.fund-grid h3 {
  font-size:14px;
  font-weight:500;
  margin-bottom:5px;
}

.fund-grid p {
  font-size:12px;
}

.agent-panel {
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:16px;
  padding:10px 24px;
}

.agent-panel>img {
  width:66px;
  height:66px;
}

.agent-panel p {
  font-size:14px;
  margin-top:7px;
}

.agent-panel .button {
  margin-left:auto;
  min-width:215px;
  font-size:16px;
}

.button-outline span {
  margin-left:20px;
}

.dashboard footer {
  padding-top:15px;
}

.dashboard footer p {
  margin-top:5px;
}

dialog {
  color:var(--text);
  background:linear-gradient(120deg,#0b2237,#04182d);
  border:1px solid #376386;
  border-radius:12px;
  width:min(860px,calc(100% - 36px));
  padding:30px;
  box-shadow:0 25px 100px #0009;
}

dialog::backdrop {
  background:#000b;
  backdrop-filter:blur(3px);
}

.close-modal {
  position:absolute;
  right:12px;
  top:10px;
  font-size:30px;
  color:var(--muted);
  line-height:1;
}

.modal-heading {
  font-size:27px;
  font-weight:600;
  padding-right:25px;
  margin-bottom:10px;
}

.modal-lead {
  font-size:14px;
  max-width:660px;
  margin-bottom:20px;
}

.deposit-grid {
  display:grid;
  grid-template-columns:1.25fr 1fr;
  border:1px solid var(--line);
  border-radius:10px;
  padding:20px;
  gap:25px;
}

.steps-title {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:15px;
}

.steps-title img {
  width:54px;
  height:54px;
}

.steps-title h3 {
  font-size:21px;
  margin-bottom:4px;
}

.steps-title p {
  font-size:13px;
}

.steps {
  list-style:none;
  padding:0;
  margin:0;
  counter-reset:step;
}

.steps li {
  counter-increment:step;
  display:flex;
  gap:15px;
  margin:16px 0;
}

.steps li:before {
  content:counter(step);
  display:grid;
  place-items:center;
  flex:0 0 35px;
  height:35px;
  border-radius:50%;
  background:linear-gradient(135deg,#168aff,#0341ea);
  font-size:19px;
}

.steps h4 {
  margin:0 0 5px;
  font-size:14px;
  font-weight:500;
}

.steps p {
  font-size:12px;
}

.deposit-preview {
  text-align:center;
  border-left:1px solid var(--line);
  padding-left:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.deposit-preview>img {
  width:65px;
  height:65px;
  align-self:center;
  margin:12px;
}

.deposit-preview h3 {
  font-size:22px;
}

.qr-placeholder {
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  grid-template-rows:minmax(0, 1fr);
  place-content:center;
  aspect-ratio:1;
  width:155px;
  max-width:100%;
  margin:20px auto;
  color:#243750;
  background:repeating-linear-gradient(45deg,#e5eaf0,#e5eaf0 5px,#fff 5px,#fff 10px);
  border:12px solid white;
  border-radius:9px;
  font-size:14px;
  font-weight:600;
  gap:8px;
}

.qr-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.qr-placeholder span {
  font-size:10px;
  font-weight:400;
}

.deposit-preview p {
  font-size:12px;
}

.wallet-placeholder {
  background:#001426;
  border:1px solid var(--line);
  padding:13px;
  border-radius:6px;
  margin:10px 0;
  color:#8ba0b7;
  font-size:11px;
}

.compact-modal {
  max-width:400px;
  text-align:center;
}

.compact-modal .modal-heading {
  font-size:23px;
  padding:0;
}

.warning-icon {
  width:70px;
  height:70px;
  margin:0 auto 12px;
  display:block;
}

.compact-modal .button {
  width:100%;
  margin-top:20px;
}

.button-blue {
  background:linear-gradient(#147cff,#0543c5);
  border-color:#145bd0;
}

.agent-form {
  margin-top:22px;
}

.agent-form label {
  display:block;
  font-size:13px;
  color:var(--muted);
}

.agent-form input {
  border:1px solid var(--line);
  border-radius:6px;
  padding:14px;
  margin:9px 0 16px;
}

.agent-result {
  margin-top:15px;
  font-size:14px;
}

@media(min-width:1500px) {
  .login-view {
    max-width:1600px;
  }
  .brand-medallion {
    width:245px;
    height:235px;
  }
  .brand-intro h1 {
    font-size:52px;
  }
  .login-form {
    padding:60px 40px 28px;
  }
  .input-wrap {
    min-height:75px;
  }
  .features {
    margin-top:55px;
  }
  .features img {
    width:85px;
    height:85px;
  }
  .dashboard {
    padding-top:24px;
  }
  .balance-card {
    min-height:252px;
  }
}

@media(max-width:1150px) {
  .site-header {
    gap:20px;
  }
  .brand {
    width:230px;
  }
  .site-header nav {
    gap:18px;
  }
  .account-label {
    display:none;
  }
  .header-actions {
    gap:5px;
  }
  .activation {
    gap:20px;
  }
  .activation-amount {
    min-width:255px;
  }
  .activation-amount strong {
    font-size:29px;
  }
  .activation>.button {
    min-width:165px;
    font-size:14px;
  }
  .fund-grid article {
    padding:0 12px;
    gap:10px;
  }
  .fund-grid article>strong {
    font-size:27px;
  }
  .fund-grid p {
    font-size:10px;
  }
  .balance-details {
    gap:20px;
    max-width:85%;
  }
  .balance-details>div+div {
    padding-left:20px;
  }
  .balance-details strong {
    font-size:20px;
  }
  .login-main {
    gap:40px;
  }
  .login-view {
    padding:30px;
  }
  .brand-intro h1 {
    font-size:38px;
  }
  .features {
    margin-left:15px;
    margin-right:15px;
  }
}

@media(max-width:900px) {
  .login-view {
    max-width:460px;
    padding:34px 30px 18px;
    justify-content:flex-start;
  }
  .login-main {
    display:flex;
    flex-direction:column;
    gap:30px;
  }
  .brand-intro {
    padding:0;
    width:100%;
  }
  .brand-medallion {
    width:125px;
    height:125px;
    margin-bottom:13px;
  }
  .brand-medallion svg {
    width:78px;
  }
  .brand-intro h1 {
    font-size:30px;
    letter-spacing:3px;
    line-height:1.12;
  }
  .gold-rule {
    width:34px;
    margin:16px auto;
  }
  .brand-intro h2 {
    font-size:15px;
  }
  .brand-intro p {
    font-size:12px;
    line-height:1.4;
  }
  .orbit-one {
    width:160px;
    height:155px;
    left:calc(50% - 80px);
    top:-12px;
  }
  .orbit-two {
    display:none;
  }
  .login-form {
    width:100%;
    padding:0;
    border:0;
    background:none;
    box-shadow:none;
  }
  .input-wrap {
    min-height:47px;
    margin-bottom:12px;
    border-radius:5px;
    padding:0 12px;
    gap:12px;
  }
  .input-wrap input {
    font-size:12px;
    padding:13px 0;
  }
  .input-wrap>span {
    font-size:22px;
  }
  .input-wrap img {
    width:21px;
    height:21px;
  }
  .login-form>.button {
    font-size:15px;
    min-height:46px;
    padding:12px;
    margin-top:3px;
  }
  .demo-note {
    font-size:9px;
    margin-top:10px;
  }
  .features {
    margin:30px -12px 24px;
    gap:0;
  }
  .features article {
    padding:0 10px;
  }
  .features img {
    width:43px;
    height:43px;
  }
  .features h3 {
    font-size:10px;
    line-height:1.4;
    min-height:28px;
    margin-bottom:8px;
  }
  .features p {
    font-size:9px;
    line-height:1.5;
  }
  .features article+article:before {
    top:15px;
    bottom:0;
  }
  .built-on {
    gap:12px;
    padding:10px 9px;
    border-radius:7px;
    margin:0 -12px;
  }
  .built-on img {
    width:37px;
    height:37px;
  }
  .built-on strong {
    font-size:10px;
  }
  .built-on p {
    font-size:9px;
  }
  .login-view footer {
    font-size:9px;
    padding-top:18px;
  }
  .login-view footer span {
    font-size:8px;
  }
  .site-header {
    height:62px;
    padding:0 15px;
    gap:10px;
  }
  .menu-toggle {
    display:block;
    font-size:19px;
    color:#a9bbcf;
  }
  .brand {
    width:200px;
    max-width:65%;
  }
  .brand img {
    height:50px;
  }
  .header-actions {
    gap:0;
  }
  .notification img {
    width:27px;
    height:27px;
  }
  .account-button {
    display:none;
  }
  .site-header nav {
    display:none;
    position:absolute;
    top:62px;
    left:0;
    right:0;
    background:#071d30;
    z-index:5;
    height:auto;
    padding:14px 20px;
    box-shadow:0 15px 30px #0006;
  }
  .site-header nav.is-open {
    display:flex;
    flex-direction:column;
    gap:0;
  }
  .nav-link {
    text-align:left;
    padding:14px;
  }
  .nav-link.active:after {
    left:0;
    width:3px;
    top:12px;
    bottom:12px;
    height:auto;
  }
  .dashboard {
    padding:19px 17px 16px;
  }
  .welcome {
    margin-bottom:17px;
    gap:10px;
  }
  .welcome h1 {
    font-size:18px;
    margin-bottom:5px;
  }
  .welcome p {
    font-size:10px;
  }
  .status {
    padding:8px 10px;
    font-size:8px;
    gap:5px;
  }
  .status i {
    width:6px;
    height:6px;
  }
  .balance-layout {
    grid-template-columns:1fr;
    gap:10px;
  }
  .balance-card {
    padding:19px 17px 16px;
    border-radius:6px;
    min-height:158px;
  }
  .eyebrow {
    font-size:10px;
  }
  .sample-label {
    font-size:7px;
  }
  .balance-card h2 {
    font-size:clamp(32px,8.2vw,49px);
    letter-spacing:-.7px;
    margin:6px 0 13px;
  }
  .balance-card h2 span {
    font-size:12px;
  }
  .balance-details {
    padding-top:11px;
    gap:25px;
    max-width:80%;
  }
  .balance-details p {
    font-size:8px;
    margin-bottom:3px;
  }
  .balance-details strong {
    font-size:13px;
  }
  .balance-details>div+div {
    padding-left:23px;
  }
  .balance-mark {
    width:76px;
    right:14px;
    bottom:31px;
  }
  .money-actions {
    grid-template-columns:1fr 1fr;
    gap:9px;
  }
  .action-card {
    padding:9px 7px;
    gap:7px;
    border-radius:5px;
    min-height:61px;
  }
  .action-card img {
    width:35px;
    height:35px;
  }
  .action-card strong {
    font-size:10px;
  }
  .action-card small {
    font-size:8px;
    margin-top:4px;
  }
  .chevron {
    font-size:19px;
  }
  .activation {
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:13px 11px;
    margin-top:12px;
    border-radius:6px;
  }
  .activation-amount {
    min-width:0;
  }
  .activation h2 {
    font-size:10px;
  }
  .activation-amount>div {
    gap:7px;
    margin-top:5px;
  }
  .activation img {
    width:36px;
    height:36px;
  }
  .activation-amount strong {
    font-size:20px;
  }
  .currency {
    font-size:8px;
    padding:5px 7px;
  }
  .activation>.button {
    min-width:0;
    min-height:36px;
    padding:9px 14px;
    font-size:10px;
    grid-column:2;
    grid-row:1;
    align-self:end;
    margin-bottom:3px;
  }
  .activation>p {
    grid-column:1/-1;
    grid-row:2;
    border:0;
    padding:0;
    font-size:9px;
    line-height:1.6;
  }
  .funds {
    padding:5px 10px 10px;
    margin-top:12px;
    border-radius:6px;
  }
  .section-heading {
    gap:5px;
    margin-bottom:5px;
  }
  .section-heading h2 {
    gap:6px;
    font-size:10px;
  }
  .section-heading img {
    width:30px;
    height:30px;
  }
  .pill {
    font-size:6px;
    padding:6px 7px;
  }
  .fund-grid {
    grid-template-columns:1fr;
    padding:0 10px;
    border-radius:5px;
  }
  .fund-grid article {
    padding:10px 0;
    gap:14px;
  }
  .fund-grid article+article {
    border-left:0;
    border-top:1px solid #183146;
  }
  .fund-grid article>strong {
    font-size:19px;
    min-width:37px;
  }
  .fund-grid img {
    width:27px;
    height:27px;
  }
  .fund-grid h3 {
    font-size:9px;
    margin-bottom:3px;
  }
  .fund-grid p {
    font-size:8px;
  }
  .agent-panel {
    padding:11px 8px;
    gap:9px;
    margin-top:12px;
    border-radius:6px;
  }
  .agent-panel>img {
    width:36px;
    height:36px;
  }
  .agent-panel h2 {
    font-size:9px;
  }
  .agent-panel p {
    font-size:8px;
    margin-top:4px;
    max-width:155px;
    line-height:1.4;
  }
  .agent-panel .button {
    min-width:0;
    padding:8px 9px;
    font-size:8px;
    min-height:33px;
    border-radius:4px;
    white-space:nowrap;
  }
  .button-outline span {
    margin-left:6px;
  }
  .dashboard footer {
    padding-top:20px;
    font-size:9px;
  }
  .dashboard footer p {
    font-size:8px;
  }
  .dashboard footer span {
    font-size:7px;
  }
  dialog {
    padding:23px 18px;
    width:calc(100% - 42px);
    max-height:90dvh;
    border-radius:8px;
  }
  .modal-heading {
    font-size:19px;
    margin-bottom:9px;
  }
  .modal-lead {
    font-size:11px;
    margin-bottom:14px;
  }
  .deposit-grid {
    grid-template-columns:1fr;
    padding:12px;
    gap:14px;
  }
  .steps-title {
    gap:10px;
    margin-bottom:10px;
  }
  .steps-title img {
    width:38px;
    height:38px;
  }
  .steps-title h3 {
    font-size:14px;
  }
  .steps-title p {
    font-size:10px;
  }
  .steps li {
    gap:11px;
    margin:12px 0;
  }
  .steps li:before {
    flex-basis:25px;
    height:25px;
    font-size:13px;
  }
  .steps h4 {
    font-size:11px;
    margin-bottom:4px;
  }
  .steps p {
    font-size:10px;
  }
  .deposit-preview {
    border-left:0;
    border-top:1px solid var(--line);
    padding:15px 0 0;
  }
  .deposit-preview h3 {
    font-size:17px;
  }
  .qr-placeholder {
    width:120px;
    margin:13px auto;
    font-size:11px;
  }
  .deposit-preview p {
    font-size:10px;
  }
  .wallet-placeholder {
    font-size:9px;
  }
  .compact-modal {
    max-width:310px;
  }
  .compact-modal .modal-heading {
    font-size:18px;
  }
  .compact-modal p {
    font-size:12px;
  }
  .warning-icon {
    width:50px;
    height:50px;
  }
  .close-modal {
    font-size:25px;
    right:7px;
    top:6px;
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

