:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --ink: #151515;
  --text: #292724;
  --muted: #78736b;
  --line: #dfdbd0;
  --line-strong: #bfb8aa;
  --blue: #2987fc;
  --blue-soft: #eaf0ff;
  --vend-teal: #06b0a9;
  --green: var(--vend-teal);
  --green-soft: #e4fbf8;
  --pink: #d93d88;
  --pink-soft: #fdeaf3;
  --pink-shadow-soft: color-mix(in srgb, var(--pink) 35%, transparent);
  --yellow: #f1c64e;
  --yellow-soft: #fff6d8;
  --red: var(--pink);
  --teal: var(--vend-teal);
  --teal-shadow-soft: color-mix(in srgb, var(--vend-teal) 35%, transparent);
  --shadow: 9px 9px 0 var(--vend-teal), 0 18px 52px rgb(28 24 18 / 10%);
  --shadow-pink: 7px 7px 0 var(--pink);
  --shadow-teal: 7px 7px 0 var(--teal);
  --shadow-blue: 7px 7px 0 var(--blue);
  --shadow-yellow: 7px 7px 0 var(--yellow);
  --shadow-sm: 4px 4px 0 rgb(21 21 21 / 14%);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(rgb(21 21 21 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(21 21 21 / 3%) 1px, transparent 1px),
    linear-gradient(45deg, rgb(21 21 21 / 2%) 25%, transparent 25%, transparent 75%, rgb(21 21 21 / 2%) 75%),
    radial-gradient(circle at 18% 8%, rgb(36 88 216 / 12%), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgb(217 61 136 / 10%), transparent 30rem),
    var(--bg);
  background-size: 34px 34px, 34px 34px, 12px 12px, auto, auto, auto;
  color: var(--text);
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.vend-app {
  min-height: 100vh;
  padding: 22px 28px 54px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1460px;
  min-height: 66px;
  margin: 0 auto 30px;
}

.wordmark {
  display: inline-grid;
  width: 178px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.top-nav,
.header-actions,
.detail-actions,
.selector-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav {
  justify-self: start;
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.top-nav button,
.sort-pills button,
.time-tabs button,
.small-link,
.back-button,
.link-button,
.icon-only {
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 820;
}

.top-nav button {
  min-width: 118px;
  min-height: 50px;
  border: 3px solid var(--ink);
  padding: 0 18px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-pink);
}

.top-nav button:nth-child(2) {
  box-shadow: var(--shadow-teal);
}

.top-nav button:nth-child(3) {
  box-shadow: var(--shadow-blue);
}

.top-nav button.active,
.sort-pills button.active,
.time-tabs button.active {
  background: var(--ink);
  color: var(--surface);
}

.rh-logo-only,
.wallet-pill,
.connect-button,
.outline-link,
.next-label,
.hero-cta,
.continue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  padding: 0 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.wallet-pill,
.outline-link,
.next-label {
  border-color: var(--ink);
  background: var(--surface);
  color: var(--text);
}

.connect-button {
  box-shadow: var(--shadow-teal);
}

.wallet-pill {
  box-shadow: var(--shadow-yellow);
}

.outline-link {
  box-shadow: var(--shadow-blue);
}

.rh-logo-only {
  width: 48px;
  height: 48px;
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  background: #c6ff00;
  box-shadow: var(--shadow-sm);
}

.rh-logo-only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.connect-button:hover,
.wallet-pill:hover,
.outline-link:hover,
.promo-card:hover,
.vend-card:hover,
.continue-button:hover,
.hero-cta:hover {
  transform: translateY(-1px);
}

.leaf-mark {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  flex: 0 0 auto;
}

.wallet-orb {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green) 55%, var(--yellow));
}

.hero,
.browse,
.detail-shell,
.create-flow,
.admin-shell,
.reports-shell,
.connect-gate {
  max-width: 1460px;
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 22px;
  align-items: center;
  min-height: 460px;
  margin-bottom: 30px;
  border: 4px solid var(--ink);
  border-radius: 10px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  padding: 58px;
}

.hero::after {
  content: none;
}

.hero > * {
  grid-column: auto;
}

.hero {
  position: relative;
}

