@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  /* Brand from momentshift.com landing: primary teal + lime accent */
  --bg: #f3f5f6;
  --surface: #ffffff;
  --surface-2: #f8f9fa;
  --line: #e8eced;
  --text: #0d262d;
  --muted: #45666f;
  --faint: #738c93;
  --accent: #178d72;
  --accent-soft: #e7f6f2;
  --lead: #fff3e9;
  --hot: #ffece3;
  --hot-hover: #ffe3d4;
  --hot-2: #fff4ee;
  --hot-2-hover: #ffece3;
  --hot-3: #fffaf7;
  --hot-3-hover: #fff4ee;
  --ink: #16404b;
  --highlight: #e2ff5e;
  --shadow: 0 1px 2px rgba(22, 64, 75, 0.05), 0 18px 40px rgba(22, 64, 75, 0.07);
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(23, 141, 114, 0.14), transparent 58%),
    radial-gradient(700px 380px at 92% 8%, rgba(226, 255, 94, 0.22), transparent 55%),
    var(--bg);
}

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

a:hover {
  color: var(--accent);
}

.is-hidden {
  display: none !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236, 238, 243, 0.9);
}

.container,
.container-xl {
  max-width: 1280px;
}

.navbar .container-xl,
.navbar .container-fluid {
  max-width: 1640px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: 1.12rem;
  color: var(--text) !important;
  margin-right: 0;
}

.navbar-brand img {
  width: auto;
  height: 34px;
  max-width: 210px;
  display: block;
}

.nav-brand-block {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin-right: auto;
  padding-right: 12px;
}

.nav-pulse {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
  max-width: min(720px, 48vw);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 4px;
}

.nav-pulse::-webkit-scrollbar {
  display: none;
}

.nav-pulse-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 0 10px;
  border-left: 1px solid var(--line);
  line-height: 1.2;
}

.nav-pulse-item:first-child {
  border-left: 0;
  padding-left: 2px;
}

.nav-pulse-item b,
.nav-pulse-item .js-today-top,
.nav-pulse-item .js-live {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.nav-pulse-item:hover {
  color: var(--text);
}

@media (min-width: 1200px) {
  .nav-pulse {
    display: inline-flex;
  }
}

@media (max-width: 1399.98px) {
  .nav-pulse {
    max-width: 42vw;
  }
}

.navbar .nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 0.45rem 0.7rem !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--text);
}

.navbar-toggler {
  border-color: var(--line);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .dropdown-menu {
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 11rem;
  margin-top: 8px !important;
}

.navbar .dropdown-item {
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  padding: 0.55rem 0.85rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--accent-soft);
  color: var(--text);
}

.navbar .dropdown-item.active {
  background: var(--ink);
  color: #fff;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.15em;
}

@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 12px;
    background: var(--surface-2);
    margin-top: 4px !important;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.chip b {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

a.chip {
  text-decoration: none;
  color: var(--muted);
}

a.chip:hover {
  color: var(--text);
  border-color: #9fd4c8;
  background: #fff;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.live-dot.is-on {
  box-shadow: 0 0 0 5px rgba(23, 141, 114, 0.18);
}

.page-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.board-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.lead-copy {
  font-size: 18px;
  color: var(--muted);
  max-width: 34rem;
  margin: 12px 0 0;
}

@media (min-width: 768px) {
  .lead-copy.is-oneline {
    max-width: none;
    white-space: nowrap;
  }
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
  background: #fff;
  border: 1px solid #e4e7ee;
  color: var(--text);
  border-radius: 14px;
  min-height: 48px;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: #9fd4c8;
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.14);
}

.form-control::placeholder {
  color: var(--faint);
}

.geo-search {
  position: relative;
  max-width: 420px;
}

.geo-search-ico {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--faint);
  pointer-events: none;
}

.geo-search-ico svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.geo-search .form-control {
  padding-left: 44px;
}

.faq-search {
  max-width: none;
}

.geo-open,
.geo-states {
  background: var(--surface-2);
  border-radius: 28px;
  padding: 22px;
}

.geo-open-head,
.geo-states-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.geo-open-head .geo-search,
.geo-states-head .geo-search {
  flex: 1 1 260px;
  max-width: 520px;
  width: 100%;
}

.geo-open-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.geo-open-grid > .js-geo-card {
  min-width: 0;
}

.form-label {
  font-weight: 600;
}

