:root {
  color-scheme: dark;
  --bg: #090b0f;
  --bg-elevated: #0e1117;
  --surface: rgba(18, 22, 29, 0.88);
  --surface-solid: #12161d;
  --surface-light: #171c24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f5f7f8;
  --muted: #a0a8b4;
  --faint: #68717e;
  --accent: #c8ff60;
  --accent-soft: rgba(200, 255, 96, 0.11);
  --cyan: #72e6e6;
  --warning: #ffd479;
  --danger: #ff8f9c;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  font-family: Inter, "SF Pro Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.06), var(--bg) 86%);
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.11;
  pointer-events: none;
}

.ambient-one {
  top: -22rem;
  right: -12rem;
  background: var(--accent);
}

.ambient-two {
  top: 35rem;
  left: -30rem;
  background: var(--cyan);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, 0.8);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 76px;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.network-pill i,
.live-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(200, 255, 96, 0.8);
}

.primary-button,
.small-button,
.icon-button {
  border: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  color: #10130a;
  background: var(--accent);
  font-weight: 750;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #d6ff86;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.primary-large {
  min-height: 54px;
  padding-inline: 25px;
  border-radius: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  min-height: 700px;
  align-items: center;
  gap: 72px;
  padding-block: 96px 110px;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  padding-block: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
  transition: border-color 160ms ease;
}

