:root {
  --topbar-height: 78px;
  --surface-ratio: 0.84;
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --ink: #1b1c18;
  --muted: #706f68;
  --soft: #9d9b91;
  --line: #d8d4ca;
  --accent: #d7ff3f;
  --hot: #e95d2e;
  --shadow: rgba(27, 28, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

body::selection {
  background: var(--accent);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-height);
  padding: 16px 0 8px;
  background: transparent;
}

.topbar-inner {
  position: relative;
  width: min(1050px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 7px 14px 7px 18px;
  border: 1px solid rgba(255, 253, 248, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 30px rgba(27, 28, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.065em;
  text-decoration: none;
}

.brand > span:last-child {
  color: var(--hot);
}

.brand-mark {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--accent);
}

.topbar-meta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-meta strong {
  color: var(--ink);
  font-size: 1.08em;
  font-weight: 850;
}

.visitor-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.live-pulse,
.dock-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.topbar-meta .live-pulse {
  color: var(--muted);
}

.topbar-meta .visitor-stat strong {
  color: var(--ink);
}

.live-pulse i,
.dock-kicker i,
.source-note i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 4px rgba(233, 93, 46, 0.14);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

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

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.topbar-cta span {
  font-size: 16px;
  font-weight: 400;
  line-height: 0.7;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 4px 4px 0 var(--accent);
}

.toast-region {
  position: fixed;
  top: calc(var(--topbar-height) + 12px);
  right: 24px;
  z-index: 100;
  width: min(380px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.toast-region[hidden] {
  display: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 13px 13px 16px;
  border: 1px solid #e9a287;
  border-radius: 14px;
  background: #fff0e9;
  color: #9d3211;
  box-shadow: 0 16px 40px rgba(27, 28, 24, 0.16);
  font-size: 13px;
  line-height: 1.35;
  pointer-events: auto;
  animation: toast-in 180ms ease-out both;
}

.toast[data-tone="success"] {
  border-color: #9abb36;
  background: #eff8c9;
  color: #31420f;
}

.toast[data-tone="pending"] {
  border-color: #d3b65b;
  background: #fff7d9;
  color: #6c5510;
}

.toast > span {
  flex: 1;
}

.toast-dismiss {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: -3px -3px 0 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  opacity: 0.65;
}

.toast-dismiss:hover,
.toast-dismiss:focus-visible {
  background: rgba(27, 28, 24, 0.08);
  opacity: 1;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-shell {
  width: 100%;
  min-height: calc(100dvh - var(--topbar-height));
  margin: 0;
  padding: 0 0 88px;
}

.page-hero,
.hero-column,
.content-column {
  min-width: 0;
}

.page-hero {
  width: 100%;
  height: clamp(560px, calc((100dvh - var(--topbar-height)) * var(--surface-ratio)), 900px);
}

.hero-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eyebrow,
.form-stack label,
.source-fieldset legend,
.section-note,
.board-current-label,
.board-current-stat span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-intro {
  width: min(1500px, calc(100% - 96px));
  max-width: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 44px 0 28px;
}

.home-intro h1 {
  max-width: 980px;
  margin: 17px 0 18px;
  font-size: clamp(55px, 7vw, 106px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.home-intro h1 em {
  color: var(--hot);
  font-style: normal;
}

.intro-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
}

.takeover-stage {
  width: 100%;
  min-height: 0;
  flex: 1;
  margin-top: 0;
}

#takeoverFrame {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
  background: transparent;
}

.board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 48px;
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

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

.section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1;
}

.board-heading-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.traffic-note {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.traffic-note strong {
  color: var(--ink);
  font-weight: 850;
}

.board-current {
  margin-bottom: 14px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.board-current-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: end;
  gap: 20px;
}

.board-current-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  min-height: 88px;
}

.board-current-empty strong {
  display: block;
  max-width: 660px;
  margin-top: 5px;
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.board-current-empty p {
  max-width: 530px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.board-empty-price {
  min-width: 100px;
  text-align: right;
}

.board-empty-price strong {
  max-width: none;
  margin-top: 4px;
  color: var(--hot);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 24px;
  letter-spacing: -0.06em;
}

.board-current-owner strong {
  display: block;
  max-width: 100%;
  margin-top: 3px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-current-clicks,
.history-clicks {
  display: block;
  margin-top: 4px;
  color: var(--hot);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-current-stat {
  text-align: right;
}

.board-current-stat strong {
  display: block;
  margin-top: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.board-current-link {
  color: var(--hot);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.board-current-link:hover,
.board-current-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.history-list {
  border-top: 1px solid var(--ink);
}

.history-empty {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 170px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.history-empty-index {
  align-self: start;
  padding-top: 2px;
  color: var(--hot);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.history-empty-kicker {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.history-empty-copy h3 {
  margin: 7px 0 6px;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.history-empty-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.history-empty-action {
  align-self: end;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--hot);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.history-empty-action span {
  margin-left: 5px;
  color: var(--hot);
  font-size: 15px;
}

.history-empty-action:hover,
.history-empty-action:focus-visible {
  color: var(--hot);
}

.history-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 140ms ease, padding-left 140ms ease;
}

.history-row:hover {
  padding-left: 8px;
  background: rgba(215, 255, 63, 0.26);
}

.history-row:focus-visible {
  outline: 2px solid var(--hot);
  outline-offset: -2px;
}

.history-row.is-current {
  margin: 0 -8px;
  padding-left: 8px;
  background: var(--accent);
  border-bottom-color: var(--ink);
}

.history-rank {
  color: var(--hot);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.history-row.is-current .history-rank {
  color: var(--ink);
}

.history-name {
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-name-link {
  color: inherit;
  text-decoration: none;
}

.history-name-link:hover,
.history-name-link:focus-visible {
  color: var(--hot);
}

.history-meta,
.history-date {
  color: var(--muted);
  font-size: 12px;
}

.history-price {
  min-width: 68px;
  font-size: 17px;
  font-weight: 800;
  text-align: right;
}

.claim-rank-divider {
  display: block;
  margin: 12px auto;
  padding: 5px 12px;
  border: 1px solid var(--hot);
  border-radius: 999px;
  background: var(--hot);
  color: var(--paper);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.claim-rank-divider:hover,
.claim-rank-divider:focus-visible {
  background: var(--ink);
  color: var(--accent);
}

.claim-rank-divider:active {
  transform: translateY(1px);
}

.claim-dock {
  position: static;
  width: 100%;
  padding: 22px 20px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--accent);
}

.dock-topline,
.claim-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dock-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dock-live {
  padding: 4px 7px;
  background: var(--accent);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.claim-price-row {
  align-items: flex-end;
  margin-top: 17px;
}

.claim-price-row h2 {
  margin: 5px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.claim-price-row h2 strong {
  color: var(--hot);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stepper > button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.stepper > button:hover,
.stepper > button:focus-visible {
  border-color: var(--ink);
  background: var(--accent);
}

.stepper-input {
  display: flex;
  align-items: center;
  width: 68px;
  height: 28px;
  border-bottom: 1px solid var(--ink);
}

.stepper-input span {
  font-size: 13px;
}

.stepper-input input {
  width: 100%;
  padding: 0 2px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.bid-explainer {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.source-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.source-fieldset legend {
  padding: 0;
  margin-bottom: 9px;
}

.dropzone {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px dashed #a9a59a;
  background: #faf8f2;
  cursor: pointer;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.dropzone:hover,
.dropzone.drag {
  border-color: var(--ink);
  background: var(--accent);
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.upload-mark {
  display: block;
  margin-bottom: 2px;
  color: var(--hot);
  font-size: 25px;
  line-height: 1;
}

.drop-title {
  font-size: 14px;
  font-weight: 800;
}

.drop-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.source-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.source-note i {
  width: 5px;
  height: 5px;
  flex: none;
  background: var(--hot);
  box-shadow: none;
}

.source-divider {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0 10px;
  color: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.source-divider::before,
.source-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.link-import label {
  display: block;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-import-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 7px;
}

.link-import-row input {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #faf8f2;
  color: var(--ink);
  font-size: 13px;
}

.link-import-row input:focus {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
}

.link-import-row button {
  padding: 0 12px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.link-import-row button:hover,
.link-import-row button:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

.link-import-row button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.import-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.form-stack {
  display: grid;
  gap: 11px;
  margin-top: 13px;
}

.form-stack label {
  display: block;
}

.form-stack label span {
  color: var(--soft);
  font-weight: 600;
}

.form-stack input {
  width: 100%;
  margin-top: 7px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #faf8f2;
  color: var(--ink);
  font-size: 14px;
}

.form-stack input:focus,
.stepper-input:focus-within {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
}

.claim-button {
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.claim-button:not(:disabled):hover,
.claim-button:not(:disabled):focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--hot);
}

.claim-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.form-note {
  min-height: 17px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.form-note[data-tone="success"] {
  color: #4c7414;
  font-weight: 700;
}

.form-note[data-tone="pending"] {
  color: #856d21;
}

.form-note[data-tone="error"] {
  color: var(--hot);
}

footer {
  padding: 32px 24px 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  text-align: center;
}

footer span {
  color: var(--hot);
}

.hidden,
[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .home-intro,
  .board-layout {
    width: min(100%, calc(100% - 48px));
  }

  .board-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
  }

  .topbar-meta {
    gap: 14px;
    padding: 0;
    font-size: 10px;
  }

  .topbar-inner {
    width: min(100% - 32px, 1050px);
    gap: 18px;
  }

  nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 78px;
  }

  .topbar {
    height: var(--topbar-height);
    padding: 12px 0 6px;
  }

  .topbar-inner {
    width: min(100% - 32px, 700px);
    padding: 7px 12px 7px 16px;
  }

  nav {
    gap: 15px;
  }

  .site-shell {
    width: 100%;
    min-height: auto;
    padding: 0 0 66px;
  }

  .home-intro {
    width: 100%;
    padding: 36px 16px 24px;
  }

  .board-layout {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 32px;
    margin: 0 auto;
    padding: 32px 16px 0;
  }

  .claim-dock {
    order: -1;
    width: 100%;
    max-height: none;
    margin-bottom: 0;
  }

}

@media (max-width: 620px) {
  :root {
    --topbar-height: 70px;
  }

  .topbar {
    height: var(--topbar-height);
    padding: 9px 0;
  }

  .topbar-inner {
    width: calc(100% - 28px);
    gap: 10px;
    padding: 8px 10px 8px 14px;
  }

  .brand {
    gap: 6px;
    font-size: 13.5px;
  }

  .brand-mark {
    width: 12px;
    height: 12px;
  }

  .topbar-meta {
    gap: 8px;
    padding: 0;
    font-size: 8px;
  }

  .topbar-meta .live-pulse {
    gap: 5px;
  }

  .topbar-meta .live-pulse i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 2px rgba(233, 93, 46, 0.14);
  }

  .topbar-actions nav {
    display: none;
  }

  nav a {
    font-size: 12px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .topbar-cta {
    gap: 5px;
    padding: 7px 8px 7px 10px;
    font-size: 9px;
  }

  .topbar-cta span {
    font-size: 15px;
  }

  .toast-region {
    top: calc(var(--topbar-height) + 10px);
    right: 16px;
    width: min(360px, calc(100vw - 32px));
  }

  .site-shell {
    padding: 0 0 52px;
  }

  .claim-dock {
    padding: 18px 16px;
    box-shadow: 6px 6px 0 var(--accent);
  }

  .claim-price-row {
    display: block;
  }

  .claim-price-row h2 {
    font-size: 25px;
  }

  .stepper {
    justify-content: flex-end;
    margin-top: 15px;
  }

  .home-intro h1 {
    margin-top: 14px;
    font-size: clamp(51px, 16vw, 78px);
  }

  .intro-copy {
    font-size: 16px;
  }

  .link-import-row {
    grid-template-columns: 1fr;
  }

  .link-import-row button {
    min-height: 40px;
  }

  .section-heading {
    align-items: flex-start;
    display: block;
  }

  .board-heading-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
  }

  .board-current-details {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .board-current-empty {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .board-current-details .board-current-owner {
    grid-column: 1;
    grid-row: 1;
  }

  .board-current-details .board-current-stat {
    text-align: left;
  }

  .board-current-details .board-current-stat:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .board-current-details .board-current-stat:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .board-current-details .board-current-link {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .history-empty {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 26px 0 28px;
  }

  .history-empty-action {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }

  .history-row {
    grid-template-columns: 33px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .history-date {
    display: none;
  }

  .history-price {
    min-width: 48px;
    font-size: 15px;
  }

  .claim-rank-divider {
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

}
