:root {

  --paper: #fffdfa;

  --line: rgba(23, 24, 23, 0.12);
  --line-dark: rgba(16, 19, 19, 0.14);

  --muted-dark: #5f625d;
  --mint: #7de2c4;

  --cream: #fff9ec;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --radius-card: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 90ms;
  animation-timing-function: var(--ease-out);
}
html[data-scene-transition]::view-transition-old(root),
html[data-scene-transition]::view-transition-new(root) {
  animation-duration: 620ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.23, 1, .32, 1);
  mix-blend-mode: normal;
}
html[data-scene-transition="enter"]::view-transition-old(root) {
  z-index: 2;
  transform-origin: var(--scene-focus-origin, 50% 50%);
  animation-name: scene-enter-world;
}
html[data-scene-transition="enter"]::view-transition-new(root) {
  z-index: 1;
  animation-name: scene-hold-destination;
}
html[data-scene-transition="exit"]::view-transition-old(root) {
  z-index: 2;
  animation-name: scene-release-destination;
}
html[data-scene-transition="exit"]::view-transition-new(root) {
  z-index: 1;
  transform-origin: var(--scene-focus-origin, 50% 50%);
  animation-name: scene-exit-world;
}
@keyframes scene-enter-world {
  0% { opacity: 1; transform: none; }
  44% { opacity: .92; }
  100% { opacity: 0; transform: var(--scene-focus-transform, scale(1.08)); }
}
@keyframes scene-hold-destination {
  from, to { opacity: 1; transform: none; }
}
@keyframes scene-release-destination {
  0% { opacity: 1; }
  44% { opacity: .92; }
  100% { opacity: 0; }
}
@keyframes scene-exit-world {
  from { opacity: 1; transform: var(--scene-focus-transform, scale(1.08)); }
  to { opacity: 1; transform: none; }
}
body {
  margin: 0;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.landscape-gate { display: none; }
@media (orientation: portrait) {
  .landscape-gate { position: fixed; inset: 0; z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; overflow-y: auto; padding: max(28px, env(safe-area-inset-top, 0px)) max(24px, env(safe-area-inset-right, 0px)) max(28px, env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-left, 0px)); color: #fffdfa; background: radial-gradient(circle at 50% 32%, rgba(64, 151, 199, .38), transparent 42%), #0f3762; text-align: center; }
  .landscape-gate img { width: min(76vw, 330px); height: auto; filter: drop-shadow(0 18px 28px rgba(4, 22, 42, .35)); }
  .landscape-gate h1 { margin: 2px 0 0; font-size: clamp(28px, 8vw, 42px); line-height: .95; letter-spacing: -.06em; }
  .landscape-gate p { max-width: 310px; margin: 0; color: #c6ddea; font-size: 14px; line-height: 1.45; }
  .landscape-gate strong { color: #f4be58; }
}
@media (orientation: portrait) and (max-height: 600px) {
  .landscape-gate { justify-content: flex-start; gap: 10px; }
  .landscape-gate img { width: min(58vw, 230px); }
  .landscape-gate h1 { font-size: 28px; }
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 16px; border-radius: 10px; color: var(--ink); background: var(--orange); transform: translateY(-160%); transition: transform 180ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
.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; }
.site-shell { overflow: hidden; }
.section-frame {margin-inline: auto; }

.topbar {margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px;position: relative; z-index: 5; }
.brand { display: inline-flex; align-items: center; gap: 10px;font-weight: 800; letter-spacing: -0.04em; }
.brand-dot { color: var(--orange); }
.brand-mark { width: 25px; height: 25px; display: inline-flex; align-items: flex-end; gap: 3px; padding: 4px; border: 1px solid rgba(255, 158, 67, .85); border-radius: 7px 7px 7px 2px; transform: rotate(-8deg); }
.brand-mark span { display: block; width: 4px; border-radius: 1px; background: var(--orange); }
.brand-mark span:nth-child(1) { height: 7px; opacity: .55; }
.brand-mark span:nth-child(2) { height: 11px; opacity: .8; }
.brand-mark span:nth-child(3) { height: 15px; }
.topnav { display: flex; align-items: center;margin-left: auto; }
.topnav a, .footer-links a {font-size: 13px; transition: color 150ms ease-out; }
.topbar-actions { display: flex; align-items: center;}
.live-chip, .heading-live, .proof-live { display: inline-flex; align-items: center; gap: 7px;font-size: 11px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.pulse-dot, .live-dot { width: 6px; height: 6px; display: inline-block; border-radius: 50%;}
.pulse-dot { animation: pulse 2.2s ease-out infinite; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 18px; border-radius: 10px; font-weight: 750; font-size: 13px; letter-spacing: -0.02em; transition: transform 160ms var(--ease-out), background-color 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out; }
.button:active { transform: scale(.97); }
.button:focus-visible, .text-link:focus-visible, .room-link:focus-visible, .view-tab:focus-visible, .board-sort button:focus-visible, .modal-close:focus-visible, input:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.button-primary:hover {transform: translateY(-2px);}
.button-quiet { color: var(--ink); background: var(--paper); }
.button-quiet:hover { background: var(--cream); transform: translateY(-1px); }
.button-small { min-height: 36px; padding: 0 13px; font-size: 12px; }
.button-dark {padding: 0 12px; color: var(--paper); background: var(--ink);}
.button-dark:hover { color: var(--ink); background: var(--orange); }
.button-outline {padding: 0 12px; color: var(--ink);border: 1px solid rgba(16, 19, 19, .25);}
.button-outline:hover { border-color: var(--ink);}
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { color: var(--ink); background: var(--orange); transform: translateY(-2px); }
.button-arrow { font-size: 17px; line-height: 0; }
.button-price { padding-left: 8px; color: rgba(16, 19, 19, .58); border-left: 1px solid rgba(16, 19, 19, .2); font-size: 11px; font-weight: 600; }
.text-link { display: inline-flex; align-items: center; gap: 8px;font-size: 13px; font-weight: 700; transition: color 150ms ease-out, gap 150ms var(--ease-out); }
.text-link:hover {gap: 12px; }

.hero {grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--orange); font-size: 10px; font-weight: 750; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-line { width: 24px; height: 1px; display: inline-block; background: currentColor; }
.hero h1, .section-heading h2, .how-intro h2, .final-cta h2 { margin: 26px 0 22px;font-size: clamp(58px, 8vw, 112px); font-weight: 760; line-height: .88; letter-spacing: -.085em; }
.hero h1 em, .section-heading h2 em, .how-intro h2 em, .final-cta h2 em { color: var(--orange); font-style: normal; }
.hero-lede {margin: 0;letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px;}
.hero-note { display: flex; align-items: center; gap: 8px; margin: 22px 0 0;font-size: 11px; }
.lock-icon { color: var(--mint); font-size: 16px; transform: rotate(-45deg); }
.hero-signal {position: relative; isolation: isolate; overflow: hidden;flex-direction: column; justify-content: flex-end;}
.hero-signal::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(16, 19, 19, .23); border-radius: 0 22px 0 22px; pointer-events: none; }
.signal-grid { position: absolute; inset: 0; z-index: -1;background-image: linear-gradient(rgba(16,19,19,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(16,19,19,.1) 1px, transparent 1px);}
.signal-grid::after { content: ""; position: absolute; left: 35px; right: 18px;border-top: 2px solid rgba(16,19,19,.45); border-radius: 50%; transform: rotate(-13deg); }
.signal-kicker {top: 33px; left: 33px; display: flex; align-items: center; gap: 8px;font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.signal-kicker .live-dot { background: var(--ink); box-shadow: 0 0 0 4px rgba(16,19,19,.09); }
.signal-rank {top: 68px; right: 30px;font-weight: 800;letter-spacing: -.12em; }
.signal-company { display: flex; align-items: center;margin-bottom: 32px; }
.company-logo {flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: var(--paper);font-weight: 850; letter-spacing: -.08em; }
.hero-signal .company-logo {color: var(--orange); background: var(--ink);}
.logo-relay { background: #202523; }.logo-northstar { background: #4964de; }.logo-clearbit { background: #d66f56; }.logo-arc { color: #1c2120; background: #9bd2ff; }.logo-grain { color: #1c2120; background: #a6dfc7; }.logo-cinder { background: #bd6ce7; }.logo-common { background: #eb7660; font-size: 13px; }.logo-loam { background: #536d5d; }
.signal-name {font-weight: 800; letter-spacing: -.06em; }.signal-pitch {margin-top: 3px; color: rgba(16,19,19,.65);line-height: 1.35; }
.signal-bid { display: flex; flex-direction: column; gap: 2px; padding-top: 22px;}.signal-bid span, .signal-stats, .signal-footer { color: rgba(16,19,19,.62);}.signal-bid strong {letter-spacing: -.09em; }.signal-bid strong span { margin-left: 5px; font-size: 13px; font-weight: 700; }
.signal-stats { display: flex;gap: 10px;}.signal-stats strong { color: var(--ink); }.verified { color: rgba(16,19,19,.75); }.verified span { display: inline-grid; place-items: center; width: 14px; height: 14px; margin-right: 4px; border-radius: 50%; color: var(--orange); background: var(--ink); font-size: 9px; font-weight: 900; }
.signal-footer { display: flex; justify-content: space-between; gap: 12px;border-top: 1px solid rgba(16,19,19,.25); text-transform: uppercase; letter-spacing: .08em; }

.proof-strip {display: flex; align-items: center;padding-block: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.proof-item { display: flex; flex-direction: column; gap: 5px; }.proof-item strong {letter-spacing: -.07em; }.proof-item span {letter-spacing: .09em; text-transform: uppercase; }.proof-divider { width: 1px;}.proof-live { margin-left: auto;}

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }.section-heading h2 { margin-bottom: 34px;}.heading-aside { display: flex; flex-direction: column; align-items: flex-end;}.heading-aside strong {font-weight: 600; }.sponsored-note { display: flex; align-items: center; gap: 10px;border: 1px solid var(--line);line-height: 1.4; }.sponsored-note a { margin-left: auto; color: var(--orange); font-weight: 700; white-space: nowrap; }.info-icon { display: inline-grid; place-items: center; width: 16px; height: 16px; flex: 0 0 auto; border: 1px solid #767e76; border-radius: 50%;font-size: 10px; font-weight: 800; }
.board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px;}.board-view-tabs { display: flex;}.view-tab { display: inline-flex; align-items: center; gap: 8px;background: transparent; border: 1px solid transparent;}.view-tab span { color: #a1a8a0; font-size: 10px; }.board-sort { display: flex; align-items: center; gap: 5px;}.board-sort button { display: inline-flex; gap: 9px; align-items: center;}
.leaderboard {color: var(--ink);}.board-labels {grid-template-columns: 76px minmax(280px, 1fr) 100px 115px 142px; gap: 14px; padding: 15px 18px; color: #7f847e; background: #e5e1d7; border-bottom: 1px solid var(--line-dark); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }.board-labels span:nth-child(n+2) { text-align: right; }.board-labels span:last-child { text-align: left; }
.leader-row {display: grid;align-items: center;border-bottom: 1px solid var(--line-dark); transition: background-color 180ms ease-out, transform 280ms var(--ease-in-out), opacity 180ms ease-out; }.rank-cell { display: flex; align-items: center; gap: 8px; }.rank-number { color: #777e77;font-weight: 800; letter-spacing: -.09em; }.rank-trend { font-size: 10px; font-weight: 800; }.trend-up { color: #38a17e; }.trend-down { color: #d66f56; }.trend-flat { color: #9da19b; }.startup-cell { display: flex; align-items: center; gap: 13px; min-width: 0; }.startup-copy { min-width: 0; }.startup-title { display: flex; align-items: center; flex-wrap: wrap; gap: 7px;font-weight: 800; letter-spacing: -.05em; }.startup-copy p { overflow: hidden; margin: 4px 0 7px; color: #6f766f;text-overflow: ellipsis; white-space: nowrap; }.startup-meta { display: flex; gap: 7px; color: #9a9d95;}.badge { display: inline-flex; align-items: center; min-height: 16px; padding: 0 5px; border-radius: 4px; font-size: 8px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }.badge-verified { color: #267b60; background: #c7efde; }.badge-new { color: #996532; background: #f8dfb1; }.reach-cell, .commitment-cell { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }.reach-cell strong, .commitment-cell strong { font-size: 14px; letter-spacing: -.05em; }.reach-cell span, .commitment-cell span { color: #8b9089; font-size: 9px; }.row-action { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }.access-label { padding-left: 2px; color: #8a9089;font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.access-top10 { color: #bd7135; }
.cut-line { display: flex; align-items: center; gap: 12px; padding: 15px 18px; color: #7b817b; background: #e5e1d7; font-size: 10px; font-weight: 650; }.cut-line-rule { height: 1px; flex: 1; background: rgba(16,19,19,.12); }.cut-line strong { color: #bd7135; }.board-more { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; color: #888e87; background: #e5e1d7; font-size: 10px; }.board-more .text-link { color: #bd7135;}

.rooms-heading { align-items: start; }.rooms-heading h2 { margin-top: 25px; }.section-intro { max-width: 300px; margin: 7px 0 40px; color: #969d96; font-size: 14px; line-height: 1.55; }.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr);}.room-card {display: flex; flex-direction: column;color: var(--ink);}.room-top { display: flex; justify-content: space-between; gap: 12px; color: #7c827b; font-size: 10px; font-weight: 750; text-transform: uppercase; }.room-number { color: #a1a69f; }.room-status { display: inline-flex; align-items: center; gap: 5px; text-align: right; }.status-open { color: #4e8d78; }.status-open span { width: 6px; height: 6px; border-radius: 50%; background: #59c098; }.room-icon {display: grid; place-items: center;border: 1px solid rgba(16,19,19,.16);font-size: 25px; font-weight: 850; letter-spacing: -.08em; }.room-top10 .room-icon { color: var(--orange); background: var(--ink); font-size: 22px; }.room-room-a .room-icon { color: var(--ink); background: #a8d9f7; font-size: 16px; }.room-room-b .room-icon { color: var(--paper); background: #8062a4; font-size: 16px; }.room-card h3 { margin: 22px 0 8px;letter-spacing: -.07em; }.room-card > p { min-height: 44px; max-width: 280px; margin: 0; color: #6f766f; font-size: 12px; line-height: 1.45; }.room-metric { display: flex; align-items: baseline; gap: 7px; margin-top: auto; padding-top: 22px; }.room-metric strong { font-size: 24px; letter-spacing: -.08em; }.room-metric span { color: #8a9089; font-size: 9px; }.room-link { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin-top: 20px; padding: 0; color: var(--ink); background: transparent; font-size: 11px; font-weight: 800; }.room-link:hover { color: #bd7135; }
.outbid-callout { display: grid; grid-template-columns: 110px minmax(200px, .65fr) minmax(360px, 1fr); align-items: center; gap: 32px;padding: 26px 30px;border: 1px solid var(--line);}.outbid-badge { width: 76px; height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding-left: 13px; color: var(--ink); background: var(--orange); border-radius: 50%; font-size: 9px; font-weight: 800; line-height: .95; text-transform: uppercase; transform: rotate(-10deg); }.outbid-arrow { font-size: 19px; line-height: .8; }.outbid-copy h3 { margin: 16px 0 0; font-size: 31px; line-height: .95; letter-spacing: -.075em; }.outbid-copy h3 em { color: var(--orange); font-style: normal; }.outbid-story { padding-left: 30px; border-left: 1px solid var(--line); }.outbid-message { display: flex; align-items: flex-start; gap: 11px; }.outbid-message .company-logo { width: 30px; height: 30px; border-radius: 8px; font-size: 14px; }.outbid-message strong {font-size: 13px; }.outbid-message p { max-width: 330px; margin: 5px 0 0; color: #929a92; font-size: 11px; line-height: 1.45; }.outbid-cta { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-left: 41px; }.outbid-cta > span { color: #929a92; font-size: 11px; }.outbid-cta > strong { color: var(--orange); font-size: 16px; }.outbid-cta button { margin-left: auto; padding: 7px 11px; color: var(--ink); background: var(--mint);font-size: 10px; font-weight: 800; }

.how-section { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(400px, 1fr); gap: clamp(60px, 11vw, 170px); align-items: start;}.how-intro h2 { margin: 24px 0 24px; font-size: clamp(48px, 6vw, 78px); }.how-intro > p { max-width: 310px; margin: 0 0 28px; color: #929991; font-size: 14px; line-height: 1.55; }.how-steps { border-top: 1px solid var(--line); }.how-step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 23px 0 25px; border-bottom: 1px solid var(--line); }.step-index { color: var(--orange); font-size: 11px; font-weight: 800; }.how-step h3 { margin: 0 0 5px;font-size: 19px; letter-spacing: -.05em; }.how-step p { max-width: 390px; margin: 0;font-size: 12px; line-height: 1.5; }
.final-cta {position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink);}.final-cta .eyebrow { color: var(--ink); }.final-cta h2 { position: relative; margin: 25px 0 22px;font-size: clamp(54px, 7vw, 96px); }.final-cta p { max-width: 360px; margin: 0 0 30px;font-size: 14px; line-height: 1.5; }.final-orbit { position: absolute; width: 500px; height: 500px; border: 1px solid rgba(16,19,19,.18); border-radius: 50%; z-index: -1; }.orbit-a { top: -270px; left: -90px; }.orbit-b { right: -150px; bottom: -340px; width: 660px; height: 660px; border-color: rgba(255,249,236,.25); }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 22px;padding-bottom: 35px;}.footer p { margin: 0; font-size: 11px; }.footer-links { display: flex; gap: 20px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 20px;opacity: 0; pointer-events: none; transition: opacity 220ms ease-out; }.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }.bid-modal { width: min(100%, 470px); position: relative; padding: 31px; color: var(--ink); background: var(--paper);transform: scale(.96); opacity: 0; filter: blur(2px); transition: transform 250ms var(--ease-out), opacity 250ms ease-out, filter 250ms ease-out; }.modal-backdrop.is-open .bid-modal { transform: scale(1); opacity: 1; filter: blur(0); }.modal-close { position: absolute; top: 16px; right: 17px; width: 30px; height: 30px; color: #737a73; background: transparent; border-radius: 50%; font-size: 23px; line-height: 1; }.modal-close:hover { color: var(--ink); background: #e4dfd5; }.modal-kicker { display: flex; align-items: center; gap: 8px; color: #38866c; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.bid-modal h2 { margin: 20px 0 9px; font-size: 40px; letter-spacing: -.09em; }.modal-lede { max-width: 360px; margin: 0; color: #747b74; font-size: 12px; line-height: 1.5; }.bid-preview { display: grid; grid-template-columns: 1fr 1fr 1.15fr; margin: 25px 0 22px; border: 1px solid var(--line-dark); border-radius: 9px; overflow: hidden; }.bid-preview > div { display: flex; flex-direction: column; gap: 5px; padding: 13px 11px; border-right: 1px solid var(--line-dark); }.bid-preview > div:last-child { border-right: 0; }.bid-preview span { color: #838980; font-size: 9px; }.bid-preview strong { font-size: 19px; letter-spacing: -.07em; }.bid-preview strong small { margin-left: 2px; color: #888f87; font-size: 9px; letter-spacing: 0; }.field-label { display: block; margin-bottom: 7px; color: #626960; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }.amount-field { display: flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid rgba(16,19,19,.3); border-radius: 8px;}.amount-field:focus-within { border-color: var(--orange);}.amount-field span { color: #7c837b; font-size: 13px; }.amount-field input { width: 100%; height: 52px; padding: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 25px; font-weight: 800; letter-spacing: -.07em; }.field-help { min-height: 17px; margin: 7px 0 0; color: #888f87; font-size: 10px; }.modal-checks { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 20px 0 23px; color: #687068; font-size: 10px; }.check { color: #32866d; font-weight: 900; }.button-full { width: 100%; min-height: 49px; }.modal-demo-note { margin: 14px 0 0; color: #9b9f97; font-size: 9px; text-align: center; }
.toast-region { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }.toast { max-width: 330px; display: flex; align-items: flex-start; gap: 10px; padding: 13px 15px; color: var(--paper); background: #202624; border: 1px solid rgba(125, 226, 196, .35); border-radius: 9px 2px 9px 2px; box-shadow: 0 18px 40px rgba(0,0,0,.3); animation: toast-in 280ms var(--ease-out) both; font-size: 11px; line-height: 1.4; }.toast strong { color: var(--mint); }.toast.is-leaving { opacity: 0; transform: translateY(8px); transition: opacity 180ms ease-out, transform 180ms ease-out; }
.reveal { animation: reveal-up 650ms var(--ease-out) both; }.reveal-delay-1 { animation-delay: 120ms; }

@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(125, 226, 196, .08); } 50% { box-shadow: 0 0 0 6px rgba(125, 226, 196, 0); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(14px); filter: blur(3px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px) scale(.97); filter: blur(2px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }

@media (max-width: 980px) {
  .section-frame { width: min(100% - 48px, 760px); }.topnav { display: none; }.hero { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; }.hero-signal { width: min(100%, 480px); justify-self: end; }.board-labels, .leader-row { grid-template-columns: 60px minmax(240px, 1fr) 88px 106px 122px; gap: 10px; }.rooms-grid { grid-template-columns: 1fr; }.room-card { min-height: 300px; }.room-icon { margin-top: 38px; }.outbid-callout { grid-template-columns: 88px 1fr; }.outbid-story { grid-column: 1 / -1; padding-top: 24px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }.how-section { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 700px) {
  .section-frame { width: calc(100% - 32px); }.live-chip { display: none; }.button-small { min-height: 34px; font-size: 11px; }.hero { min-height: auto;}.hero-lede { font-size: 15px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.hero-signal { min-height: 390px;}.signal-rank { font-size: 100px; }.signal-bid strong { font-size: 36px; }.proof-live {margin: 0; }.proof-item strong { font-size: 21px; }.section-heading { display: block; }.section-heading h2 {margin-bottom: 25px; }.heading-aside { align-items: flex-start; padding-bottom: 22px; }.sponsored-note { align-items: flex-start; flex-wrap: wrap; }.sponsored-note a { width: 100%; margin-left: 26px; }.board-toolbar {flex-direction: column; }.board-labels, .leader-row { width: 790px; }.board-labels { grid-template-columns: 60px 320px 88px 106px 122px; }.cut-line, .board-more { width: 790px; }.outbid-copy h3 { font-size: 28px; }.outbid-cta {padding-left: 41px; }.outbid-cta button { width: 100%; margin-left: 0; }.footer { align-items: flex-start; flex-direction: column; padding-top: 52px; }.final-cta { min-height: 460px; padding: 28px; }.final-cta h2 { font-size: 59px; }.bid-modal { padding: 25px 20px; }.bid-preview { grid-template-columns: 1fr 1fr 1.05fr; }.bid-preview > div { padding: 11px 8px; }.bid-preview strong { font-size: 16px; }.modal-checks { gap: 8px; }
}

/* Immersive homepage mode: the world is the page, everything else is an overlay. */
.world-only { overflow: hidden; background: #123d6b; }
.world-only .site-shell { min-height: 100svh; overflow: hidden; }
.world-only .site-shell > header,
.world-only .site-shell > footer,
.world-only .site-shell > main > *:not(.world-section),
.world-only .mobile-tabs { display: none; }
.world-only .world-section { width: 100%; min-height: 100svh; display: block; padding: 0; }
.world-only .world-heading { display: none; }
.world-only .world-stage { width: 100%; height: 100svh; min-height: 0; aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; background: #a8ddf2; }
.world-only .world-map { object-fit: cover; object-position: center center; }
.world-only .world-vignette { background: linear-gradient(180deg, rgba(7, 31, 58, .48), transparent 19%, transparent 71%, rgba(7, 31, 58, .24)); }

@media (max-width: 700px) {
  .world-only .world-map { width: auto; min-width: 100%; height: 100%; left: 50%; right: auto; transform: translateX(-50%); object-fit: cover; object-position: center; }
  .world-only .world-topbar { top: 12px; }
}

/* Founder world layer: the map is the product's signature surface. */
.world-section { padding-top: 72px; }
.world-heading { align-items: end; margin-bottom: 22px; }
.world-heading h2 { margin: 16px 0 0; font-size: clamp(47px, 6vw, 72px); }
.world-heading-status { display: flex; align-items: center; gap: 9px; padding-bottom: 25px; color: var(--copy-muted); font-size: 10px; }
.world-heading-status strong { color: #398d70; }
.world-heading-status span:last-child { padding-left: 8px; border-left: 1px solid var(--rule-soft); }
.world-stage { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 1672 / 941; min-height: 470px; border: 1px solid #dfe4dc; border-radius: 22px 7px 22px 7px;}
.world-map { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.world-vignette { position: absolute; inset: 0; z-index: -1; pointer-events: none;}
.sponsor-section { padding-top: 105px; }.sponsor-heading { align-items: start; }.sponsor-heading h2 { margin-top: 16px; }.sponsor-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 10px; }.sponsor-card { display: flex; align-items: center; gap: 11px; min-height: 86px; padding: 14px; color: var(--ink); border: 1px solid var(--rule-soft); border-radius: 13px 4px 13px 4px; background: var(--surface); text-align: left; box-shadow: 0 4px 14px rgba(36, 53, 54, .035); transition: transform .18s var(--ease-out), box-shadow .18s ease, border-color .18s ease; }.sponsor-card:hover, .sponsor-card:focus-visible { transform: translateY(-3px); border-color: #e9b6a8; box-shadow: 0 12px 22px rgba(36, 53, 54, .1); }.sponsor-card-featured { background: #fae3dd; }.sponsor-card-icon { width: 33px; height: 33px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px 3px 10px 3px; color: #fff7e8; background: #df674d; font-size: 17px; }.sponsor-icon-teal { background: #53b7b3; }.sponsor-icon-gold { color: var(--ink); background: #f4be58; }.sponsor-card strong, .sponsor-card small { display: block; }.sponsor-card strong { font-size: 12px; letter-spacing: -.03em; }.sponsor-card small { margin-top: 4px; color: #75817d; font-size: 8px; }.sponsor-card-arrow { margin-left: auto; align-self: start; color: #d76d55; font-size: 16px; }
.mobile-tabs { display: none; }

@media (max-width: 700px) {
  .world-section { padding-top: 54px; }.world-heading { margin-bottom: 15px; }.world-heading-status { align-items: flex-start; flex-wrap: wrap; gap: 5px 8px; padding-bottom: 15px; }.world-heading-status span:last-child { width: 100%; padding: 0; border: 0; }.world-stage { min-height: 420px; aspect-ratio: auto; border-radius: 17px 5px 17px 5px; }.world-map { width: auto; min-width: 745px; left: 50%; right: auto; transform: translateX(-50%); object-fit: cover; object-position: center; }.world-vignette { background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 36%, rgba(36, 53, 54, .18)); }.sponsor-section { padding-top: 80px; }.sponsor-grid { grid-template-columns: 1fr; }.sponsor-card { min-height: 70px; }.mobile-tabs { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 10; display: grid; grid-template-columns: repeat(4, 1fr); padding: 5px; border: 1px solid rgba(36, 53, 54, .1); border-radius: 16px; background: rgba(255, 253, 250, .92); box-shadow: 0 12px 28px rgba(36, 53, 54, .16); backdrop-filter: blur(14px); }.mobile-tabs a { display: grid; place-items: center; gap: 3px; padding: 7px 2px; color: #75817d; border-radius: 11px; font-size: 8px; font-weight: 800; }.mobile-tabs a span { color: #53a9a3; font-size: 15px; line-height: 1; }.mobile-tabs a.is-active { color: var(--ink); background: #fae3dd; }.mobile-tabs a.is-active span { color: #df674d; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: .01ms !important; }
}

/* Light reference palette: paper-first surfaces with RankClub coral signals. */
body, .site-shell { color: var(--ink); background: #fcfbf8; }
.topbar { border-color: rgba(23, 24, 23, .12); }
.topnav a, .footer-links a { color: #777872; }
.topnav a:hover, .footer-links a:hover { color: var(--ink); }
.live-chip, .heading-live, .proof-live { color: #606660; }
.pulse-dot, .live-dot { background: #44a783; box-shadow: 0 0 0 4px rgba(68, 167, 131, .12); }
.hero h1, .section-heading h2, .how-intro h2, .final-cta h2 { color: var(--ink); }
.text-link { color: var(--ink); }
.text-link:hover { color: var(--orange); }
.proof-item strong { color: var(--ink); }
.proof-item span { color: #777a73; }
.heading-aside { color: #747872; }
.heading-aside strong { color: var(--ink); }
.heading-live { color: #398d70; }
.sponsored-note { color: #737771;}
.sponsored-note strong { color: var(--ink); }
.info-icon { border-color: #787c75; color: #5d625c; }
.view-tab { color: #737770; }
.view-tab:hover { color: var(--ink); }
.view-tab.is-active span { color: #7d574e; }
.board-sort { color: #70746e; }
.rooms-heading h2, .how-intro h2 { color: var(--ink); }
.section-intro, .how-intro > p { color: #6f746e; }
.outbid-callout { color: var(--ink);}
.outbid-copy h3 { color: var(--ink); }
.outbid-message strong { color: var(--ink); }
.outbid-message p, .outbid-cta > span { color: #6e746d; }
.how-step h3 { color: var(--ink); }
.how-step p { color: #6f746e; }
.final-cta { background: #f3b5a7; }
.final-cta h2 { color: var(--ink); }
.final-cta h2 em { color: #fffdfa; }
.final-cta p { color: rgba(23, 24, 23, .65); }
.footer { color: #777a73; }

/* Outbid-inspired product surface: a compact, live-board-first composition. */
:root {
  --surface: #fffdfa;

  --copy-muted: #777a73;
}

html, body, .site-shell { background: #fcfbf8; }
.site-shell { min-height: 100vh; }
.section-frame { width: min(1000px, calc(100% - 40px)); }

.topbar {min-height: 64px; border-bottom: 1px solid var(--rule-soft); }
.brand-cluster { display: flex; align-items: center;min-width: 0; }
.brand { font-size: 16px; }
.brand-mark { border-color: rgba(232, 121, 97, .62); }
.live-chip { max-width: 270px; overflow: hidden; padding: 7px 10px;border: 1px solid var(--rule-soft); border-radius: 999px; font-size: 10px; letter-spacing: 0; text-overflow: ellipsis; text-transform: none;}
.topnav a { font-size: 12px; }
.topbar-actions { gap: 0; }
.topbar-actions .button-quiet { padding-inline: 11px;}

.category-strip { display: flex; align-items: center; gap: 5px;border: 1px solid #efebe4;overflow-x: auto; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-pill { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;color: #777a73;font-size: 10px; font-weight: 750; white-space: nowrap; transition: color 150ms ease-out, background-color 150ms ease-out, transform 150ms var(--ease-out); }
.category-pill:hover { color: var(--ink); background: rgba(255, 255, 255, .72); transform: translateY(-1px); }
.category-pill.is-active { color: #fffdfa;}
.category-pill.is-active:hover { color: #fffdfa; background: var(--orange-hot); }
.category-pill-end { margin-left: auto; color: #b06252; }

.hero { min-height: auto; display: flex; flex-direction: column; align-items: center; gap: 0;text-align: center; }
.hero-tabs { display: inline-flex; align-items: center; gap: 3px; padding: 3px; background: var(--surface); border: 1px solid var(--rule-soft); border-radius: 999px;}
.hero-tab { padding: 8px 14px; color: #8a8c86; border-radius: 999px; font-size: 10px; font-weight: 800; }
.hero-tab:hover { color: var(--ink); }
.hero-tab.is-active { color: #9b5d51; background: var(--surface-blush-strong); }
.hero-copy { width: min(100%, 780px);}
.hero-copy .eyebrow { justify-content: center; }
.hero h1 { margin: 19px 0 17px;line-height: .9; }
.hero-lede {margin-inline: auto;line-height: 1.5; }
.claim-prompt { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 9px; margin: 0 auto 18px; color: var(--ink);font-weight: 800;}
.claim-price { display: inline-flex; align-items: baseline; padding: 0 3px 2px;background: transparent;font-size: inherit; font-weight: 850; letter-spacing: inherit; transition: color 150ms ease-out, border-color 150ms ease-out, transform 150ms var(--ease-out); }
.claim-price:hover {border-color: var(--orange);}
.claim-price span { margin-left: 4px; color: #a2665a; font-size: .38em; letter-spacing: 0; }
.claim-rule { align-self: center; padding: 5px 8px;border-radius: 999px; font-size: 9px; font-weight: 650; letter-spacing: .02em; }
.hero-actions { justify-content: center;}
.hero-note { justify-content: center; margin-top: 18px; }

.hero-signal { width: min(100%, 900px); min-height: 0; display: grid; grid-template-columns: 60px minmax(0, 1fr) 190px; grid-template-areas: "kicker kicker kicker" "rank company bid" "rank company stats" "footer footer footer"; gap: 0 15px;padding: 16px 22px 14px; color: var(--ink);border: 1px solid #efcfc7;text-align: left; }
.hero-signal::before { display: none; }
.signal-grid {background-size: 25px 25px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.signal-grid::after { top: 48px; height: 70px; opacity: .45; }
.signal-kicker { position: static; grid-area: kicker; margin-bottom: 12px; font-size: 9px; }
.signal-rank { position: static; grid-area: rank; align-self: center;font-size: 31px; line-height: 1; }
.signal-company { grid-area: company; align-self: center; gap: 11px; margin: 0; }
.hero-signal .company-logo { width: 46px; height: 46px; border-radius: 13px 4px 13px 4px; font-size: 20px; }
.signal-name { font-size: 17px; }
.signal-pitch { max-width: 390px; font-size: 10px; }
.signal-bid { grid-area: bid; align-items: flex-end; justify-content: center; padding: 0 0 5px; border-top: 0; text-align: right; }
.signal-bid span, .signal-stats, .signal-footer { font-size: 9px; }
.signal-bid strong { font-size: 28px; }
.signal-stats { grid-area: stats; align-items: flex-end; justify-content: flex-start; margin-top: 0; text-align: right; }
.signal-footer { grid-area: footer; margin-top: 15px; padding-top: 10px;}

.proof-strip { width: min(1000px, calc(100% - 40px)); min-height: 82px; gap: clamp(18px, 4vw, 48px); padding: 18px 20px;border: 1px solid var(--rule-soft);}
.proof-item strong { font-size: 21px; }
.proof-item span { font-size: 9px; }
.proof-divider { height: 27px; background: var(--rule-soft); }
.proof-live { color: #398d70; font-size: 9px; }

.section-heading h2 { margin: 15px 0 22px;line-height: .92; }
.board-heading { align-items: end; }
.heading-aside { gap: 7px; padding-bottom: 24px; font-size: 10px; }
.sponsored-note { margin-bottom: 15px; padding: 11px 13px;font-size: 10px; }
.board-layout { display: grid; grid-template-columns: minmax(0, 1fr) 248px; gap: 17px; align-items: start; }
.board-main { min-width: 0; }
.board-toolbar { margin-top: 0; padding: 4px 0; }
.board-view-tabs { gap: 3px; }
.view-tab { padding: 8px 11px;font-size: 10px; }
.view-tab.is-active { color: #9b5d51;}
.board-sort { font-size: 10px; }
.board-sort button { padding: 7px 10px; color: var(--ink); background: var(--surface); border: 1px solid var(--rule-soft);font-size: 10px; }
.leaderboard { margin-top: 9px; border: 0; border-radius: 0; background: transparent; overflow: visible; }
.board-labels { display: none; }
.leader-row { min-height: 92px; grid-template-columns: 64px minmax(220px, 1fr) 82px 110px 116px; gap: 12px; margin-bottom: 9px; padding: 14px 17px; border: 1px solid var(--rule-soft);background: var(--surface);}
.leader-row:hover { background: #fff8f4; transform: translateY(-1px); }
.leader-row-featured { min-height: 108px; border-color: #efcfc7;}
.leader-row-compact { min-height: 86px; }
.rank-number { font-size: 16px; }
.leader-row-featured .rank-number { color: #ae5a49; font-size: 20px; }
.startup-title { font-size: 14px; }
.startup-copy p { margin-bottom: 6px; font-size: 10px; }
.startup-meta { font-size: 8px; }
.company-logo { width: 38px; height: 38px; border-radius: 11px; font-size: 16px; }
.reach-cell strong { font-size: 13px; }
.commitment-cell strong { color: var(--orange); font-size: 17px; }
.button-outline, .button-dark { border-radius: 999px; }
.button-outline { min-height: 31px; padding-inline: 11px; background: #fffdfa; border-color: #d8d4cd; font-size: 10px; }
.button-outline:hover { color: #fffdfa; background: var(--ink); }
.button-dark { min-height: 31px; font-size: 10px; }
.access-label { font-size: 8px; }
.cut-line, .board-more { margin-bottom: 0; padding: 13px 15px; border: 1px solid var(--rule-soft);background: #f3f0ea; font-size: 9px; }
.board-more { margin-top: 7px; border-radius: 13px; }
.board-more .text-link { font-size: 10px; }

.board-rail { padding: 16px 15px 13px; border: 1px solid var(--rule-soft);background: var(--surface);}
.rail-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding-bottom: 14px; }
.rail-heading .eyebrow { gap: 7px; font-size: 8px; }
.rail-heading .eyebrow-line { width: 15px; }
.rail-heading h3 { margin: 12px 0 0; font-size: 28px; line-height: .92; letter-spacing: -.075em; }
.rail-heading h3 em { color: var(--orange); font-style: normal; }
.rail-heading > a { color: var(--orange); font-size: 9px; font-weight: 800; white-space: nowrap; }
.rail-entry { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 7px; padding: 13px 0; border-top: 1px solid var(--rule-soft); }
.rail-entry:hover { background: #fff8f4; }
.rail-rank { color: #b56959; font-size: 9px; font-weight: 800; }
.rail-copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rail-copy strong { font-size: 12px; letter-spacing: -.035em; }
.rail-copy small { overflow: hidden; color: #8a8d86; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.rail-status { display: inline-flex; align-items: center; gap: 4px; color: #398d70; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.rail-status span { width: 5px; height: 5px; border-radius: 50%; background: #55b58d; }
.rail-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 11px; padding-top: 12px; color: #777a73; border-top: 1px solid var(--rule-soft); font-size: 9px; line-height: 1.45; }
.rail-note .live-dot { width: 5px; height: 5px; flex: 0 0 auto; margin-top: 4px; }

.rooms-grid { gap: 12px; }
.room-card { min-height: 326px; padding: 19px; border: 1px solid var(--rule-soft);background: var(--surface);}
.room-icon { width: 53px; height: 53px; margin-top: 47px; border-radius: 14px 4px 14px 4px; }
.room-card h3 { margin-top: 19px; font-size: 21px; }
.outbid-callout { margin-top: 43px; border-color: #efcfc7;background: var(--surface-blush); }
.outbid-copy .eyebrow { color: #ae5a49; }
.outbid-story { border-color: rgba(174, 90, 73, .22); }
.outbid-cta button { border-radius: 999px; }

.how-section { padding-bottom: 106px; }
.how-steps { border-color: var(--rule-soft); }
.how-step { border-color: var(--rule-soft); }
.final-cta { min-height: 430px;}
.footer { padding-top: 55px; }

.modal-backdrop { background: rgba(37, 27, 24, .46); }
.bid-modal { border: 1px solid var(--rule-soft);box-shadow: 0 30px 80px rgba(50, 30, 25, .22); }
.bid-preview-highlight strong { color: #9b5d51; }

@media (max-width: 980px) {
  .topbar { width: min(100% - 40px, 760px); }
  .section-frame, .proof-strip { width: min(100% - 40px, 760px); }
  .board-layout { grid-template-columns: 1fr; }
  .board-rail { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; }
  .rail-heading, .rail-note { grid-column: 1 / -1; }
  .rail-entry { padding-inline: 8px; }
}

@media (max-width: 700px) {
  .topbar { width: calc(100% - 32px); min-height: 62px; }
  .section-frame, .proof-strip { width: calc(100% - 32px); }
  .brand-cluster { gap: 8px; }
  .live-chip {padding-inline: 8px; }
  .topbar-actions .button-quiet { padding-inline: 8px; font-size: 10px; }
  .category-strip { width: calc(100% - 32px); margin-top: 10px; }
  .category-pill { padding: 8px 10px; }
  .category-pill-end { margin-left: 0; }
  .hero { padding-top: 20px; padding-bottom: 57px; }
  .hero-copy { margin-top: 28px; }
  .claim-prompt { gap: 7px; font-size: 24px; }
  .claim-rule { width: 100%; }
  .hero-signal { grid-template-columns: 42px minmax(0, 1fr); grid-template-areas: "kicker kicker" "rank company" "rank bid" "rank stats" "footer footer"; gap: 0 10px; padding: 15px; }
  .signal-bid, .signal-stats { align-items: flex-start; text-align: left; }
  .signal-company { margin-bottom: 12px; }
  .signal-footer { margin-top: 13px; }
  .proof-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px; }
  .proof-divider { display: none; }
  .proof-live { grid-column: 1 / -1; margin-left: 0; }
  .board-section, .rooms-section, .how-section { padding-top: 82px; }
  .section-heading h2 { font-size: 55px; }
  .board-toolbar { align-items: flex-start; }
  .board-view-tabs { max-width: 100%; overflow-x: auto; }
  .board-sort { width: 100%; justify-content: space-between; }
  .leaderboard { overflow-x: auto; padding-bottom: 2px; }
  .board-labels, .leader-row, .cut-line, .board-more { width: 740px; }
  .leader-row { grid-template-columns: 55px 295px 78px 100px 110px; }
  .board-rail { display: block; }
  .rail-entry { padding-inline: 0; }
  .rooms-heading { display: block; }
  .section-intro { margin-top: 0; }
  .outbid-callout { padding: 20px; }
  .outbid-cta { align-items: flex-start; flex-wrap: wrap; }
  .how-intro h2 { font-size: 55px; }
}

/* DataFast-informed lean layer: quieter chrome, stronger action color, less visual noise. */

.topbar { width: 100%; max-width: none; padding-inline: max(20px, calc((100% - 1000px) / 2)); border-bottom-color: #e8e5df; }
.brand-cluster { gap: 14px; }
.live-chip { color: #777a73; background: #fffefa; border-color: #e7e3dd; box-shadow: 0 1px 4px rgba(23, 24, 23, .03); }
.topnav { gap: 25px; }
.topnav a { color: #777a73; }
.topbar-actions .button-quiet { min-height: 35px; color: var(--ink); background: #fffefa; border: 1px solid #e3dfd9; border-radius: 8px; box-shadow: 0 1px 3px rgba(23, 24, 23, .04); }
.topbar-actions .button-quiet:hover { background: var(--surface-blush); border-color: #efc3b8; }

.category-strip { margin-top: 10px; padding: 4px; background: #f7f5f1; border-color: #eeeae4; border-radius: 14px; box-shadow: none; }
.category-pill { padding: 7px 11px; border-radius: 8px; }
.category-pill.is-active { background: var(--orange); box-shadow: 0 3px 8px rgba(235, 105, 74, .16); }

.hero { padding-top: 22px; padding-bottom: 52px; }
.hero-tabs { box-shadow: none; }
.hero-copy { margin-top: 28px; }
.hero h1 { max-width: 820px; margin-top: 17px; font-size: clamp(53px, 6vw, 73px); letter-spacing: -.075em; }
.hero-lede { max-width: 560px; color: #6d716b; font-size: 15px; }
.hero-actions { margin-top: 23px; }
.hero-note { color: #8a8d87; }
.hero-signal { margin-top: 30px;border-color: #e8e4de; box-shadow: 0 12px 28px rgba(23, 24, 23, .045); }
.signal-grid { opacity: .12; }
.signal-kicker { color: #5d625c; }
.signal-rank { color: rgba(174, 90, 73, .42); }
.signal-footer { border-top-color: #ece2dc; }

.proof-strip { background: #fffefa; border-color: #e7e3dd;box-shadow: 0 3px 10px rgba(23, 24, 23, .025); }
.board-section, .rooms-section, .how-section { padding-top: 96px; }
.section-heading h2 { font-size: clamp(44px, 5vw, 63px); }
.sponsored-note { background: #f8f6f2; border-color: #e6e2dc; border-radius: 10px; }
.view-tab { border-radius: 8px; }
.view-tab.is-active { background: var(--surface-blush-strong); }
.board-sort button { border-radius: 8px; }
.leader-row { border-radius: 14px; box-shadow: 0 2px 9px rgba(23, 24, 23, .025); }
.leader-row-featured { background: var(--surface-blush); }
.cut-line, .board-more { border-radius: 10px; }
.board-rail { border-radius: 14px; box-shadow: 0 2px 9px rgba(23, 24, 23, .025); }
.room-card { border-radius: 14px; box-shadow: 0 4px 14px rgba(23, 24, 23, .03); }
.outbid-callout { border-radius: 14px 4px 14px 4px; }
.final-cta { border-radius: 14px 4px 14px 4px; }

@media (max-width: 700px) {
  .topbar { padding-inline: 16px; }
  .live-chip { max-width: 142px; }
  .hero h1 { font-size: clamp(51px, 15vw, 73px); }
  .hero-signal { box-shadow: 0 8px 18px rgba(23, 24, 23, .04); }
}

/* DataFast-informed craft pass: compact controls, soft cards, and layered UI depth. */
:root {
  --orange: #e56a47;
  --orange-hot: #ef7958;
  --ink: #2b2b2a;
  --surface-blush: #fbe7e1;
  --surface-blush-strong: #f7c9bc;
  --rule-soft: #e7e3dd;
}

body {
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

.button,
.button-primary,
.button-outline,
.button-dark,
.button-quiet,
.room-link,
.claim-price {
  transition: transform .15s ease, color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .2s ease;
}

.button-primary {
  color: #fffdfa;
  background: var(--orange);
  border-radius: 8px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, .06),
    0 0 0 1px rgba(225, 101, 64, .16),
    0 8px 16px -8px rgba(225, 101, 64, .64),
    0 -1px 2px rgba(181, 81, 51, .48) inset;
}

.button-primary:hover {
  color: #fffdfa;
  background: var(--orange-hot);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, .07),
    0 0 0 1px rgba(225, 101, 64, .2),
    0 12px 24px -12px rgba(225, 101, 64, .68),
    0 -1px 2px rgba(181, 81, 51, .42) inset;
}

.button-primary:active,
.button:active { transform: scale(.96); }

.button-quiet,
.button-outline,
.board-sort button {
  border-radius: 8px;
}

.claim-prompt {
  width: min(100%, 430px);
  padding: 11px 14px;
  border: 1px solid #e7e3dd;
  border-radius: 8px;
  background: #fffefa;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .025),
    0 1px 2px -1px rgba(0, 0, 0, .08),
    0 8px 18px -15px rgba(0, 0, 0, .26);
  font-size: clamp(17px, 2vw, 20px);
  letter-spacing: -.045em;
}

.claim-price {
  border-bottom: 0;
  color: var(--orange);
}

.claim-price:hover {
  color: #cc604c;
  transform: translateY(-1px);
}

.claim-rule {
  color: #8c736c;
  background: #f8eee9;
}

.hero-signal,
.proof-strip,
.leader-row,
.board-rail,
.room-card,
.bid-modal {
  border-color: #e7e3dd;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .035),
    0 1px 2px -1px rgba(0, 0, 0, .07),
    0 2px 4px 0 rgba(0, 0, 0, .035);
  transition: box-shadow .2s cubic-bezier(0, 0, .2, 1), transform .2s cubic-bezier(0, 0, .2, 1), background-color .2s ease;
}

.hero-signal {
  border-radius: 1.3rem;
  background: #fffefa;
}

.hero-signal:hover,
.proof-strip:hover,
.board-rail:hover,
.room-card:hover,
.bid-modal:hover {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .075),
    0 1px 2px -1px rgba(0, 0, 0, .1),
    0 12px 24px -20px rgba(0, 0, 0, .32);
}

.leader-row:hover,
.room-card:hover,
.board-rail:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .075),
    0 1px 2px -1px rgba(0, 0, 0, .1),
    0 12px 24px -20px rgba(0, 0, 0, .32);
}

.leader-row-featured:hover { background: #fbe1da; }

.proof-strip { border-radius: 1rem; }
.board-rail,
.room-card { border-radius: 1rem; }

.rail-entry-floor { background: #f8f6f2; border-radius: 8px; }

.floor-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(150px, .75fr) minmax(150px, .7fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 21px 22px;
  border: 1px solid var(--rule-soft);
  border-radius: 1rem;
  color: var(--ink);
  background: #f8f6f2;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .025),
    0 1px 2px -1px rgba(0, 0, 0, .06),
    0 2px 4px 0 rgba(0, 0, 0, .025);
  transition: box-shadow .2s cubic-bezier(0, 0, .2, 1), transform .2s cubic-bezier(0, 0, .2, 1), background-color .2s ease;
}

.floor-card:hover {
  transform: translateY(-1px);
  background: #fffefa;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .075),
    0 1px 2px -1px rgba(0, 0, 0, .1),
    0 12px 24px -20px rgba(0, 0, 0, .32);
}

.floor-card-copy h3 { margin: 9px 0 4px; font-size: 24px; letter-spacing: -.065em; }
.floor-card-copy p { max-width: 370px; margin: 0; color: #6f746e; font-size: 11px; line-height: 1.45; }
.floor-card-stats { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 8px; row-gap: 1px; }
.floor-card-stats strong { font-size: 24px; letter-spacing: -.07em; }
.floor-card-stats span { color: #8a9089; font-size: 9px; }
.floor-card-cutoff { display: flex; flex-direction: column; gap: 2px; }
.floor-card-cutoff span, .floor-card-cutoff small { color: #8a9089; font-size: 9px; }
.floor-card-cutoff strong { color: var(--orange); font-size: 17px; letter-spacing: -.05em; }
.floor-card .room-link { margin: 0; white-space: nowrap; }

.sponsored-note,
.cut-line,
.board-more,
.bid-preview,
.amount-field { border-radius: 8px; }

.amount-field {
  background: #fffefa;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .025) inset;
}

.amount-field:focus-within {
  box-shadow: 0 0 0 3px rgba(229, 106, 71, .14);
}

.bid-modal { border-radius: 1rem; }
.bid-preview-highlight { background: var(--surface-blush-strong); }

@media (max-width: 700px) {
  .claim-prompt { width: min(100%, 360px); padding-inline: 12px; }
  .hero-signal { border-radius: 1rem; }
  .floor-card { grid-template-columns: 1fr 1fr; gap: 18px; }
  .floor-card-copy { grid-column: 1 / -1; }
  .floor-card .room-link { justify-self: start; }
}

/* Small authenticated surfaces use the same paper-first product shell. */
.app-page,
.profile-page { width: min(1000px, calc(100% - 40px)); min-height: 100vh; margin: 0 auto; padding: 28px 0 64px; }
.app-page-centered { display: grid; place-items: center; align-content: center; gap: 24px; }
.app-backlink:hover, .profile-back:hover { color: var(--orange); }
.app-backlink, .profile-back { color: #777a73; font-size: 11px; font-weight: 700; }
.app-card, .room-page-card, .profile-card { border: 1px solid var(--rule-soft); border-radius: 1rem; background: #fffefa; box-shadow: 0 0 0 1px rgba(0,0,0,.035), 0 1px 2px -1px rgba(0,0,0,.07), 0 2px 4px 0 rgba(0,0,0,.035); }
.app-card { padding: 38px; }
.app-card-narrow { width: min(100%, 450px); }
.login-actions { display: grid; gap: 10px; }
.login-actions [hidden] { display: none; }
.app-card-form { width: min(100%, 680px); margin: 58px auto 0; }
.app-card h1, .profile-card h1 { margin: 16px 0 12px; color: var(--ink); font-size: clamp(45px, 6vw, 72px); line-height: .9; letter-spacing: -.075em; }
.app-card h1 em, .profile-card h1 em { color: var(--orange); font-style: normal; }
.app-card h2 { margin: 13px 0 8px; font-size: 32px; letter-spacing: -.065em; }
.app-card p, .profile-card p { color: #6f746e; font-size: 13px; line-height: 1.55; }
.app-lede { max-width: 480px; margin-bottom: 25px; }
.app-form { display: grid; gap: 15px; margin-top: 27px; }
.app-form[hidden] { display: none; }
.app-actions-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.app-form label { display: grid; gap: 7px; color: #626960; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.app-form input, .app-form textarea, .app-money-input { width: 100%; padding: 0 13px; color: var(--ink); border: 1px solid #d9d5ce; border-radius: 8px; background: #fffefa; outline: 0; font-size: 14px; font-weight: 600; }
.app-form input, .app-money-input { height: 46px; }
.app-form textarea { padding-top: 12px; resize: vertical; }
.app-form input:focus, .app-form textarea:focus, .app-money-input:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(229,106,71,.14); }
.app-money-input { display: flex; align-items: center; gap: 8px; }
.app-money-input input { height: 43px; padding: 0; border: 0; box-shadow: none; }
.app-money-input span { color: #7c837b; font-size: 13px; text-transform: none; }
.app-status { min-height: 17px; margin: 0; color: #a45c46 !important; font-size: 11px !important; }
.app-footnote, .modal-live-link { color: #8a9089; font-size: 10px; line-height: 1.45; }
.modal-live-link { display: block; margin-top: 8px; text-align: center; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-top: 58px; }
.dashboard-main, .dashboard-action { min-height: 420px; }
.dashboard-rank { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 8px 14px; margin: 37px 0 32px; padding-top: 18px; border-top: 1px solid var(--rule-soft); }
.dashboard-rank span { color: #888f87; font-size: 10px; text-transform: uppercase; }
.dashboard-rank strong { color: var(--orange); font-size: 57px; line-height: .9; letter-spacing: -.08em; }
.dashboard-rank small { grid-column: 2; color: #4e8d78; font-size: 11px; font-weight: 700; }
.dashboard-stats { display: flex; gap: 42px; }
.dashboard-stats div { display: grid; gap: 5px; }
.dashboard-stats strong { font-size: 25px; letter-spacing: -.07em; }
.dashboard-stats span { color: #888f87; font-size: 9px; text-transform: uppercase; }
.room-page-card { margin-top: 58px; padding: 30px; }
.room-page-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--rule-soft); }
.room-page-heading h1 { margin: 14px 0 5px; font-size: 48px; letter-spacing: -.08em; }
.room-page-heading p { margin: 0; color: #6f746e; font-size: 12px; }
.room-online { color: #398d70; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.chat-log { min-height: 360px; max-height: 560px; display: grid; align-content: start; gap: 9px; padding: 18px 0; overflow: auto; }
.chat-message { padding: 11px 13px; border: 1px solid var(--rule-soft); border-radius: 8px; background: #f8f6f2; }
.chat-message p { margin: 5px 0 0; color: var(--ink); font-size: 13px; line-height: 1.45; }
.chat-meta { color: #8a9089; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.chat-form { display: flex; gap: 9px; padding-top: 17px; border-top: 1px solid var(--rule-soft); }
.chat-form input { flex: 1; min-width: 0; padding: 0 13px; border: 1px solid #d9d5ce; border-radius: 8px; background: #fffefa; }
.profile-page { display: grid; align-content: center; gap: 22px; }
.profile-card { width: min(100%, 680px); margin: 0 auto; padding: 38px; }
.profile-heading { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.profile-heading h1 { margin: 0 0 4px; font-size: clamp(38px, 6vw, 62px); }
.profile-heading p { margin: 0; }
.profile-logo { width: 60px; height: 60px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 16px; color: #fffdfa; background: var(--ink); font-size: 26px; font-weight: 850; }
.profile-rank { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin: 30px 0 20px; padding: 18px 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.profile-rank span { color: #777a73; font-size: 11px; font-weight: 750; }
.profile-rank strong { color: var(--orange); font-size: 22px; letter-spacing: -.06em; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 26px; }
.profile-stats div { display: grid; gap: 5px; }
.profile-stats strong { font-size: 20px; letter-spacing: -.06em; }
.profile-stats span { color: #8a9089; font-size: 9px; text-transform: uppercase; }
.profile-footnote { margin-bottom: 0; font-size: 10px !important; }

/* Reference-inspired world chrome: dark blue framing and social-game overlays. */
.world-stage { border-color: #173e69; background: #123d6b; box-shadow: 0 0 0 1px rgba(18, 61, 107, .12), 0 24px 45px -25px rgba(18, 61, 107, .48); }
.world-map { filter: saturate(1.04) contrast(1.02); }
.world-vignette { background: linear-gradient(180deg, rgba(7, 31, 58, .38), transparent 21%, transparent 72%, rgba(7, 31, 58, .15)); mix-blend-mode: multiply; }
.world-topbar { position: absolute; top: max(18px, env(safe-area-inset-top, 0px)); left: max(18px, env(safe-area-inset-left, 0px)); right: max(18px, env(safe-area-inset-right, 0px)); z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; color: #fffdfa; transition: opacity .35s ease; }
.world-brand { display: flex; align-items: center; gap: 8px; text-shadow: 0 2px 8px rgba(7, 31, 58, .26); }.world-brand-mark { width: 38px; height: 38px; display: grid; place-items: center; }.world-brand strong { display: block; font-size: 20px; line-height: 1; letter-spacing: -.07em; }.world-brand .brand-dot { color: #f4be58; }
.world-online { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; color: #fffdfa; background: rgba(9, 38, 70, .78); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; box-shadow: 0 5px 14px rgba(7, 31, 58, .2); font-size: 11px; font-weight: 800; backdrop-filter: blur(8px); animation: world-online-pill 2.4s ease-out infinite; }.world-online strong { font-weight: 800; }.world-online .pulse-dot { width: 9px; height: 9px; background: #5bd17e; box-shadow: 0 0 0 4px rgba(91, 209, 126, .16); }

@media (max-width: 700px) {
  .app-page, .profile-page { width: calc(100% - 32px); padding-top: 17px; }
  .app-card, .profile-card, .room-page-card { padding: 24px 20px; }
  .app-card-form, .dashboard-grid, .room-page-card { margin-top: 32px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-main, .dashboard-action { min-height: 0; }
  .room-page-heading { display: block; }
  .room-online { display: block; margin-top: 12px; }
  .chat-form { align-items: stretch; flex-direction: column; }
  .chat-form input { min-height: 44px; }
  .profile-heading { align-items: start; flex-direction: column; }
  .profile-rank { align-items: start; flex-direction: column; gap: 8px; }
  .profile-stats { grid-template-columns: 1fr 1fr; }
  .world-topbar { top: max(10px, env(safe-area-inset-top, 0px)); left: max(10px, env(safe-area-inset-left, 0px)); right: max(10px, env(safe-area-inset-right, 0px)); }.world-brand-mark { width: 32px; height: 32px; }.world-brand strong { font-size: 16px; }.world-online { padding: 7px 9px; font-size: 9px; }}

/* Shared world-app theme for authenticated and transactional screens. */
.world-app { position: relative; min-height: 100vh; overflow-x: hidden; color: #fffdfa; background: #0f3762; }
.world-app::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(9, 37, 69, .9), rgba(15, 55, 98, .94)), url("assets/world/master-world-map-v4.webp") center / cover; opacity: .92; }
.world-destination { position: fixed; inset: 0; z-index: 30; width: 100%; height: 100svh; min-height: 100svh; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; isolation: isolate; }
.world-destination[hidden] { display: none; }
body.destination-open { overflow: hidden; }
.world-app .app-page { position: relative; z-index: 1; width: min(1120px, calc(100% - 48px)); padding-top: 30px; }
.world-app .app-page-centered { min-height: 100svh; }
.world-app .brand-dot { color: #f4be58; }.world-app .world-brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }.world-app .app-backlink { color: #c6d9e9; }.world-app .app-backlink:hover { color: #fffdfa; }
.world-app .app-card, .world-app .room-page-card, .world-app .profile-card { border-color: rgba(255, 255, 255, .5); border-radius: 18px 6px 18px 6px; background: rgba(255, 247, 232, .97); box-shadow: 0 18px 40px rgba(7, 31, 58, .28), 0 0 0 5px rgba(168, 221, 242, .12); }
.world-app .app-card h1, .world-app .profile-card h1 { color: #243536; }.world-app .app-card h1 em, .world-app .profile-card h1 em { color: #df6b53; }.world-app .app-card h2 { color: #243536; }.world-app .eyebrow { color: #df6b53; }.world-app .app-card p, .world-app .profile-card p, .world-app .section-intro { color: #52615e; }
.world-app .app-form label, .world-app .field-label { color: #48636d; }.world-app .app-form input, .world-app .app-form textarea, .world-app .app-money-input, .world-app .chat-form input { color: #243536; border-color: #b9d1d8; background: #fffdfa; }.world-app .app-form input:focus, .world-app .app-form textarea:focus, .world-app .app-money-input:focus-within, .world-app .chat-form input:focus { border-color: #e2a83c; box-shadow: 0 0 0 3px rgba(244, 190, 88, .22); }.world-app .app-money-input span { color: #5f777b; }
.world-app .button-primary { color: #123d6b; background: #f4be58; box-shadow: 0 8px 18px rgba(244, 190, 88, .26); }.world-app .button-primary:hover { color: #123d6b; background: #ffd274; }.world-app .app-status { color: #b85d4b !important; }.world-app .app-footnote, .world-app .modal-live-link { color: #668087; }
.world-app .dashboard-grid { margin-top: 32px; }.world-app .dashboard-main, .world-app .dashboard-action { min-height: 390px; }.world-app .dashboard-rank strong { color: #df6b53; }.world-app .dashboard-rank small { color: #398d70; }.world-app .dashboard-stats strong { color: #243536; }
.world-app .room-page-card { margin-top: 32px; }.world-app .room-page-heading { border-color: #cbdde0; }.world-app .room-page-heading h1 { color: #243536; }.world-app .room-page-heading p, .world-app .room-online { color: #52615e; }.world-app .room-online { color: #398d70; }.world-app .chat-message { border-color: #bdd7dc; border-radius: 13px 4px 13px 4px; background: #eaf4f5; }.world-app .chat-meta { color: #5d7a7e; }.world-app .chat-message p { color: #243536; }.world-app .chat-form { border-color: #cbdde0; }
.world-app .profile-page { gap: 18px; }.world-app .profile-heading h1 { color: #243536; }.world-app .profile-logo { color: #fffdfa; background: #123d6b; border: 3px solid #f4be58; }.world-app .profile-rank { border-color: #cbdde0; }.world-app .profile-rank span, .world-app .profile-stats span { color: #5d777b; }.world-app .profile-rank strong { color: #df6b53; }.world-app .profile-stats strong { color: #243536; }

@media (max-width: 700px) {
  .world-app .app-page { width: calc(100% - 32px); padding-top: 16px; }.world-app .app-card, .world-app .room-page-card, .world-app .profile-card { padding: 26px 20px; }.world-app .app-card h1, .world-app .profile-card h1 { font-size: clamp(42px, 12vw, 62px); }.world-app .dashboard-grid { margin-top: 22px; }.world-app .dashboard-main, .world-app .dashboard-action { min-height: 0; }.world-app .room-page-card { margin-top: 22px; }.world-app::before { background-position: 58% center; opacity: .78; }
}

/* Map interactions stay aligned to the artwork while the viewport crops around it. */
.world-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; transition: transform .65s cubic-bezier(.22, 1, .36, 1); }
.world-canvas .world-map { z-index: 0; width: 100%; height: 100%; inset: 0; transform: none; }
.world-only .world-canvas .world-map { inset: 0; width: 100%; min-width: 0; height: 100%; transform: none; object-fit: fill; }
.world-canvas .world-landmark { position: absolute; z-index: 1; display: block; width: 25%; height: auto; cursor: pointer; filter: drop-shadow(0 8px 10px rgba(7, 31, 58, .18)); transition: transform .18s ease, filter .18s ease; touch-action: manipulation; }
.world-canvas .world-landmark:hover, .world-canvas .world-landmark:focus-visible { transform: translateY(-2px); filter: drop-shadow(0 11px 14px rgba(7, 31, 58, .26)); }
.world-canvas .world-landmark:focus-visible { outline: none; }
.world-canvas .landmark-top10 { top: -1%; left: 40%; width: 22%; }
.world-canvas .landmark-mid { top: 19%; left: 13%; width: 18%; }
.world-canvas .landmark-low { top: 18%; left: 69%; width: 18%; }
.world-canvas .landmark-rankings { top: 44%; left: 7%; width: 18%; }
.world-canvas .landmark-stage { top: 37%; left: 75%; width: 22%; }
.world-canvas .landmark-market { top: 56%; left: 34.5%; width: 31%; }
.world-canvas .landmark-floor { top: 28%; left: 40%; width: 20%; }
.world-canvas .world-vignette { z-index: 1; }
.world-canvas .world-blimp-ad { position: absolute; top: 7%; left: 76%; z-index: 2; width: 17%; height: auto; padding: 0; border: 0; appearance: none; background: transparent; cursor: pointer; font: inherit; filter: drop-shadow(0 8px 10px rgba(7, 31, 58, .18)); transition: transform .18s ease, filter .18s ease; touch-action: manipulation; }
.world-canvas .world-blimp-ad img { display: block; width: 100%; height: auto; }
.world-canvas .world-blimp-ad:hover, .world-canvas .world-blimp-ad:focus-visible { transform: translateY(-2px); filter: drop-shadow(0 11px 14px rgba(7, 31, 58, .26)); }
.world-canvas .world-blimp-ad:focus-visible { outline: none; }
.world-help-bubble:focus-visible { outline: 2px solid #f4be58; outline-offset: 3px; }
.world-profile-control { position: absolute; left: max(18px, env(safe-area-inset-left, 0px)); bottom: max(18px, env(safe-area-inset-bottom, 0px)); z-index: 4; width: clamp(180px, 19.5vw, 250px); display: block; line-height: 0; filter: drop-shadow(0 7px 10px rgba(7, 31, 58, .34)); transition: transform .18s ease, filter .18s ease, opacity .35s ease; }
.world-profile-control:hover, .world-profile-control:focus-visible { transform: translateY(-3px); filter: drop-shadow(0 10px 14px rgba(7, 31, 58, .42)); outline: none; }
.world-profile-control:focus-visible { border-radius: 999px; box-shadow: 0 0 0 3px #f4be58; }
.world-profile-art { display: block; width: 100%; height: auto; }
.world-profile-avatar { position: absolute; top: 29.4%; left: 15.45%; width: 17.9%; aspect-ratio: 1; border-radius: 50%; object-fit: cover; }
.world-profile-avatar[hidden] { display: none; }
.world-online .pulse-dot { animation: world-online-pulse 1.85s ease-out infinite; }
@keyframes world-online-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91, 209, 126, .12); transform: scale(1); }
  45% { box-shadow: 0 0 0 8px rgba(91, 209, 126, 0); transform: scale(1.12); }
}
@keyframes world-online-pill {
  0%, 100% { box-shadow: 0 5px 14px rgba(7, 31, 58, .2); border-color: rgba(255, 255, 255, .12); }
  50% { box-shadow: 0 6px 18px rgba(91, 209, 126, .3); border-color: rgba(91, 209, 126, .45); }
}

.world-help-bubble { position: absolute; right: max(18px, env(safe-area-inset-right, 0px)); bottom: max(18px, env(safe-area-inset-bottom, 0px)); z-index: 4; display: inline-flex; align-items: center; gap: 9px; min-width: 154px; min-height: 44px; padding: 9px 11px 9px 9px; color: #243536; background: rgba(255, 253, 250, .95); border: 1px solid rgba(36, 53, 54, .14); border-radius: 13px 13px 3px 13px; box-shadow: 0 8px 18px rgba(7, 31, 58, .2); text-align: left; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, opacity .35s ease; backdrop-filter: blur(9px); }
.world-help-bubble:hover, .world-help-bubble:focus-visible { background: #fffdfa; box-shadow: 0 12px 25px rgba(7, 31, 58, .28); transform: translateY(-3px); outline: none; }
.world-help-icon { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; color: #123d6b; background: #f4be58; border-radius: 50%; font-size: 14px; font-weight: 900; }
.world-help-bubble strong, .world-help-bubble small { display: block; }.world-help-bubble strong { font-size: 11px; letter-spacing: -.03em; }.world-help-bubble small { margin-top: 2px; color: #6b7d7c; font-size: 8px; }.world-help-arrow { margin-left: auto; color: #df674d; font-size: 15px; font-weight: 900; }
.world-help-panel { position: absolute; right: 18px; bottom: 18px; z-index: 5; width: min(290px, calc(100% - 36px)); padding: 21px 21px 18px; color: #243536; background: #fff7e8; border: 1px solid rgba(255, 255, 255, .7); border-radius: 17px 5px 17px 17px; transition: opacity .35s ease; box-shadow: 0 18px 38px rgba(7, 31, 58, .32), 0 0 0 4px rgba(168, 221, 242, .13); }
.world-help-panel[hidden] { display: none; }.world-help-close { position: absolute; top: 9px; right: 10px; width: 26px; height: 26px; color: #668087; background: transparent; border-radius: 50%; font-size: 21px; line-height: 1; }.world-help-close:hover, .world-help-close:focus-visible { color: #243536; background: #f1dfbd; outline: none; }
.world-help-close:focus-visible { outline: 2px solid #df674d; outline-offset: 2px; }
.world-help-kicker { display: flex; align-items: center; gap: 7px; color: #df674d; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.world-help-kicker .live-dot { width: 5px; height: 5px; background: #5bd17e; }.world-help-panel h2 { max-width: 220px; margin: 11px 0 15px; color: #243536; font-size: 27px; line-height: .95; letter-spacing: -.07em; }.world-help-panel ol { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; counter-reset: tour-step; }.world-help-panel li { display: grid; grid-template-columns: 23px 1fr; column-gap: 8px; align-items: start; counter-increment: tour-step; }.world-help-panel li::before { content: counter(tour-step); width: 21px; height: 21px; display: grid; place-items: center; color: #123d6b; background: #a8ddf2; border-radius: 50%; font-size: 9px; font-weight: 900; }.world-help-panel li strong, .world-help-panel li span { display: block; }.world-help-panel li strong { font-size: 10px; }.world-help-panel li span { margin-top: 2px; color: #668087; font-size: 9px; line-height: 1.3; }
.world-brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.world-help-panel li::before { grid-row: 1 / span 2; }.world-help-panel li strong, .world-help-panel li span { grid-column: 2; }



/* Blimp sponsorship: zoom the camera into the blimp, then raise the sponsor surface. */
.world-stage.is-zooming .world-topbar,
.world-stage.is-zooming .world-profile-control,
.world-stage.is-zooming .world-help-bubble,
.world-stage.is-zooming .world-help-panel { opacity: 0; pointer-events: none; }
.world-fade { position: absolute; inset: 0; z-index: 9; pointer-events: none; background: #0f3762; opacity: 0; transition: opacity .35s ease; }
.world-stage.is-entering .world-fade { opacity: 1; }
.blimp-sponsor-backdrop { background: rgba(4, 22, 42, .5); }
.sponsor-dialog { position: relative; width: min(100%, 400px); padding: 26px; color: var(--ink); background: #fffdfa; border: 1px solid #e7e3dd; border-radius: 18px; box-shadow: 0 26px 70px rgba(4, 22, 42, .34); transform: translateY(12px) scale(.96); opacity: 0; transition: transform 260ms var(--ease-out), opacity 260ms ease-out; }
.blimp-sponsor-backdrop.is-open .sponsor-dialog { transform: translateY(0) scale(1); opacity: 1; }
.sponsor-dialog h2 { margin: 0; padding-right: 28px; color: var(--ink); font-size: 22px; letter-spacing: -.04em; }
.sponsor-price { margin: 3px 0 18px; color: var(--orange); font-size: 15px; font-weight: 750; letter-spacing: -.02em; }
.sponsor-price span { color: #8a9089; font-size: 11px; font-weight: 700; }
.sponsor-form { display: grid; gap: 10px; }
.sponsor-copy { margin: 0 0 12px; color: #52615e; font-size: 12px; line-height: 1.5; }
.sponsor-example { position: relative; margin: 0 0 14px; aspect-ratio: 16 / 9; border: 1px solid #e7e3dd; border-radius: 12px; overflow: hidden; background: #fff; }
.sponsor-example img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.sponsor-example img.is-active { opacity: 1; }
.sponsor-example-progress { position: absolute; right: 10px; bottom: 10px; width: 22px; height: 22px; pointer-events: none; }
.sponsor-example-progress svg { display: block; width: 22px; height: 22px; transform: rotate(-90deg); }
.sponsor-example-progress circle { fill: none; stroke-width: 5; }
.sponsor-example-progress-track { stroke: rgba(4, 22, 42, .16); }
.sponsor-example-progress-ring { stroke: #f4be58; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; }
.sponsor-note { margin: 12px 0 0; color: #8a9089; font-size: 11px; line-height: 1.45; text-align: center; }
.sponsor-note a { color: var(--orange); font-weight: 700; }
.sponsor-input { width: 100%; height: 46px; padding: 0 13px; color: var(--ink); border: 1px solid #d9d5ce; border-radius: 10px; background: #fffdfa; outline: 0; font-size: 14px; font-weight: 600; }
.sponsor-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(229, 106, 71, .14); }
.sponsor-error { margin: 0; color: #b85d4b; font-size: 11px; font-weight: 700; }
@media (max-width: 700px) { .sponsor-dialog { padding: 26px 20px; } }

@media (max-width: 700px) {
  .world-canvas { inset: 0 auto auto 50%; width: max(100%, 177.63svh); height: 100%; aspect-ratio: 1672 / 941; transform: translateX(-50%); }
  .world-only .world-profile-control { left: max(8px, env(safe-area-inset-left, 0px)); bottom: max(10px, env(safe-area-inset-bottom, 0px)); width: clamp(132px, 38vw, 168px); }
  .world-only .world-help-bubble { right: max(10px, env(safe-area-inset-right, 0px)); bottom: max(10px, env(safe-area-inset-bottom, 0px)); min-width: 44px; width: 44px; height: 44px; justify-content: center; gap: 0; padding: 0; border-radius: 13px 13px 3px 13px; }
  .world-only .world-help-bubble > span:not(.world-help-icon) { display: none; }
  .world-only .world-help-icon { width: 28px; height: 28px; }
  .world-only .world-help-panel { right: max(10px, env(safe-area-inset-right, 0px)); bottom: max(10px, env(safe-area-inset-bottom, 0px)); width: min(290px, calc(100vw - 20px)); }
  .world-only .world-online span:last-child { font-size: 0; }
  .world-only .world-online span:last-child strong { font-size: 9px; }
}

/* Compact game chrome on phones held sideways and other short viewports. */
@media (max-height: 500px) and (orientation: landscape) {
  .world-topbar { top: max(8px, env(safe-area-inset-top, 0px)); left: max(10px, env(safe-area-inset-left, 0px)); right: max(10px, env(safe-area-inset-right, 0px)); }
  .world-brand-mark { width: 28px; height: 28px; }
  .world-brand strong { font-size: 14px; }
  .world-online { padding: 6px 9px; font-size: 9px; }
  .world-profile-control { left: max(8px, env(safe-area-inset-left, 0px)); bottom: max(8px, env(safe-area-inset-bottom, 0px)); width: clamp(128px, 20vw, 158px); }
  .world-help-bubble { right: max(8px, env(safe-area-inset-right, 0px)); bottom: max(8px, env(safe-area-inset-bottom, 0px)); min-width: 44px; width: 44px; height: 44px; justify-content: center; gap: 0; padding: 0; }
  .world-help-bubble > span:not(.world-help-icon) { display: none; }
  .world-help-panel { right: max(8px, env(safe-area-inset-right, 0px)); bottom: max(8px, env(safe-area-inset-bottom, 0px)); max-height: calc(100svh - 16px); overflow-y: auto; }
}

/* Keep the artwork and its interactive cards on the same fixed-ratio coordinate plane. */
.world-only .world-canvas { inset: 50% auto auto 50%; width: max(100%, calc(100svh * 1.7768)); height: max(100%, calc(100vw * .5628)); transform: translate(-50%, -50%) scale(1.006); }

/* Entered rooms use a distinct interior per room while keeping the same world frame and paper UI. */
.world-app.room-world::before { background-image: linear-gradient(180deg, rgba(7, 31, 58, .42), rgba(15, 55, 98, .3)), var(--room-background-image, url("assets/world/master-world-map-v4.webp")); background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 1; }
.room-world .room-page-card { width: min(100%, 960px); max-width: 960px; margin-inline: auto; border-color: rgba(255, 255, 255, .62);}
.room-world .room-access { display: inline-block;border-radius: 999px; color: #398d70;font-weight: 800; text-transform: uppercase;}

/* Quiet room chrome: the artwork leads, the room controls stay compact. */
.room-world .app-page { width: min(1060px, calc(100% - 40px)); padding-top: 20px; }
.room-world .room-page-card { margin-top: 78px; padding: clamp(22px, 3vw, 32px); border-radius: 16px 5px 16px 5px; background: rgba(255, 247, 232, .78); box-shadow: 0 18px 36px rgba(7, 31, 58, .22); backdrop-filter: blur(5px); }
.room-world .room-page-heading { gap: 16px; padding-bottom: 16px; }
.room-world .room-page-heading h1 { margin: 9px 0 4px; font-size: clamp(38px, 6vw, 58px); }
.room-world .room-page-heading p { font-size: 11px; }
.room-world .room-access { margin-top: 8px; padding: 0; border: 0; background: transparent; font-size: 8px; letter-spacing: .08em; }
.room-world .chat-log { min-height: 350px; padding: 16px 0; border-radius: 9px 3px 9px 3px; background: rgba(255, 253, 250, .16); }
.room-world .chat-message { background: rgba(234, 244, 245, .78); }
.room-world .chat-form { padding-top: 14px; border-top: 0; }
.room-world .chat-form input, .room-world .chat-form .button { min-height: 44px; }
.room-world .chat-form input { border-radius: 9px; }
.room-world .chat-form .button { border-radius: 9px; }

@media (max-width: 700px) {
  .room-world .app-page { width: calc(100% - 28px); padding-top: 14px; }
  .room-world .room-page-card { margin-top: 64px; padding: 20px 16px; }
  .room-world .chat-log { min-height: 300px; }
}

/* Landmark scenes keep the same world frame while giving each destination its own artwork. */
.scene-world::before { background-image: linear-gradient(180deg, rgba(7, 31, 58, .22), rgba(15, 55, 98, .3)), var(--scene-background-image, url("assets/world/master-world-map-v4.webp")); background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 1; }
.scene-world .scene-page { width: min(1120px, calc(100% - 48px)); min-height: 100svh; display: flex; flex-direction: column; padding-top: 18px; }
.scene-world .world-topbar { position: relative; top: auto; left: auto; right: auto; align-items: center; }
.scene-world .world-brand { color: inherit; }
.scene-back-button { position: fixed; left: max(20px, env(safe-area-inset-left, 0px)); bottom: max(16px, env(safe-area-inset-bottom, 0px)); z-index: 5; width: clamp(150px, 15.5vw, 198px); aspect-ratio: 1816 / 866; height: auto; display: inline-flex; align-items: center; justify-content: center; padding: 0; color: #fffdfa; background: transparent; filter: drop-shadow(0 7px 10px rgba(7, 31, 58, .34)); transition: transform .18s ease, filter .18s ease; }
.scene-back-button img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; }
.scene-back-button:hover, .scene-back-button:focus-visible { transform: translateY(-3px); filter: drop-shadow(0 10px 14px rgba(7, 31, 58, .42)); }
.scene-back-button:focus-visible { outline: none; }
/* Stage launches sit directly inside the venue's illustrated screens. */
.stage-screens { position: fixed; inset: 50% auto auto 50%; width: max(100vw, calc(100svh * 1.7768)); height: max(100svh, calc(100vw * .5628)); transform: translate(-50%, -50%); z-index: 1; pointer-events: none; }
.stage-screen { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: #123d6b; background: rgba(255, 253, 250, .86); text-align: center; text-shadow: 0 1px rgba(255, 255, 255, .7); }
.stage-screen-main { top: 13.1%; left: 34.4%; width: 31.8%; height: 24.7%; padding: 2% 5%; }
.stage-screen-side { top: 22.8%; width: 7.5%; height: 14.9%; padding: 1.5%; }
.stage-screen-side-left { left: 24.2%; }
.stage-screen-side-right { left: 68.4%; }
.stage-screen-kicker { color: #e86f52; font-size: clamp(7px, .65vw, 11px); font-weight: 850; letter-spacing: .08em; line-height: 1.1; text-transform: uppercase; }
.stage-screen-rank { margin-top: 3px; color: #e86f52; font-size: clamp(9px, 1vw, 15px); font-weight: 850; }
.stage-screen h2 { margin: 4px 0 3px; color: #123d6b; font-size: clamp(17px, 2.2vw, 34px); line-height: .95; letter-spacing: -.06em; }
.stage-screen p { max-width: 90%; margin: 0; color: #496776; font-size: clamp(8px, .8vw, 13px); line-height: 1.2; }
.stage-screen-score { margin-top: 7px; color: #398d70; font-size: clamp(7px, .7vw, 11px); letter-spacing: .03em; text-transform: uppercase; }
.stage-screen-side h2 { margin-top: 7px; font-size: clamp(11px, 1.15vw, 18px); }
.stage-screen-side .stage-screen-score { margin-top: 2px; font-size: clamp(6px, .6vw, 10px); }
.stage-screen-ad { position: absolute; top: 22.3%; width: 5.9%; height: 16.9%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 1%; color: #123d6b; background: rgba(255, 253, 250, .78); pointer-events: auto; text-align: center; text-shadow: 0 1px rgba(255, 255, 255, .7); }
.stage-screen-ad-left { left: 1.5%; }
.stage-screen-ad-right { left: 92.4%; }
.stage-screen-ad span { color: #e86f52; font-size: clamp(6px, .55vw, 9px); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.stage-screen-ad strong { max-width: 100%; font-size: clamp(8px, .8vw, 13px); line-height: 1.05; }
.stage-screen-ad:hover, .stage-screen-ad:focus-visible { background: rgba(255, 253, 250, .95); }
.stage-screen-ad:focus-visible { outline: none; }

/* Rankings are data UI layered over the generated hall, never baked into the artwork. */
.rankings-overlay { width: min(100%, 1160px); margin: 22px auto 0; padding: 16px 26px 24px; color: #292827; border: 1px solid rgba(221, 214, 207, .86); border-radius: 24px 24px 8px 8px; background: rgba(255, 253, 250, .96); box-shadow: 0 20px 60px rgba(7, 31, 58, .2); }
.rankings-filter { width: max-content; display: flex; align-items: center; gap: 7px; margin: 0 auto; padding: 3px; color: #e86f52; border: 1px solid #e3d9d2; border-radius: 999px; font-size: 13px; font-weight: 750; }
.rankings-filter-active { padding: 6px 14px; color: #fffdfa; border-radius: 999px; background: #e86f52; }
.rankings-filter-dot { width: 7px; height: 7px; margin-left: 4px; border-radius: 50%; background: #ed8d73; box-shadow: 0 0 0 3px #fae8e2; }
.rankings-filter > span:last-child { padding: 6px 12px 6px 0; }
.rankings-overlay > h1 { margin: 30px 0 24px; color: #292827; text-align: center; font-size: clamp(36px, 5vw, 56px); line-height: .95; letter-spacing: -.07em; }
.rankings-price { color: #e86f52; }
.ranking-claim-form { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(180px, .7fr) auto; gap: 10px; max-width: 1060px; margin: 0 auto 30px; }
.ranking-input-wrap, .ranking-select-wrap { height: 44px; display: flex; align-items: center; gap: 10px; padding: 0 13px; color: #8b8884; border: 1px solid #e3ddd7; border-radius: 999px; background: #fffdfa; }
.ranking-input-wrap input, .ranking-select-wrap select { width: 100%; min-width: 0; color: #6b6864; border: 0; outline: 0; background: transparent; font-size: 14px; }
.ranking-select-wrap select { cursor: pointer; }
.ranking-claim-button { min-width: 120px; color: #fffdfa; border-radius: 999px; background: #f2ad9c; }
.ranking-claim-button:hover { color: #fffdfa; background: #e88b76; transform: translateY(-1px); }
.rankings-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 26px; align-items: start; }
.rankings-list { display: grid; gap: 12px; }
.ranking-row { min-height: 86px; display: grid; grid-template-columns: 42px 60px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #e8e0da; border-radius: 0; }
.ranking-row-featured { border-radius: 22px; background: #fce9e3; }
.ranking-row:nth-child(2) { background: #fff4f0; }
.ranking-row:nth-child(2), .ranking-row:nth-child(3) { border-radius: 22px; }
.ranking-number { color: #686561; font-size: 16px; font-weight: 800; }
.ranking-row-featured .ranking-number { color: #e86f52; }
.ranking-logo { width: 60px; height: 60px; display: grid; place-items: center; overflow: hidden; border: 2px solid rgba(244, 190, 88, .7); border-radius: 15px; color: #fffdfa; font-size: 23px; font-weight: 850; box-shadow: inset 0 0 0 3px rgba(255, 253, 250, .12); }
.ranking-logo img { width: 78%; height: 78%; object-fit: contain; }
.ranking-copy { min-width: 0; }
.ranking-copy h2 { margin: 0 0 4px; overflow: hidden; color: #2c2a28; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -.02em; }
.ranking-copy p { margin: 0 0 5px; overflow: hidden; color: #938d88; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.ranking-copy small { display: block; overflow: hidden; color: #77736e; font-size: 10px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.ranking-bid { align-self: start; padding-top: 5px; color: #e86f52; font-size: 16px; white-space: nowrap; }
.today-rankings { padding-top: 4px; }
.today-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.today-heading h2 { margin: 0; color: #2c2a28; font-size: 15px; letter-spacing: -.02em; }
.today-heading a { color: #e86f52; font-size: 11px; font-weight: 750; }
.today-live-dot { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: #ed795f; box-shadow: 0 0 0 3px #fbe7e0; }
.today-row { min-width: 0; display: grid; grid-template-columns: 24px 29px minmax(0, 1fr) auto; align-items: center; gap: 7px; min-height: 40px; }
.today-number { color: #6e6a66; font-size: 11px; font-weight: 750; }
.ranking-logo-compact { width: 27px; height: 27px; border-radius: 8px; font-size: 11px; }
.ranking-logo-compact img { width: 82%; height: 82%; }
.today-name { min-width: 0; overflow: hidden; color: #302e2c; font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.today-name small { color: #928c86; font-size: 10px; font-weight: 500; }
.today-row strong { color: #e86f52; font-size: 11px; }

@media (max-width: 700px) {
  .scene-world .scene-page { width: calc(100% - 28px); padding-top: 12px; }
  .scene-back-button { left: max(8px, env(safe-area-inset-left, 0px)); bottom: max(10px, env(safe-area-inset-bottom, 0px)); width: clamp(126px, 36vw, 150px); height: auto; }
  .rankings-overlay { margin-top: 14px; padding: 14px 12px 18px; border-radius: 18px 18px 6px 6px; }
  .rankings-overlay > h1 { margin: 24px 0 18px; font-size: clamp(32px, 10vw, 46px); }
  .ranking-claim-form { grid-template-columns: 1fr; margin-bottom: 22px; }
  .ranking-claim-button { width: 100%; }
  .rankings-layout { grid-template-columns: 1fr; gap: 24px; }
  .ranking-row { grid-template-columns: 30px 48px minmax(0, 1fr) auto; gap: 8px; padding: 10px 8px; }
  .ranking-logo { width: 48px; height: 48px; border-radius: 12px; }
  .ranking-copy h2 { font-size: 14px; }
  .ranking-copy p { font-size: 11px; }
  .ranking-bid { font-size: 13px; }
}

/* cuelume interaction-sound toggle: inherits the surrounding chrome so it reads on both the
   light marketing header and the dark in-world topbar. */
.sound-toggle { display: inline-grid; place-items: center; flex: 0 0 auto; width: 36px; height: 36px; padding: 0; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 50%; opacity: .72; cursor: pointer; transition: opacity .18s ease, transform .18s var(--ease-out), background-color .18s ease; }
.sound-toggle:hover { opacity: 1; transform: translateY(-1px); }
.sound-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.sound-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sound-toggle svg .speaker { fill: currentColor; stroke: none; }
.sound-toggle-off { display: none; }
html[data-sound="off"] .sound-toggle { opacity: .45; }
html[data-sound="off"] .sound-toggle-on { display: none; }
html[data-sound="off"] .sound-toggle-off { display: block; }
.world-topbar-status { display: flex; align-items: center; gap: 8px; }
.topbar-actions .sound-toggle { margin-left: 8px; }
@media (max-width: 700px) {
  .sound-toggle { width: 32px; height: 32px; }
  .sound-toggle svg { width: 16px; height: 16px; }
}