.section-tag,
.live-line {
  align-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--tag, var(--vend-teal));
  padding: 9px 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  box-shadow: 7px 7px 0 var(--ink);
}

.live-line > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.live-line strong {
  color: var(--green);
}

.hero h1 {
  align-self: end;
  max-width: 1140px;
  min-height: 226px;
  margin: 48px 0 0;
  color: var(--ink);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
}

.hero p {
  max-width: 980px;
  min-height: 142px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: clamp(24px, 2.9vw, 38px);
  font-weight: 780;
  line-height: 1.25;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 28px;
  margin: 0 0 22px;
}

.hero-dots button {
  width: 18px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--dot);
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.hero-dots button.active {
  width: 46px;
  border-radius: 999px;
  background: var(--dot);
  box-shadow: 4px 4px 0 var(--ink);
}

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

.hero-cta,
.hero-actions .outline-link {
  width: min(420px, 100%);
  min-height: 68px;
  font-size: 16px;
  text-transform: uppercase;
}

.hero-cta {
  box-shadow: var(--shadow-pink);
}

.hero-actions .outline-link {
  box-shadow: var(--shadow-teal);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.promo-card,
.vend-card,
.detail-token,
.chart-panel,
.detail-stat,
.admin-panel,
.launch-hero-card,
.receiver-card,
.review-row,
.fee-row,
.ticket-card,
.empty-vends {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.promo-card {
  min-height: 174px;
  padding: 22px;
  text-align: left;
  cursor: pointer;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.promo-card.green {
  box-shadow: 7px 7px 0 var(--green);
}

.promo-card.blue {
  box-shadow: 7px 7px 0 var(--blue);
}

.promo-card.pink {
  box-shadow: 7px 7px 0 var(--pink);
}

.promo-card.yellow {
  box-shadow: 7px 7px 0 var(--yellow);
}

.promo-card span,
.detail-stat span,
.mini-line span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card strong {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.06;
}

.promo-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.browse-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 20px 0 14px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 0 13px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.sort-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sort-pills button {
  min-width: 104px;
  min-height: 42px;
  border: 3px solid var(--ink);
  padding: 0 11px;
  background: var(--surface);
  box-shadow: var(--shadow-pink);
}

.sort-pills button:nth-of-type(2) {
  box-shadow: var(--shadow-teal);
}

.sort-pills button:nth-of-type(3) {
  box-shadow: var(--shadow-yellow);
}

.vend-card-grid,
.detail-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vend-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.vend-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.token-coin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.token-coin.large {
  width: 68px;
  height: 68px;
  font-size: 18px;
}

.card-menu {
  position: absolute;
  right: 12px;
  top: 14px;
  color: var(--muted);
}

.vend-symbol {
  display: block;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.vend-name {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.vend-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.vend-card > span:not(.token-coin):not(.card-menu):not(.giant-coin):not(.vend-symbol):not(.vend-name) {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.giant-coin {
  position: absolute;
  right: 25px;
  bottom: 32px;
  z-index: 1;
  color: var(--blue);
  font-size: 32px;
  font-weight: 950;
}

.flow-top {
  display: grid;
  grid-template-columns: 160px 1fr 230px;
  align-items: center;
  gap: 12px;
  max-width: 1460px;
  margin: 18px auto 0;
}

.flow-top > strong,
.address-title {
  justify-self: center;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.back-button,
.link-button,
.icon-only,
.small-link {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  color: var(--muted);
}

.back-button {
  justify-self: start;
}

.link-button,
.next-label {
  justify-self: end;
}

.address-title {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.progress {
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress span {
  display: block;
  height: 100%;
  background: var(--ink);
}

.create-stage,
.connect-gate {
  display: grid;
  justify-items: center;
  padding: 88px 0 48px;
  text-align: center;
}

.create-stage h2,
.connect-gate h1,
.admin-shell h1,
.reports-shell h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.create-stage p,
.connect-gate p,
.admin-shell p,
.reports-shell p {
  max-width: 760px;
  margin: 14px 0 44px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.35;
}

.plain-intro,
.launch-hero-card,
.receiver-card,
.detail-token {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(900px, 100%);
  min-height: 112px;
  padding: 20px;
  text-align: left;
}

.plain-intro {
  grid-template-columns: 52px 1fr;
  gap: 12px 18px;
  width: min(760px, 100%);
  min-height: auto;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-pink);
  padding: 22px;
  text-align: left;
}

.plain-intro span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
}

.plain-intro strong {
  align-self: center;
  color: var(--ink);
  font-size: 22px;
}

.launch-hero-card {
  border-top: 5px solid var(--pink);
}

.launch-hero-card strong,
.receiver-card strong,
.detail-token strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.launch-hero-card span,
.receiver-card span,
.detail-token div span,
.detail-token div em,
.review-row em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.field-stack,
.fee-list,
.review-list {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
}

.verified-panel,
.fake-panel,
.hint-panel,
.error-panel {
  display: grid;
  gap: 8px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  text-align: left;
}

.verified-panel {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  box-shadow: 6px 6px 0 var(--green);
}

.verified-panel strong,
.fake-panel strong {
  color: var(--ink);
  font-size: 18px;
}

.fake-panel strong {
  color: var(--red);
}

.verified-panel span,
.fake-panel span,
.hint-panel {
  color: var(--muted);
}

.verified-panel em {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.fake-panel,
.error-panel {
  border-color: var(--red);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--pink);
  justify-items: center;
  padding: 28px;
  text-align: center;
}

.auth-panel {
  border-color: var(--blue);
  box-shadow: 7px 7px 0 var(--pink);
}

.auth-panel strong {
  color: var(--ink);
}

.verify-lines {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.verify-line-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.verify-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.verify-line-item.good .verify-icon {
  color: var(--green);
}

.verify-line-item.bad .verify-icon {
  color: var(--red);
}

.verify-line-item.pending .verify-icon,
.verify-line-item.muted .verify-icon {
  color: var(--muted);
}

.hint-panel {
  display: flex;
  align-items: center;
}

.split-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input-line {
  display: grid;
  gap: 7px;
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.input-line > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.field-label-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.info-dot {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.info-dot svg {
  display: block;
  stroke-width: 3;
}

.info-dot.active {
  background: var(--vend-teal);
  box-shadow: 3px 3px 0 var(--ink);
}

.info-bubble {
  display: block;
  max-width: 100%;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 5px 5px 0 var(--pink);
  color: var(--text);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.input-line b {
  color: var(--blue);
}

.input-line input,
.input-line select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
  text-transform: none;
}

.input-line input::placeholder {
  color: #9b958c;
  font-weight: 750;
}

.input-line input:focus,
.input-line select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(36 88 216 / 12%);
}

.input-line input[type="range"] {
  min-height: 34px;
  padding: 0;
  accent-color: var(--blue);
}

.verify-line {
  gap: 10px;
}

.verify-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 12px;
  align-items: center;
}

.verify-button {
  min-height: 48px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--vend-teal);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.verify-button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.verify-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 0 9px;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.verify-status.ok {
  background: var(--green-soft);
  color: var(--green);
}

.verify-status.bad {
  background: var(--pink-soft);
  color: var(--pink);
}

.verify-status.checking {
  background: var(--blue-soft);
  color: var(--blue);
}

.verified-panel.checking {
  box-shadow: 6px 6px 0 var(--blue);
}

.verified-panel.checking svg {
  animation: vend-spin 900ms linear infinite;
}

@keyframes vend-spin {
  to {
    transform: rotate(360deg);
  }
}

.selector-tabs {
  width: min(760px, 100%);
  margin-bottom: 14px;
}

.selector-tabs button {
  flex: 1;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.selector-tabs button.active {
  background: var(--ink);
  color: var(--surface);
}

.receiver-card {
  grid-template-columns: 1fr auto;
  margin-bottom: 14px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.receiver-card em,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 0 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.badge.danger {
  color: var(--red);
}

.asset-info-grid,
.asset-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  width: min(900px, 100%);
  margin-bottom: 14px;
}

.asset-info-grid article,
.chance-tiles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: 110px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  text-align: left;
}

.asset-info-grid strong,
.chance-tiles strong {
  color: var(--ink);
  font-size: 24px;
}

.asset-info-grid em,
.chance-tiles em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
}

.asset-dot {
  display: grid;
  grid-row: span 2;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
}

.asset-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px;
  color: var(--ink);
  font-weight: 900;
}

.asset-strip b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
}

.fee-row,
.review-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px;
  text-align: left;
}

.chance-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(900px, 100%);
  margin-bottom: 18px;
}

.fee-row strong {
  color: var(--green);
  font-size: 26px;
}

.fee-row span,
.review-row strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.fee-row em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
}

.ticket-card {
  display: grid;
  place-items: center;
  gap: 6px;
  width: min(440px, 100%);
  min-height: 122px;
  margin-bottom: 18px;
  border-top: 5px solid var(--yellow);
}

.ticket-card strong {
  color: var(--ink);
  font-size: 28px;
}

.ticket-card span {
  color: var(--muted);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
  text-align: left;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.review-row {
  grid-template-columns: 150px 1fr auto;
}

.review-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-row strong {
  overflow-wrap: anywhere;
}

.flow-actions {
  position: static;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(900px, calc(100vw - 44px));
  min-height: 76px;
  margin: 0 auto 34px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 12px;
}

.flow-actions.single {
  display: flex;
  justify-content: center;
}

.flow-actions > span,
.small-link {
  color: var(--muted);
  font-weight: 900;
}

.continue-button {
  min-width: 230px;
  min-height: 50px;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink);
}

.continue-button[disabled],
.next-label[disabled] {
  background: #d8d3c8;
  color: #817b72;
  cursor: not-allowed;
  box-shadow: 7px 7px 0 #b8b1a5;
}

.continue-button[disabled]:hover,
.next-label[disabled]:hover {
  transform: none;
}

.detail-token {
  margin: 24px 0 14px;
}

.chart-panel {
  position: relative;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
}

.chart-panel > strong {
  position: absolute;
  right: 28px;
  top: 32px;
  color: var(--ink);
  font-size: 34px;
}

.time-tabs {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 5px;
}

.time-tabs button {
  min-width: 54px;
  min-height: 38px;
}

.fake-chart {
  position: absolute;
  left: 44px;
  right: 70px;
  bottom: 54px;
  height: 210px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to top, transparent 0, transparent 41px, rgb(21 21 21 / 5%) 42px);
}

.fake-chart i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.fake-chart i::before {
  content: "";
  position: absolute;
  right: 3px;
  top: 4px;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: right center;
  transform: rotate(-8deg);
  opacity: 0.65;
}

.detail-actions {
  margin: 14px 0;
}

.outline-link {
  min-height: 46px;
}

.detail-stat,
.admin-panel,
.report-table-panel {
  min-height: 128px;
  padding: 18px;
}

.detail-stat strong {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 12px;
  color: var(--ink);
  font-size: 25px;
}

.detail-stat em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.admin-shell,
.reports-shell {
  padding-top: 54px;
}

.admin-shell h1,
.reports-shell h1,
.admin-shell p,
.reports-shell p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.admin-panel {
  display: grid;
  gap: 14px;
}

.admin-panel:first-child {
  grid-column: span 2;
}

.admin-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.report-table-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-teal);
}