.text-button:hover {
  border-color: var(--accent);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 45px;
  color: var(--faint);
  font-size: 0.75rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.visual-orbit {
  position: absolute;
  inset: 4% -8% auto auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(200, 255, 96, 0.15);
  border-radius: 50%;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.visual-orbit::before {
  inset: 48px;
}

.visual-orbit::after {
  inset: 110px;
}

.visual-card {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: rgba(17, 21, 28, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand-card {
  top: 46px;
  right: 16px;
  width: min(390px, 95%);
  min-height: 360px;
  border-radius: 30px;
  padding: 26px;
  transform: rotate(2deg);
}

.brand-card::after {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.card-kicker {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-card img {
  width: min(250px, 88%);
  height: auto;
  aspect-ratio: 1;
  margin: 20px auto;
  border: 1px solid rgba(183, 255, 77, 0.14);
  border-radius: 20px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.35));
}

.live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.live-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.live-row strong {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  text-align: right;
}

.program-card {
  z-index: 2;
  right: -28px;
  bottom: 28px;
  width: 280px;
  border-radius: 18px;
  padding: 20px;
  transform: rotate(-2deg);
}

.program-card span,
.program-card small {
  display: block;
  color: var(--faint);
  font-size: 0.7rem;
}

.program-card strong {
  display: block;
  margin: 7px 0 12px;
  font-size: 0.9rem;
}

.network-section {
  scroll-margin-top: 76px;
  border-block: 1px solid var(--line);
  padding-block: 100px;
  background: rgba(255, 255, 255, 0.018);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading > p,
.updated-label {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: right;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.stat-grid article {
  position: relative;
  min-width: 0;
  padding: 28px 25px 32px;
  border-right: 1px solid var(--line);
}

.stat-grid article:last-child {
  border-right: 0;
}

.stat-index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: var(--faint);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.label,
dt {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin: 30px 0 12px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-grid p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.profile-section {
  scroll-margin-top: 100px;
  padding-block: 115px;
}

.profile-heading > p {
  max-width: 390px;
}

.profile-gate {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  background:
    linear-gradient(110deg, rgba(200, 255, 96, 0.09), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.profile-gate::after {
  position: absolute;
  right: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(200, 255, 96, 0.13);
  border-radius: 50%;
  content: "";
}

.gate-mark {
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
}

.gate-mark img {
  width: 70px;
}

.profile-gate h3 {
  margin-bottom: 10px;
}

.profile-gate p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.profile-gate .primary-button {
  position: relative;
  z-index: 1;
}

.profile-content[hidden] {
  display: none;
}

.status-strip {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.status-strip > div {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

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

.status-strip strong,
.status-strip small {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
}

.status-strip small {
  color: var(--faint);
  font-size: 0.7rem;
}

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

.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--surface);
}

.wide-panel {
  grid-column: 1 / -1;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(200, 255, 96, 0.3);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge.muted {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.badge.warn {
  border-color: rgba(255, 212, 121, 0.35);
  color: var(--warning);
  background: rgba(255, 212, 121, 0.08);
}

.small-button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 650;
}

.small-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.character-body {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.portrait-frame {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(114, 230, 230, 0.13), transparent 58%),
    rgba(255, 255, 255, 0.025);
}

.portrait-frame img {
  max-width: 88%;
  max-height: 165px;
  object-fit: contain;
  image-rendering: pixelated;
}

.portrait-frame > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(9, 11, 15, 0.78);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

dl {
  margin: 0;
}

dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list > div {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.detail-list > div:last-child {
  padding-bottom: 0;
  border: 0;
}

.chain-link {
  text-decoration: underline;
  text-decoration-color: rgba(200, 255, 96, 0.25);
  text-underline-offset: 4px;
}

.chain-link:not([href]) {
  text-decoration: none;
  pointer-events: none;
}

.chain-link[href]:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 14px;
}

.card-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
}

.card-grid.empty {
  display: block;
  color: var(--muted);
}

.asset-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.asset-card img {
  width: 100%;
  height: 110px;
  margin-bottom: 14px;
  object-fit: contain;
  image-rendering: pixelated;
}

.asset-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.asset-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.verification-band {
  border-block: 1px solid var(--line);
  padding-block: 65px;
  background: rgba(255, 255, 255, 0.018);
}

.verification-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.8fr) auto;
  align-items: center;
  gap: 50px;
}

.verification-inner h2 {
  max-width: 420px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.runtime-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 14px;
}

.runtime-grid > div {
  min-width: 0;
}

.runtime-grid dd {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 145px;
  gap: 20px;
  color: var(--faint);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a {
  justify-self: end;
}

.footer-brand {
  color: var(--text);
}

.wallet-dialog {
  width: min(500px, calc(100% - 28px));
  max-height: min(720px, calc(100vh - 28px));
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  padding: 0;
  color: var(--text);
  background: #11151c;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.wallet-dialog::backdrop {
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(8px);
}

.wallet-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 0;
}

.wallet-dialog-head h2 {
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.35rem;
}

.icon-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.wallet-dialog-copy {
  margin: 18px 28px 22px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.wallet-list {
  display: grid;
  gap: 9px;
  padding: 0 18px;
}

.wallet-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.wallet-option:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 255, 96, 0.4);
  background: rgba(200, 255, 96, 0.055);
}

.wallet-option img,
.wallet-fallback-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
}

.wallet-fallback-icon {
  display: grid;
  place-items: center;
  color: #10130a;
  background: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.wallet-option strong,
.wallet-option small {
  display: block;
}

.wallet-option strong {
  font-size: 0.9rem;
}

.wallet-option small {
  margin-top: 3px;
  color: var(--faint);
  font-size: 0.68rem;
}

.wallet-option > span:last-child {
  color: var(--faint);
}

.wallet-message {
  min-height: 24px;
  margin: 15px 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.wallet-message.error-text {
  color: var(--danger);
}

.wallet-empty {
  border: 1px dashed var(--line-strong);
  border-radius: 15px;
  padding: 25px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
}

.wallet-dialog-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding: 18px 28px 24px;
  color: var(--faint);
  font-size: 0.7rem;
}

.wallet-dialog-foot a {
  color: var(--muted);
}

.error-text {
  color: var(--danger) !important;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding-block: 80px;
  }

  .hero-visual {
    width: min(520px, 100%);
    min-height: 500px;
    margin: 0 auto;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid article:nth-child(2) {
    border-right: 0;
  }

  .stat-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .profile-gate {
    grid-template-columns: auto 1fr;
  }

  .profile-gate .primary-button {
    grid-column: 2;
    justify-self: start;
  }

  .verification-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .verification-inner > .badge {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .nav-shell {
    width: min(100% - 28px, 1240px);
  }

  .network-pill {
    display: none;
  }

  .site-header .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero {
    padding-block: 65px 70px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .brand-card {
    right: 0;
  }

  .program-card {
    right: 0;
  }

  .network-section,
  .profile-section {
    padding-block: 75px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading > p,
  .updated-label {
    text-align: left;
  }

  .profile-gate {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .profile-gate .primary-button {
    grid-column: auto;
    justify-self: stretch;
  }

  .status-strip,
  .dashboard-grid,
  .character-body,
  .runtime-grid {
    grid-template-columns: 1fr;
  }

  .status-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-block: 35px;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer > a {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid article,
  .stat-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-grid article:last-child {
    border-bottom: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-button {
    align-self: flex-start;
  }

  .trust-row {
    gap: 12px 18px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .brand-card {
    min-height: 310px;
    padding: 20px;
  }

  .brand-card img {
    width: min(180px, 78%);
    height: auto;
    margin-block: 22px 20px;
  }

  .program-card {
    bottom: 0;
    width: 245px;
  }

  .gate-mark {
    width: 84px;
    height: 84px;
  }

  .gate-mark img {
    width: 58px;
  }

  .panel {
    padding: 20px;
  }

  .wallet-dialog-head {
    padding-inline: 20px;
  }

  .wallet-dialog-copy,
  .wallet-message {
    margin-inline: 20px;
  }

  .wallet-dialog-foot {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