.btn-lime {
  background: var(--ink);
  color: #fff;
  border: 0;
  font-weight: 700;
  border-radius: 14px;
  padding: 0 20px;
  min-height: 48px;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-lime:hover,
a.btn-lime:hover {
  background: #2a2e38;
  color: #fff !important;
}

.btn-sm.btn-lime {
  padding: 0 14px;
  min-height: 36px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 14px;
  font-weight: 700;
  padding: 0 20px;
  min-height: 48px;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost:hover {
  border-color: #d8dce6;
  color: var(--text);
  background: var(--surface-2);
}

.nav-pills {
  background: #eceef4;
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}

.nav-pills .nav-link {
  color: var(--muted);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
}

.nav-pills .nav-link.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  padding-bottom: 2px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.filter-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.filter-btn.is-active {
  border-color: transparent;
  color: #fff;
  background: var(--ink);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.toolbar .cat-picker {
  width: 280px;
  flex: 0 0 280px;
}

.cat-picker {
  position: relative;
}

.cat-picker-btn {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.cat-picker.is-field .cat-picker-btn {
  min-height: 48px;
  border-radius: 14px;
}

.cat-picker-btn .js-cat-label {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-picker-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -4px;
  flex-shrink: 0;
}

.cat-picker.is-open .cat-picker-btn {
  border-color: #9fd4c8;
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.14);
}

.cat-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cat-picker.is-field .cat-picker-menu {
  left: 0;
  right: auto;
  width: 100%;
  min-width: 260px;
}

.cat-picker-search {
  padding: 12px 12px 8px;
}

.cat-picker-search .form-control {
  min-height: 40px;
  border-radius: 12px;
}

.cat-picker-list {
  max-height: 320px;
  overflow: auto;
  padding: 0 8px 8px;
}

.cat-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.cat-option:hover,
.cat-option.is-active {
  background: var(--lead);
  color: var(--accent);
}

.cat-ico {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cat-picker-empty {
  padding: 8px 16px 16px;
  margin: 0;
}

.bid-stepper {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 180px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: 1px solid #e4e7ee;
  border-radius: 14px;
  overflow: hidden;
  box-sizing: border-box;
}

.bid-stepper:focus-within {
  border-color: #9fd4c8;
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.14);
}

.bid-step {
  flex: 0 0 44px;
  width: 44px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--surface-2);
  color: var(--text);
  display: grid;
  place-items: center;
}

.bid-step + .bid-value {
  border-left: 1px solid var(--line);
}

.bid-step.is-plus {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  border-left: 1px solid var(--ink);
}

.bid-step svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.bid-step:hover {
  background: var(--lead);
  color: var(--accent);
}

.bid-step.is-plus:hover {
  background: #2a2e38;
  color: #fff;
}

.bid-value {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  height: auto;
  padding: 0 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.bid-currency {
  flex: 0 0 auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
  padding: 0;
}

.bid-value input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  min-height: 0;
  padding: 0;
  line-height: 1;
}

.bid-value input:focus {
  outline: 0;
  box-shadow: none;
}

.bid-value input::-webkit-outer-spin-button,
.bid-value input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bid-value input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.bid-dock {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
}

.bid-dock-form {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-areas:
    "copy fields"
    ". hint";
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
}

.bid-dock-copy {
  grid-area: copy;
  text-align: left;
}

.bid-dock-copy h2 {
  margin: 0 0 4px;
  text-align: left;
}

.bid-dock-copy .caption {
  white-space: nowrap;
}

.bid-dock-fields {
  grid-area: fields;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 160px minmax(200px, 220px) max-content;
  gap: 12px 14px;
  align-items: end;
}

.bid-dock-fields.is-stack-url {
  grid-template-columns: minmax(160px, 180px) minmax(200px, 1fr) max-content;
}

.bid-dock-fields.is-stack-url .bid-field:first-child {
  grid-column: 1 / -1;
}

.bid-dock-hint {
  grid-area: hint;
  min-height: 18px;
  margin: 0;
}

.bid-dock-hint .js-url-hint:empty {
  display: none;
}

.bid-dock-hint .js-url-hint:not(:empty) + .js-preview::before {
  content: "· ";
}

.bid-dock-form:has(.is-invalid) .js-preview,
.bid-dock-hint .js-url-hint.is-error + .js-preview {
  display: none;
}

.bid-dock-hint .js-url-hint.is-error,
.bid-dock-hint .bid-dock-error {
  color: #dc3545;
  font-weight: 600;
}

.bid-dock-hint .bid-dock-error {
  display: inline;
  margin: 0;
}

.bid-field .invalid-feedback {
  display: none !important;
}

.bid-field .form-control.is-invalid,
.bid-field .form-control.is-valid {
  padding-right: 12px;
  background-image: none;
}

.bid-field .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.bid-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bid-field .form-label {
  margin-bottom: 6px;
  min-height: 18px;
  white-space: nowrap;
}

.bid-field .form-control {
  min-width: 0;
  height: 48px;
  max-height: 48px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bid-field-submit .btn {
  min-height: 48px;
  height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.bid-dock h2 {
  font-size: 26px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.price-hero {
  background: var(--lead);
  border-radius: 20px;
  padding: 16px 18px;
}

.preview-note {
  background: var(--surface-2);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
}

.rank-list {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.rank-list.js-rank-list:not(:has(.js-row:not(.is-hidden))) {
  display: none;
}

.board-empty {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 14px 14px 20px;
}

.board-empty-ghost {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.board-empty-row {
  display: grid;
  grid-template-columns: 36px 44px minmax(0, 1fr) 64px;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  border-radius: 16px;
  background: var(--surface-2);
}

.board-empty-row.is-lead {
  background: var(--hot);
}

.board-empty-rank,
.board-empty-logo,
.board-empty-lines i,
.board-empty-lines b,
.board-empty-price {
  display: block;
  background: #e6eaf1;
  border-radius: 8px;
}

.board-empty-row.is-lead .board-empty-rank,
.board-empty-row.is-lead .board-empty-logo,
.board-empty-row.is-lead .board-empty-lines i,
.board-empty-row.is-lead .board-empty-lines b,
.board-empty-row.is-lead .board-empty-price {
  background: #f3d5c6;
}

.board-empty-rank {
  width: 36px;
  height: 22px;
}

.board-empty-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.board-empty-lines {
  min-width: 0;
}

.board-empty-lines i {
  width: 58%;
  height: 10px;
  margin-bottom: 8px;
}

.board-empty-lines b {
  width: 34%;
  height: 8px;
}

.board-empty-price {
  width: 56px;
  height: 12px;
  justify-self: end;
}

.board-empty-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 12px 4px;
}

.board-empty-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-empty-note strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.today-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.today-card-head {
  padding: 22px 22px 12px;
}

.today-card-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 6px;
}

.today-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.today-row {
  display: grid;
  grid-template-columns: 36px 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 22px;
  border-top: 1px solid var(--line);
}

.today-row.is-hot {
  background: linear-gradient(90deg, rgba(22, 64, 75, 0.08), transparent 55%);
}

.today-rank {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.today-row.is-hot .today-rank {
  color: var(--accent);
}

.today-row img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.today-row a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.today-row .px {
  font-size: 13px;
}

.today-card-link {
  display: block;
  padding: 14px 22px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  border-top: 1px solid var(--line);
}

.rank-card {
  display: grid;
  grid-template-columns: 36px 44px minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 0;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 0.15s ease;
}

.rank-card:has(.rank-type) {
  grid-template-columns: 36px 24px 44px minmax(0, 1fr) auto;
}

.rank-type {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rank-type svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rank-card.is-hot .rank-type {
  background: var(--accent-soft);
  color: var(--accent);
}

.rank-card:last-child {
  border-bottom: 0;
}

.rank-card:hover {
  background: #f7f8fc;
}

.rank-card.is-hot {
  background: var(--hot);
  border-bottom: 0;
  border-radius: 18px;
  margin-bottom: 8px;
}

.rank-card.is-hot:hover {
  background: var(--hot-hover);
}

.rank-card.is-hot-2 {
  background: var(--hot-2);
}

.rank-card.is-hot-2:hover {
  background: var(--hot-2-hover);
}

.rank-card.is-hot-3 {
  background: var(--hot-3);
}

.rank-card.is-hot-3:hover {
  background: var(--hot-3-hover);
}

.rank-card.is-hot:last-child {
  margin-bottom: 0;
}

.rank-card.is-hot .rank-num {
  background: var(--ink);
  color: #fff;
}

.rank-num {
  width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-2);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.rank-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  object-fit: cover;
  background: #fff;
}

.rank-main {
  min-width: 0;
  padding-right: 4px;
}

.rank-main h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.rank-main h3 a {
  color: inherit;
}

.rank-main h3 a:hover {
  color: var(--accent);
}

.rank-main p {
  margin: 2px 0 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 12px;
  color: var(--faint);
}

.rank-meta-tag {
  background: var(--surface-2);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--muted);
  font-weight: 600;
}

.rank-meta-url,
.rank-meta-clicks,
.rank-meta-fee {
  background: none;
  padding: 0;
  color: var(--faint);
  font-weight: 500;
}

.rank-meta-url {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.rank-meta-fee {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.rank-meta-stats {
  color: var(--accent);
  font-weight: 700;
  background: none;
  padding: 0;
}

.rank-meta-stats:hover {
  color: var(--ink);
}

/* fallback when JS hasn’t classified meta yet */
.rank-meta > span:not([class]),
.rank-meta > a:not([class]) {
  background: var(--surface-2);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--muted);
  font-weight: 600;
}

.rank-meta > a:not([class]) {
  color: var(--accent);
  background: var(--accent-soft);
}

.rank-card > .rank-price {
  justify-self: end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.2;
}

.rank-list.is-click-list .rank-card {
  grid-template-columns: 36px 44px minmax(0, 1fr) auto;
}

.rank-list.is-click-list .rank-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.rank-side {
  display: flex;
  align-items: center;
  justify-self: end;
  min-width: 0;
}

.rank-side-label {
  display: none;
}

.rank-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.rank-claim:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  text-decoration: none;
}

.px {
  font-family: "IBM Plex Mono", monospace;
  color: var(--text);
  font-weight: 600;
}

.surface {
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.surface .rank-list {
  box-shadow: none;
  border-radius: 16px;
}

.listing-logo {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.1);
  object-fit: cover;
  background: #fff;
}

.stat-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}

.stat-live {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.stat-live .live-dot,
.stat-live .live-dot.is-on {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  align-self: center;
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.18);
}

.bar-track {
  height: 8px;
  background: #eceef3;
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
}

.stats-panel {
  display: flex;
  flex-direction: column;
}

.stats-empty {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-height: 240px;
}

.stats-empty-ghost {
  display: grid;
  gap: 10px;
}

.stats-empty-ghost .bar-fill {
  background: #d8dee8;
}

.stats-empty-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stats-empty-label i,
.stats-empty-label b {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: #e6eaf1;
}

.stats-empty-label i {
  width: 42%;
  max-width: 120px;
}

.stats-empty-label b {
  width: 28px;
}

.stats-empty-ghost .bar-track {
  margin-bottom: 6px;
}

.stats-empty-note {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #f4f6fa;
  border-radius: 16px;
}

.stats-empty-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.stats-empty-note strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.w-100 { width: 100%; }
.w-70 { width: 70%; }
.w-52 { width: 52%; }
.w-43 { width: 43%; }
.w-22 { width: 22%; }
.w-12 { width: 12%; }
.w-8 { width: 8%; }

.geo-map {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.geo-cell {
  aspect-ratio: 1.3;
  border-radius: 6px;
  background: #eceef3;
}

.geo-cell.hot-5 { background: #312e81; }
.geo-cell.hot-4 { background: #16404b; }
.geo-cell.hot-3 { background: #818cf8; }
.geo-cell.hot-2 { background: #c7d2fe; }
.geo-cell.hot-1 { background: #e7f6f2; }

.choropleth {
  background: #eef1f7;
  border-radius: 20px;
  overflow: hidden;
}

.choropleth svg,
.choropleth-svg {
  display: block;
  width: 100%;
  height: auto;
}

.choropleth-svg .land {
  fill: #d7dbe7;
  stroke: #eef1f7;
  stroke-width: 0.55;
  stroke-linejoin: round;
}

.choropleth-svg .hot-dot {
  stroke: #eef1f7;
  stroke-width: 1;
}

.choropleth-svg .hot-5 { fill: #312e81; }
.choropleth-svg .hot-4 { fill: #16404b; }
.choropleth-svg .hot-3 { fill: #6366f1; }
.choropleth-svg .hot-2 { fill: #a5b4fc; }
.choropleth-svg .hot-1 { fill: #c7d2fe; }

.choropleth-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
}

.choropleth-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.choropleth-legend i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.choropleth-legend .l5 { background: #312e81; }
.choropleth-legend .l4 { background: #16404b; }
.choropleth-legend .l3 { background: #6366f1; }
.choropleth-legend .l2 { background: #a5b4fc; }
.choropleth-legend .l1 { background: #c7d2fe; }

.shot-card {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #f3f4f8;
  border-bottom: 1px solid var(--line);
}

.shot-chrome .dots {
  display: flex;
  gap: 5px;
}

.shot-chrome .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d4de;
}

.shot-chrome .url {
  flex: 1;
  min-width: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #eef1f7;
}

.shot-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef1f7;
  overflow: hidden;
}

.shot-frame img {
  position: relative;
  z-index: 1;
}

.shot-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #eef1f7;
  color: var(--text);
  z-index: 2;
}

.shot-frame.is-ready .shot-loader {
  display: none;
}

.shot-loader-spin {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: checkout-spin 0.7s linear infinite;
}

.shot-loader strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.shot-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  aspect-ratio: 16 / 10;
  padding: 24px;
  background: #eef1f7;
  text-align: center;
}

.shot-empty svg {
  width: 36px;
  height: 36px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.4;
}

.shot-empty strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.shot-card figcaption {
  padding: 12px 16px 16px;
  font-size: 12px;
  color: var(--muted);
}

.ctr-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--lead);
}

.ctr-pill .stat-value {
  font-size: 28px;
  margin: 0;
}

.stat-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 120px;
}

.week-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.week-col i {
  display: block;
  width: 100%;
  max-width: 18px;
  height: var(--week-h, 24%);
  background: var(--accent);
  border-radius: 6px 6px 2px 2px;
}

.week-col span,
.caption {
  font-size: 12px;
  color: var(--faint);
}

.also-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.also-row:last-child {
  border-bottom: 0;
}

.also-row img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.also-row .px {
  margin-left: auto;
}

.cat-box {
  padding: 20px;
}

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

.cat-box-head-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cat-box-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cat-view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.cat-hero {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 24px 24px;
}

.cat-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.cat-crumb::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 6l-6 6 6 6'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 6l-6 6 6 6'/></svg>") center / contain no-repeat;
}

.cat-hero-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cat-hero-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--lead);
  color: var(--accent);
  flex-shrink: 0;
}

.cat-hero-ico svg,
.cat-hero-ico .cat-ico {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-hero-copy {
  min-width: 0;
  flex: 1;
}

.cat-hero-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.cat-hero-lead {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 40rem;
}

.cat-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 4px;
}

.cat-page-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.cat-page-head .cat-box-ico {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.cat-page-head .cat-box-ico svg {
  width: 22px;
  height: 22px;
}

.cat-box-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lead);
  color: var(--accent);
  flex-shrink: 0;
}

.cat-box-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hot-cats {
  background: var(--surface-2);
  border-radius: 28px;
  padding: 22px;
}

.hot-cats-head {
  margin-bottom: 16px;
}

.hot-cats-head .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hot-cat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hot-cat:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
}

.hot-cat-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hot-cat-copy {
  min-width: 0;
  flex: 1;
}

.hot-cat-code {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hot-cat-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lead);
  color: var(--accent);
  flex-shrink: 0;
}

.hot-cat-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hot-cat-rank {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.hot-cat.is-hot .hot-cat-rank {
  color: #c2410c;
}

.hot-cat.is-hot .hot-cat-ico {
  background: #fff7ed;
  color: #ea580c;
}

.hot-cat h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-cat-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hot-cat-lead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
}

.hot-cat-lead img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hot-cat-lead span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-cat-lead .px {
  margin-left: auto;
  flex-shrink: 0;
}

.hot-cat-lead.is-empty {
  font-weight: 600;
  color: var(--muted);
}

.cluster-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: inherit;
}

.type-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.type-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.type-switch a svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.type-switch a:hover,
.type-switch a.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.cluster-banner:hover {
  color: inherit;
}

.cluster-banner-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--lead);
  color: var(--accent);
  flex-shrink: 0;
}

.cluster-banner-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cluster-banner-copy {
  min-width: 0;
  flex: 1;
}

.cluster-banner-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cluster-banner .cat-view-all {
  flex-shrink: 0;
}

.modal-content {
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkout-modal .modal-dialog {
  max-width: 760px;
}

.checkout-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-scrape {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checkout-avatar,
.checkout-scrape img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
  object-fit: cover;
}

.checkout-avatar {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}

.checkout-scrape .form-control {
  min-height: 44px;
}

.checkout-ranks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.checkout-ranks li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
}

.checkout-extras label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.checkout-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkout-extras-label {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.checkout-extra {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
}

.checkout-extra-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.checkout-extra-ui {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 7px;
  border: 1.5px solid var(--line);
  background: #fff;
}

.checkout-extra-ui svg {
  display: none;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-extra-input:checked + .checkout-extra-ui {
  background: var(--ink);
  border-color: var(--ink);
}

.checkout-extra-input:checked + .checkout-extra-ui svg {
  display: block;
}

.checkout-extra-input:focus-visible + .checkout-extra-ui {
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.14);
  border-color: #9fd4c8;
}

.checkout-extra-copy {
  min-width: 0;
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}

.checkout-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.checkout-done {
  display: none;
  text-align: center;
  padding: 12px 8px 4px;
}

.checkout-modal.is-done .js-co-form,
.checkout-modal.is-done .js-co-paybar {
  display: none;
}

.checkout-modal.is-done .checkout-done {
  display: block;
}

.checkout-page {
  max-width: 920px;
  margin: 0 auto;
}

.checkout-shell {
  position: relative;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px 28px 22px;
}

.checkout-page .form-control,
.checkout-page .form-select {
  min-height: 48px;
  border-radius: 14px;
}

.checkout-page #co-desc {
  min-height: 118px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  line-height: 1.45;
}

.checkout-lookup {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  text-align: center;
  pointer-events: none;
}

.checkout-page.is-looking-up .checkout-lookup {
  display: flex !important;
  pointer-events: auto;
}

.checkout-lookup-spin {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: checkout-spin 0.7s linear infinite;
}

.checkout-lookup-copy {
  max-width: 22rem;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.checkout-page.is-looking-up .js-co-pay {
  pointer-events: none;
  opacity: 0.55;
}

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

.checkout-scrape > .flex-grow-1 {
  min-width: 0;
}

.checkout-logo {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.checkout-logo input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.checkout-logo .js-co-img,
.checkout-logo .checkout-avatar {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
}

.checkout-logo-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 6px 6px 8px;
  background: linear-gradient(180deg, transparent, rgba(11, 13, 18, 0.72));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.checkout-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  align-items: start;
}

.checkout-meta > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.checkout-meta .js-co-region-wrap,
.checkout-meta .checkout-email {
  min-width: 0;
}

.checkout-meta .cat-picker,
.checkout-meta .cat-picker-btn {
  width: 100%;
}

.checkout-meta .cat-picker-menu {
  z-index: 60;
}

.checkout-scrape .cat-picker,
.checkout-scrape .cat-picker-btn {
  width: 100%;
}

.checkout-scrape .cat-picker-menu {
  z-index: 50;
}

.checkout-email .form-control {
  min-height: 48px;
}

.checkout-page .form-control.is-invalid,
.checkout-page .form-control.is-valid {
  padding-right: 12px;
  background-image: none;
}

.checkout-page .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.checkout-tos {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 18px;
}

.checkout-tos-check {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.checkout-tos-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.checkout-tos-ui {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
}

.checkout-tos-ui svg {
  display: none;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-tos-input:focus-visible + .checkout-tos-ui {
  box-shadow: 0 0 0 4px rgba(23, 141, 114, 0.14);
  border-color: #9fd4c8;
}

.checkout-tos-input:checked + .checkout-tos-ui {
  background: var(--ink);
  border-color: var(--ink);
}

.checkout-tos-input:checked + .checkout-tos-ui svg {
  display: block;
}

.checkout-tos-copy {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.checkout-tos-copy a,
.checkout-extras a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-tos-copy a:hover,
.checkout-extras a:hover {
  color: var(--ink);
}

.checkout-tos.is-invalid {
  border-color: #e11d48;
  background: #fff1f2;
}

.checkout-paybar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-page.is-done .js-co-form,
.checkout-page.is-done .js-co-paybar {
  display: none;
}

.checkout-page.is-done .checkout-done {
  display: block;
  padding: 28px 8px;
}

.ranked-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #e7f6f2 0%, #fff 55%);
  border: 1px solid #c5e8df;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.ranked-banner.is-hidden {
  display: none;
}

.ranked-banner .h5 {
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.ranked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tape-steps li.is-new {
  background: rgba(23, 141, 114, 0.08);
  border-radius: 12px;
}

.giveback-chip.is-flash {
  outline: 2px solid rgba(23, 141, 114, 0.35);
  outline-offset: 2px;
}

.accordion-item {
  border: 0;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button:not(.collapsed) {
  background: var(--lead);
  color: var(--accent);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.table > :not(caption) > * > * {
  background: transparent;
  border-color: var(--line);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background: transparent;
  padding: 28px 0 0;
  text-align: center;
}

.site-footer::after {
  content: "MOMENTSHIFT";
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 8px 0 0;
  font-weight: 800;
  font-size: min(13vw, 240px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(11, 13, 18, 0.07);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.window-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.window-switch a,
.window-switch button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.window-switch a svg,
.window-switch button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.window-switch a.is-active,
.window-switch a:hover,
.window-switch button.is-active,
.window-switch button:hover {
  color: #fff;
  background: var(--ink);
}

.day-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.day-nav .board-title {
  margin: 0;
}

.day-nav-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.day-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.day-nav-btn:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.day-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.day-strip-wrap {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 20px;
}

.day-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.day-strip-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
}

.day-strip-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.day-strip-btn:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.day-strip-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.day-chip {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.day-chip .caption {
  display: block;
  margin: 0 0 2px;
}

.day-chip strong,
.day-chip .px {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-chip strong {
  font-size: 14px;
  letter-spacing: -0.03em;
}

.day-chip .px {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.day-chip:hover,
.day-chip.is-active {
  border-color: var(--ink);
}

.day-chip.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.day-chip.is-active .caption,
.day-chip.is-active .px {
  color: rgba(255, 255, 255, 0.7);
}

.archive-row {
  grid-template-columns: 58px 32px minmax(0, 1fr) auto;
}

.today-hero .lead-copy {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.today-hero .board-title {
  font-size: clamp(32px, 4.6vw, 48px);
}

.activity-strip {
  margin-top: 36px;
  margin-bottom: 28px;
  padding: 20px 0 4px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--line);
}

.activity-strip .page-kicker {
  margin-bottom: 12px;
}

.activity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
  padding: 0;
}

.activity-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.activity-chip:hover {
  border-color: #d5d8e2;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
  color: var(--ink);
}

.activity-chip img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.activity-chip span {
  color: var(--faint);
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 28px 0 8px;
}

.pager-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pager-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.pager-btn.is-current {
  background: var(--accent);
  color: #fff;
}

.pager-btn:hover:not(:disabled):not(.is-current) {
  background: var(--lead);
  color: var(--accent);
}

.pager-btn:disabled,
.pager-btn[aria-disabled="true"] {
  opacity: 0.35;
  pointer-events: none;
}

.pager-meta {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 36px;
}

.foot-lead {
  color: var(--muted);
  font-size: 15px;
  margin: 0 auto 18px;
  max-width: 42rem;
}

.foot-lead b {
  color: var(--text);
}

.foot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 32px;
  max-width: 920px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.foot-stat {
  min-width: 0;
  padding: 22px 20px 24px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-right: 1px solid var(--line);
}

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

.foot-stat .live-dot {
  display: none;
}

.foot-stat .caption {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.foot-stat .stat-value {
  display: block;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin: 0;
}

.foot-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 20px 0 12px;
  border-top: 1px solid rgba(11, 13, 18, 0.08);
}

.foot-give {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 760px;
  padding: 12px 18px 12px 12px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.foot-credit {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  min-width: 0;
  text-align: left;
}

.foot-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  width: 100%;
  font-size: 13px;
  margin: 0;
  min-width: 0;
}

.foot-links a {
  white-space: nowrap;
}

.site-footer > .container-xl {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--text);
  font-weight: 600;
}

.foot-lead a,
.foot-credit a,
.foot-links a {
  color: var(--accent);
}

.foot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 8px 14px 8px 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff 0%, var(--lead) 100%);
  border: 1px solid rgba(23, 141, 114, 0.14);
  border-radius: 18px;
  color: var(--muted);
  max-width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.foot-bar > .foot-badge {
  box-shadow: var(--shadow);
}

a.foot-badge:hover {
  color: var(--text);
  border-color: rgba(23, 141, 114, 0.28);
  box-shadow: 0 10px 28px rgba(23, 141, 114, 0.14);
  transform: translateY(-1px);
}

.foot-badge-score {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.foot-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
  line-height: 1.25;
}

.foot-badge-copy strong {
  font-size: 13px;
  font-weight: 750;
  color: var(--text);
  letter-spacing: -0.02em;
}

.foot-badge-copy span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.give-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.give-hero-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px 22px;
  text-align: left;
}

.give-hero-panel .stat-value {
  font-size: 28px;
  margin: 0 0 4px;
}

.site-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.site-stat-week {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.site-stat-defs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-stat-defs li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.site-stat-defs b {
  color: var(--text);
}

.give-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.give-stat {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
}

.give-stat .stat-value {
  font-size: 28px;
  margin: 6px 0 4px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.split-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  text-align: center;
}

.split-card.is-accent {
  background: var(--lead);
}

.split-card .stat-value {
  font-size: 22px;
}

.org-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.org-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--lead);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.org-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rule-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
}

.rule-chip svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--accent);
}

.rule-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lead);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.rule-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}

.rule-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  color: var(--accent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--surface-2);
  color: var(--muted);
}

.status-pill.is-pending {
  background: #fff7ed;
  color: #c2410c;
}

.status-pill.is-live {
  background: #dcfce7;
  color: #15803d;
}

.ledger {
  overflow: hidden;
}

.ledger .table {
  margin: 0;
}

.ledger th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  border-bottom-color: var(--line);
}

.ledger td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-no {
  color: var(--muted);
}

.about-page .about-hero {
  max-width: 40rem;
}

.about-page .about-hero .lead-copy {
  max-width: 36rem;
}

.about-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero .board-title {
  max-width: 18ch;
}

.about-sides {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.about-side {
  min-width: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 28px 26px;
  text-align: left;
}

.about-side-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 92px;
}

.about-side-score {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-wins {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-win {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 24px 22px;
  text-align: left;
}

.about-win .h5 {
  letter-spacing: -0.03em;
}

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

.blog-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 30px;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
  color: inherit;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.blog-card p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 62ch;
}

.blog-card-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 14px;
}

.blog-prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.blog-prose p {
  margin: 0 0 1.15em;
  max-width: 62ch;
}

.blog-prose a {
  color: var(--accent);
  font-weight: 600;
}

.blog-prose b,
.blog-prose strong {
  font-weight: 700;
  color: var(--ink);
}

.blog-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.blog-adjacent-link {
  display: block;
  min-width: 0;
  padding: 18px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-adjacent-link:hover {
  color: inherit;
}

.blog-adjacent-link.is-next {
  text-align: right;
}

.blog-adjacent-link strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.blog-more .blog-card h2 {
  font-size: 20px;
}

.blog-post-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.blog-share {
  margin: 28px 0 8px;
  padding: 16px 18px;
  background: var(--surface-2);
  border-radius: 20px;
}

.blog-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

a.blog-share-btn:hover,
button.blog-share-btn:hover {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.blog-share-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-mail {
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.contact-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-bullets li {
  margin-bottom: 6px;
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 13px;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 48px;
  border-radius: 14px;
  border-color: var(--line);
}

.contact-form textarea.form-control {
  min-height: 140px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form .cat-picker {
  width: 100%;
}

.contact-form .cat-picker-menu {
  z-index: 50;
}

.contact-form .cat-picker:has(select.is-invalid) .cat-picker-btn {
  border-color: #dc3545;
}

.contact-aside {
  background: var(--surface-2);
  box-shadow: none;
}

.contact-aside address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.45;
}

.pay-page {
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(23, 141, 114, 0.1), transparent 60%),
    var(--bg);
}

.pay-page-fail {
  background:
    radial-gradient(ellipse 80% 48% at 50% -8%, rgba(255, 243, 233, 0.95), transparent 62%),
    var(--bg);
}

.pay-result .board-title {
  font-size: clamp(28px, 4vw, 40px);
}

.pay-result-stat {
  display: inline-block;
  text-align: center;
  padding: 18px 28px;
  border-radius: 20px;
  background: var(--surface-2);
}

.pay-result-note {
  background: var(--surface-2);
  box-shadow: none;
  text-align: left;
}

.pay-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 36px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.pay-success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
}

.pay-success-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pay-success .board-title {
  font-size: clamp(30px, 4.2vw, 44px);
  margin: 0;
}

.pay-success-lead {
  max-width: 34em;
  margin: 0 auto 28px;
}

.pay-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.pay-success-amount,
.pay-success-give {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.pay-success-amount .stat-value {
  margin: 4px 0 8px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.pay-success-give {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pay-success-give .foot-badge-score {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.pay-success-give strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pay-success-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 10px;
}

.pay-success-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.pay-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.pay-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pay-success-actions .btn {
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
}

.pay-success-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 575.98px) {
  .pay-success {
    padding: 28px 18px 24px;
    border-radius: 22px;
  }

  .pay-success-grid {
    grid-template-columns: 1fr;
  }

  .pay-success-actions .btn {
    width: 100%;
  }
}

.pay-fail {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 36px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
}

.pay-fail-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--lead);
  color: var(--ink);
  border: 1px solid rgba(22, 64, 75, 0.08);
  display: grid;
  place-items: center;
}

.pay-fail-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pay-fail .board-title {
  font-size: clamp(30px, 4.2vw, 44px);
  margin: 0;
}

.pay-fail-lead {
  max-width: 34em;
  margin: 0 auto 28px;
}

.pay-fail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.pay-fail-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.pay-fail-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

.pay-fail-reasons {
  margin-bottom: 20px;
  text-align: left;
}

.pay-fail-reasons-kicker {
  text-align: center;
  margin-bottom: 12px;
}

.pay-fail-reasons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pay-fail-reasons ul:has(> :only-child) {
  grid-template-columns: 1fr;
}

.pay-fail-reasons li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
}

.pay-fail-reasons strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
}

.pay-fail-reasons li div span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.pay-fail-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--lead);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.pay-fail-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pay-fail-next {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--lead);
  text-align: left;
}