.report-table-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.report-table-head .section-tag {
  align-self: center;
  white-space: nowrap;
}

.report-table-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.report-table-head p {
  max-width: none;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 18px;
  text-align: left;
}

.report-limit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-limit select {
  min-height: 44px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  padding: 0 34px 0 12px;
  font-weight: 950;
  box-shadow: var(--shadow-pink);
}

.report-table-wrap {
  overflow-x: auto;
}

.report-table {
  width: 100%;
  min-width: 840px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.report-table th,
.report-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.report-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-table tbody tr {
  background: var(--surface-soft);
  box-shadow: 4px 4px 0 rgb(21 21 21 / 12%);
}

.report-table tbody td {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--text);
  font-weight: 820;
}

.report-table tbody td:first-child {
  border-left: 3px solid var(--ink);
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--green);
  font-weight: 950;
}

.report-table tbody td:last-child {
  border-right: 3px solid var(--ink);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.report-table td button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.report-table td button strong,
.report-table td button em {
  display: block;
}

.report-table td button em {
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.token-coin.mini {
  width: 38px;
  height: 38px;
  font-size: 11px;
}

.report-empty {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 3px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 22px;
}

.report-empty strong {
  margin-top: 6px;
  color: var(--ink);
}

.report-empty span {
  margin-top: 4px;
}

.mini-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
}

.mini-line:last-child {
  border-bottom: 0;
}

.mini-line strong {
  text-align: right;
}

.connect-gate {
  min-height: 580px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgb(21 21 21 / 34%);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.connect-modal,
.wallet-menu {
  width: min(520px, 100%);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-pink);
  padding: 18px;
}

.wallet-menu {
  position: fixed;
  right: 28px;
  top: 96px;
  width: 300px;
  display: grid;
  gap: 6px;
}

.wallet-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 820;
  text-align: left;
}

.wallet-menu button:hover {
  background: var(--surface-soft);
}

.modal-brand {
  display: inline-grid;
  width: 66px;
  height: 66px;
  margin: 0 0 18px;
  place-items: center;
}

.modal-brand img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.modal-head strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
}

.modal-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

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

.wallet-options button {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  padding: 10px;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-pink);
}

.wallet-options button:nth-child(2) {
  box-shadow: var(--shadow-teal);
}

.wallet-options button:nth-child(3) {
  box-shadow: var(--shadow-blue);
}

.wallet-options button:nth-child(4) {
  box-shadow: var(--shadow-yellow);
}

.wallet-options button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.wallet-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
}

.wallet-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wallet-options strong {
  font-size: 17px;
}

.wallet-options em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.toast-stack {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 10px;
  width: min(520px, calc(100vw - 36px));
  pointer-events: none;
}

.toast {
  position: relative;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--pink), 12px 12px 0 var(--teal-shadow-soft);
  padding: 15px 18px;
  color: var(--ink);
  animation: toast-slide-in 220ms ease-out both;
}

.toast::before {
  content: "";
  position: absolute;
  inset: -4px auto -4px -4px;
  width: 8px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--blue);
}

.toast.leaving {
  animation: toast-slide-out 400ms ease-in both;
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translate(36px, 28px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes toast-slide-out {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(42px, 32px);
  }
}

.empty-vends {
  display: grid;
  grid-column: 1 / -1;
  min-height: 190px;
  place-items: center;
  border-style: dashed;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.empty-vends strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .vend-app {
    padding: 16px 16px 38px;
  }

  .site-header,
  .hero,
  .browse-tools,
  .flow-top,
  .flow-actions {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 12px;
  }

  .wordmark {
    width: 156px;
    height: 54px;
  }

  .top-nav,
  .header-actions,
  .detail-actions {
    width: 100%;
  }

  .top-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-nav button {
    min-width: 0;
  }

  .hero::after {
    min-height: 180px;
  }

  .hero h1 {
    margin-top: 42px;
    min-height: auto;
    font-size: clamp(54px, 15vw, 92px);
  }

  .hero p {
    min-height: auto;
  }

  .promo-grid,
  .vend-card-grid,
  .detail-grid,
  .admin-grid,
  .split-fields {
    grid-template-columns: 1fr;
  }

  .admin-panel:first-child {
    grid-column: span 1;
  }

  .flow-top {
    display: flex;
    justify-content: space-between;
  }

  .flow-top > strong,
  .address-title {
    font-size: 18px;
  }

  .next-label {
    display: none;
  }

  .create-stage {
    padding: 64px 0 126px;
  }

  .review-row,
  .detail-token,
  .launch-hero-card,
  .report-table-head {
    grid-template-columns: 1fr;
  }

  .report-limit {
    justify-self: start;
  }

  .chart-panel {
    min-height: 340px;
  }

  .fake-chart {
    left: 28px;
    right: 28px;
    bottom: 44px;
    height: 170px;
  }

  .continue-button {
    width: 100%;
    min-width: 0;
  }

  .verify-input-row {
    grid-template-columns: 1fr;
  }

  .verify-button {
    width: 100%;
  }
}