.pay-fail-next p:last-child {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pay-fail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.pay-fail-actions .btn {
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
}

@media (max-width: 767.98px) {
  .pay-fail-reasons ul {
    grid-template-columns: 1fr;
  }

  .pay-fail-reasons li {
    flex-direction: row;
    align-items: flex-start;
  }

  .foot-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .foot-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
  }

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

@media (max-width: 575.98px) {
  .pay-fail {
    padding: 28px 18px 24px;
    border-radius: 22px;
  }

  .pay-fail-grid {
    grid-template-columns: 1fr;
  }

  .pay-fail-actions .btn {
    width: 100%;
  }
}

.listing-hero {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.listing-hero .listing-logo {
  flex-shrink: 0;
}

.listing-hero-copy {
  min-width: 0;
}

.listing-hero-copy .board-title a {
  color: inherit;
  text-decoration: none;
}

.listing-hero-copy .board-title a:hover {
  color: var(--accent);
}

.listing-hero-copy .lead-copy {
  margin-top: 8px;
  max-width: 40rem;
}

.from-host {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--faint);
  font-weight: 600;
}

.giveback-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  width: 100%;
  max-width: none;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.giveback-chip .foot-badge-score {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--lead);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.giveback-chip-copy,
.giveback-chip > span:not(.foot-badge-score) {
  flex: 1 1 12rem;
  min-width: 0;
  text-align: left;
}

.giveback-chip-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.giveback-chip-sum {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.giveback-chip-arrow {
  color: var(--faint);
  font-weight: 500;
}

.giveback-chip-to {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.giveback-chip-to a {
  color: var(--accent);
  font-weight: 700;
}

.giveback-chip .mono,
.giveback-chip b {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  white-space: nowrap;
}

.giveback-chip-rank {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  text-align: right;
}

.giveback-chip-rank-value {
  margin-top: 2px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  white-space: nowrap;
}

.bid-tape {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
}

.tape-run {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 4px 0 18px;
}

.tape-run .tape-arrow {
  color: var(--faint);
  font-weight: 500;
}

.tape-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.tape-steps li {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.tape-steps .tape-total {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.tape-steps .tape-inc {
  color: var(--muted);
  font-weight: 600;
}

.tape-steps .tape-when {
  color: var(--faint);
  font-size: 12px;
  text-align: right;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: inherit;
}

.related-card:hover {
  color: inherit;
}

.related-card img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

.related-card strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.related-card .px {
  margin-left: auto;
  flex-shrink: 0;
}

.watch-panel {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
}

.watch-listing {
  display: flex;
  gap: 14px;
  align-items: center;
}

.watch-listing img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
}

.watch-listing .board-title {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0;
}

.watch-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.watch-row .form-control {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.watch-row .btn {
  flex: 0 0 auto;
  border-radius: 14px;
}

.watch-row .invalid-feedback {
  display: none !important;
}

.watch-row .form-control.is-invalid,
.watch-row .form-control.is-valid {
  padding-right: 12px;
  background-image: none;
}

.watch-row .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.js-watch-hint {
  min-height: 0;
  margin-top: 8px;
}

.js-watch-hint.is-error,
.js-watch-hint .invalid-feedback {
  color: #dc3545;
  font-weight: 600;
}

.js-watch-hint .invalid-feedback {
  display: block;
  margin: 0;
}

.badge-preview {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 14px;
  padding: 14px 16px;
  line-height: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.badge-preview img {
  display: block;
  height: 32px;
  width: auto;
}

.badge-snip {
  margin: 0 0 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  overflow-x: auto;
  color: var(--text);
}

.js-watch-form.is-sent .watch-fields {
  display: none;
}

.js-watch-form .watch-sent {
  display: none;
}

.js-watch-form.is-sent .watch-sent {
  display: block;
}

@media (max-width: 1199.98px) {
  .bid-dock-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "fields"
      "hint";
    row-gap: 16px;
  }

  .bid-dock-copy .caption {
    white-space: normal;
  }

}

@media (max-width: 991.98px) {
  .about-split,
  .about-sides,
  .about-wins,
  .give-hero,
  .give-stat-row,
  .site-stat-grid,
  .site-stat-week,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .about-side-mark {
    flex-direction: row;
    min-width: 0;
    padding: 4px 0 8px;
  }

  .site-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid-8 {
    grid-template-columns: 1fr 1fr;
  }

  .cluster-banner {
    flex-wrap: wrap;
  }

  .geo-open-head .geo-search,
  .geo-states-head .geo-search {
    max-width: none;
  }

  .geo-open-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-give {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .foot-credit {
    text-align: center;
  }

  .today-card {
    position: static;
  }

  .rank-card {
    grid-template-columns: 34px 40px minmax(0, 1fr) auto;
    column-gap: 8px;
    padding: 14px 14px 12px;
  }

  .rank-card:has(.rank-type) {
    grid-template-columns: 34px 22px 40px minmax(0, 1fr) auto;
  }

  .rank-list.is-click-list .rank-card {
    grid-template-columns: 34px 40px minmax(0, 1fr) auto;
  }

  .rank-logo {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .rank-side {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
  }

  .rank-claim {
    width: 100%;
  }

  .rank-card > .rank-price {
    font-size: 14px;
  }

  .rank-main p {
    -webkit-line-clamp: 2;
  }

  .board-title {
    font-size: 34px;
  }

  .listing-hero {
    gap: 16px;
  }

  .cat-hero-row {
    flex-wrap: wrap;
  }

  .cat-hero-aside {
    width: 100%;
    align-items: flex-start;
    padding-top: 4px;
  }

  .bid-dock-fields,
  .bid-dock-fields.is-stack-url {
    grid-template-columns: 1fr;
  }

  .bid-dock-fields.is-stack-url .bid-field:first-child {
    grid-column: auto;
  }

  .day-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .day-nav > div {
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .day-nav-btn {
    order: initial;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .day-nav .board-title {
    font-size: clamp(18px, 4.8vw, 24px);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .day-strip-wrap {
    column-gap: 8px;
  }

  .day-chip {
    padding: 10px;
  }

  .giveback-chip {
    align-items: flex-start;
  }

  .giveback-chip-rank {
    flex: 1 1 100%;
    margin-left: 0;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .tape-steps li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .tape-steps .tape-when {
    text-align: left;
  }

  .watch-row {
    flex-direction: column;
  }

  .checkout-scrape {
    flex-wrap: wrap;
  }

  .checkout-meta,
  .checkout-extras {
    grid-template-columns: 1fr;
  }

  .checkout-meta .js-co-region-wrap,
  .checkout-meta .checkout-email {
    grid-column: 1;
  }

  .listing-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
}

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

  .geo-open-grid {
    grid-template-columns: 1fr;
  }

  .blog-adjacent {
    grid-template-columns: 1fr;
  }

  .blog-adjacent-link.is-next {
    text-align: left;
  }

  .day-strip-wrap {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    column-gap: 8px;
  }

  .day-strip-btn {
    width: 36px;
    height: 36px;
  }

  .day-strip {
    overflow-x: auto;
    grid-auto-columns: minmax(96px, 1fr);
    scrollbar-width: none;
  }

  .day-strip::-webkit-scrollbar {
    display: none;
  }
}

.error-page {
  display: flex;
  align-items: center;
}

.error-card {
  max-width: 640px;
  margin: 0 auto;
}

.error-code {
  display: inline-block;
  margin: 0 0 8px;
  font-size: clamp(44px, 10vw, 84px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
}

.error-card .board-title {
  font-size: clamp(28px, 4vw, 40px);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.error-actions .btn {
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  box-sizing: border-box;
}

.error-footer {
  padding-bottom: 8px;
}

.error-footer .foot-links {
  justify-content: center;
}

.ms-toasts {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(380px, calc(100vw - 32px));
  pointer-events: none;
}

.ms-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 12px 14px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translate3d(16px, 0, 0);
  opacity: 0;
  animation: ms-toast-in 0.28s ease forwards;
}

.ms-toast.is-out {
  animation: ms-toast-out 0.2s ease forwards;
}

.ms-toast-success {
  box-shadow: var(--shadow), inset 3px 0 0 var(--highlight);
}

.ms-toast-error {
  box-shadow: var(--shadow), inset 3px 0 0 var(--ink);
}

.ms-toast-info {
  box-shadow: var(--shadow), inset 3px 0 0 var(--accent);
}

.ms-toast-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.ms-toast-mark svg {
  width: 14px;
  height: 14px;
}

.ms-toast-success .ms-toast-mark {
  background: var(--ink);
  color: var(--highlight);
}

.ms-toast-error .ms-toast-mark {
  background: var(--surface-2);
  color: var(--ink);
}

.ms-toast-info .ms-toast-mark {
  background: var(--accent-soft);
  color: var(--accent);
}

.ms-toast-copy {
  min-width: 0;
  flex: 1;
  text-align: left;
  padding-top: 2px;
}

.ms-toast-kicker {
  margin: 0 0 2px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.ms-toast-error .ms-toast-kicker {
  color: var(--ink);
}

.ms-toast-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.ms-toast-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--faint);
  display: grid;
  place-items: center;
  padding: 0;
}

.ms-toast-close svg {
  width: 14px;
  height: 14px;
}

.ms-toast-close:hover {
  background: var(--surface-2);
  color: var(--ink);
}

@keyframes ms-toast-in {
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes ms-toast-out {
  to {
    transform: translate3d(12px, 0, 0);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .ms-toasts {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}
