@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/syne-500.ttf") format("truetype");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/syne-600.ttf") format("truetype");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/syne-700.ttf") format("truetype");
}

:root {
  --ds-black: #000000;
  --ds-white: #ffffff;
  --ds-bg: #1c1d20;
  --top-offset: clamp(20px, 1.9608vw, 32px);
  --side-offset: clamp(20px, 1.9608vw, 32px);
  --bottom-offset: clamp(20px, 1.9608vw, 32px);
  --pill-transition: 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--ds-bg);
  color: var(--ds-white);
  font-family: "Syne", Arial, sans-serif;
  overflow: hidden;
}

body.is-canvas-panning {
  user-select: none;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  background: var(--ds-bg);
  overflow: hidden;
}

.infinite-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.stage.is-hand-mode .infinite-canvas,
.stage.is-hand-mode .canvas-world,
.stage.is-hand-mode .canvas-world * {
  cursor: grab;
}

.stage.is-panning .infinite-canvas,
.stage.is-panning .canvas-world,
.stage.is-panning .canvas-world * {
  cursor: grabbing;
}

.canvas-world {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 0;
  pointer-events: none;
  transform-origin: 0 0;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.stage.is-canvas-loading .canvas-world {
  visibility: hidden;
}

.landing-copy {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min-content;
  color: var(--ds-white);
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  gap: 24px;
}

.landing-title,
.landing-subtitle,
.landing-meta {
  margin: 0;
  color: inherit;
  font-feature-settings: "dlig" 1, "onum" 1, "tnum" 1;
  letter-spacing: 0;
}

.landing-title {
  font-size: 128px;
  font-weight: 700;
  line-height: 128px;
  white-space: nowrap;
}

.landing-subtitle {
  width: 673px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-wrap: balance;
}

.landing-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.landing-meta-icon {
  display: block;
  width: 15px;
  height: 20px;
  flex: 0 0 auto;
}

.evidence-map {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.evidence-map-thesis {
  z-index: 4;
}

.ds-cluster-title {
  position: absolute;
  z-index: 4;
  max-width: 1200px;
  margin: 0;
  color: var(--ds-white);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 64px;
  pointer-events: none;
  white-space: nowrap;
}

.canvas-data-error {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  padding: 32px;
  background: #232527;
  border-radius: 0 24px 24px;
  color: var(--ds-white);
  pointer-events: auto;
}

.canvas-data-error h1,
.canvas-data-error p {
  margin: 0;
}

.canvas-data-error h1 {
  font-size: 24px;
  line-height: 32px;
}

.canvas-data-error p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.cards-library {
  position: absolute;
  top: -726.5px;
  left: -848px;
  width: 1696px;
  height: 1453px;
  pointer-events: none;
}

.connection-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.trezor-ring-debug {
  position: absolute;
  z-index: 0;
  border: 4px solid #ff1f1f;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.safe-zone-debug,
.ds-ring-debug {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.safe-zone-debug {
  border: 2px solid rgba(255, 31, 31, 0.65);
  background: rgba(255, 31, 31, 0.18);
}

.ds-ring-debug {
  border: 2px solid rgba(42, 91, 255, 0.9);
}

.connection-line {
  stroke: #969696;
  stroke-opacity: 0.3;
  stroke-linecap: round;
  stroke-width: 4px;
  transition:
    stroke var(--pill-transition),
    stroke-opacity var(--pill-transition);
}

.connection-line.is-connection-active {
  stroke: #fffb00;
  stroke-opacity: 1;
}

.debug-card-number {
  position: absolute;
  z-index: 3;
  top: -18px;
  left: 0;
  min-width: 42px;
  padding: 4px 8px;
  background: #fffb00;
  border: 1px solid rgb(0 0 0 / 22%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 12px;
  pointer-events: none;
  text-align: center;
}

.evidence-card {
  position: absolute;
  top: var(--card-y);
  left: var(--card-x);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ds-white);
  pointer-events: auto;
}

.evidence-card:hover,
.evidence-card:focus-within {
  z-index: 5;
}

.evidence-card[data-card-type="text"],
.evidence-card[data-card-type="text-image"],
.evidence-card[data-card-type="text-image-ext"],
.evidence-card[data-card-type="image"],
.evidence-card[data-card-type="achievement"],
.evidence-card[data-card-type="metric"],
.evidence-card[data-card-type="quote"],
.evidence-card[data-card-type="map"],
.evidence-card[data-card-type="link"] {
  width: 320px;
}

.evidence-card[data-card-type="big-image"],
.evidence-card[data-card-type="big-map"] {
  width: 664px;
}

.evidence-card[data-card-type="timeline"] {
  width: 1008px;
}

.evidence-card[data-card-type="badge"] {
  width: max-content;
  max-width: 320px;
}

.card-badge .card-shell {
  width: max-content;
  max-width: 320px;
}

.card-badge .card-headline {
  width: auto;
  max-width: 256px;
}

.card-connector {
  position: relative;
  width: 109px;
  height: 48px;
  flex: 0 0 48px;
}

.evidence-card[data-connection-state="no"] .card-connector {
  width: 72px;
}

.connector-shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: filter var(--pill-transition);
}

.connector-shape-no {
  width: 72px;
}

.connector-affiliation,
.connector-node {
  position: absolute;
  top: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.connector-affiliation {
  left: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333638;
  color: var(--ds-white);
  transition: background-color var(--pill-transition);
}

.evidence-card[data-connection-state="no"] .connector-affiliation {
  left: 8px;
}

.connector-node {
  left: 45px;
  background: #181a1c;
  transition: background-color var(--pill-transition);
}

.connector-node::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  content: "";
  background: #969696;
  border-radius: 50%;
  transition:
    background-color var(--pill-transition),
    box-shadow var(--pill-transition);
}

.evidence-card.is-connection-active .connector-node::after {
  background: #fffb00;
}

.connector-affiliation-mark {
  display: block;
  flex: 0 0 auto;
}

.connector-affiliation-mark-ds {
  width: 20px;
  height: 7px;
}

.connector-affiliation-mark-trezor {
  width: 11px;
  height: 16px;
}

.card-shell {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #232527;
  border-radius: 0 24px 24px;
  transition:
    background-color var(--pill-transition),
    filter var(--pill-transition),
    opacity var(--pill-transition);
}

.evidence-card[data-connection-state="hover"] .card-shell,
.evidence-card:hover .card-shell {
  background: #292c2e;
}

.evidence-card[data-connection-state="hover"] .connector-shape,
.evidence-card:hover .connector-shape {
  filter: brightness(1.16);
}

.evidence-card[data-connection-state="hover"] .connector-affiliation,
.evidence-card:hover .connector-affiliation {
  background: #3d4042;
}

.evidence-card[data-connection-state="hover"] .connector-node,
.evidence-card:hover .connector-node {
  background: #202326;
}

.evidence-card[data-connection-state="no"] .card-shell {
  opacity: 0.92;
}

.card-headline,
.card-metric,
.card-body-copy,
.card-caption,
.card-list,
.card-link-button,
.card-headline p,
.card-body-copy p {
  margin: 0;
  letter-spacing: 0;
  font-feature-settings: "dlig" 1, "onum" 1, "tnum" 1;
}

.card-headline {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.card-metric {
  width: 100%;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
}

.card-body-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.card-caption {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.card-divider {
  width: 100%;
  height: 1px;
  flex: 0 0 1px;
  background: rgb(255 255 255 / 10%);
}

.card-media {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.card-media-square {
  aspect-ratio: 1 / 1;
}

.card-media-big {
  width: 600px;
  height: 447px;
}

.achievement-mark {
  display: block;
  width: 256px;
  height: 227px;
}

.quote-mark {
  display: block;
  width: 85px;
  height: 64px;
}

.card-quote blockquote {
  margin: 0;
}

.map-frame {
  position: relative;
  width: 256px;
  height: 256px;
  overflow: hidden;
  background: #dce5e8;
  border-radius: 24px;
}

.map-frame-big {
  width: 600px;
  height: 447px;
}

.map-frame.leaflet-container {
  font-family: inherit;
}

.map-frame .leaflet-control-attribution {
  background: rgb(255 255 255 / 78%);
  color: #333638;
  font-size: 8px;
  line-height: 12px;
}

.map-frame .leaflet-control-attribution a {
  color: #333638;
}

.map-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgb(220 229 232 / 40%), rgb(198 209 214 / 86%)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgb(78 96 105 / 18%) 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgb(78 96 105 / 18%) 24px);
  color: #1c1d20;
  gap: 4px;
}

.map-card-fallback strong,
.map-card-fallback span {
  display: block;
}

.map-card-fallback strong {
  font-size: 14px;
  line-height: 18px;
}

.map-card-fallback span {
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
}

.map-card-marker {
  background: transparent;
  border: 0;
}

.map-card-marker-pin {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  background: #d83f35;
  border: 3px solid var(--ds-white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 12px rgb(0 0 0 / 28%);
  transform: rotate(-45deg);
}

.map-card-marker-pin::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  content: "";
  background: #8f1f19;
  border-radius: 50%;
}

.card-link-shell {
  max-width: 320px;
  padding: 8px;
}

.card-link-button {
  display: flex;
  width: 304px;
  height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: var(--ds-black);
  border-radius: 256px;
  color: var(--ds-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition:
    background-color var(--pill-transition),
    color var(--pill-transition);
}

.card-link-button:hover,
.card-link-button:focus-visible {
  background: var(--ds-white);
  color: var(--ds-black);
  outline: none;
}

.card-link-arrow {
  display: block;
  width: 16px;
  height: 16px;
  transform-origin: center;
  transition:
    filter var(--pill-transition),
    transform var(--pill-transition);
}

.card-link-button:hover .card-link-arrow,
.card-link-button:focus-visible .card-link-arrow {
  filter: invert(1);
  transform: rotate(45deg);
}

.timeline-shell {
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
}

.timeline-column {
  display: flex;
  min-width: 0;
  flex: 1 0 0;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.card-list {
  width: 100%;
  padding-left: 21px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.card-list li {
  margin: 0;
}

.corner {
  position: fixed;
  z-index: 3;
}

.corner-top-left {
  top: var(--top-offset);
  left: var(--side-offset);
}

.corner-top-right {
  top: var(--top-offset);
  right: var(--side-offset);
}

.corner-bottom-left {
  bottom: var(--bottom-offset);
  left: var(--side-offset);
}

.corner-bottom-right {
  right: var(--side-offset);
  bottom: var(--bottom-offset);
}

.brand-pill,
.profile-pill,
.stack-pill,
.info-pill,
.game-controls,
.control-button,
.zoom-pill {
  display: flex;
  align-items: center;
  border-radius: 256px;
}

.control-button,
.zoom-pill,
.info-pill {
  appearance: none;
  border: 0;
  background: var(--ds-black);
  color: var(--ds-white);
  cursor: pointer;
  font-family: inherit;
  transition:
    background-color var(--pill-transition),
    color var(--pill-transition);
}

.brand-pill {
  gap: 16px;
  height: 48px;
  min-height: 48px;
  padding: 8px 24px;
  background: var(--ds-black);
  color: var(--ds-white);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
}

.brand-logo-ds {
  width: 45px;
  height: 16px;
}

.brand-logo-trezor {
  width: 71px;
  height: 18px;
}

.brand-logo-satoshilabs {
  width: 88px;
  height: 20px;
}

.brand-cross {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

.brand-cross::before,
.brand-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 32px;
  content: "";
  background: #434343;
  transform-origin: center;
}

.brand-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.divider {
  width: 1px;
  height: 32px;
  background: rgb(255 255 255 / 30%);
}

.game-controls {
  gap: 8px;
}

.control-button,
.zoom-pill {
  justify-content: center;
}

.control-button {
  width: 32px;
  height: 32px;
  padding: 0;
}

.control-button-hand .control-icon {
  width: 11px;
  height: 12px;
}

.control-icon {
  display: block;
  width: 12px;
  height: 12px;
  transition: filter var(--pill-transition);
}

.control-button.is-active {
  background: var(--ds-white);
  color: var(--ds-black);
}

.control-button.is-active .control-icon {
  filter: invert(1);
}

.zoom-control {
  position: relative;
}

.zoom-pill {
  min-width: 64px;
  height: 32px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}

.zoom-pill.is-active {
  background: var(--ds-white);
  color: var(--ds-black);
}

.zoom-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 4;
  min-width: 188px;
  padding: 8px;
  background: var(--ds-black);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgb(0 0 0 / 48%);
}

.zoom-menu-item {
  appearance: none;
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  background: transparent;
  border-radius: 10px;
  color: var(--ds-white);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
  transition: background-color var(--pill-transition);
}

.zoom-menu-shortcut {
  color: rgb(255 255 255 / 82%);
  font-weight: 600;
  white-space: nowrap;
}

.profile-pill {
  display: inline-flex;
  gap: 16px;
  min-height: 48px;
  padding: 8px 24px;
  background: var(--ds-black);
  color: var(--ds-white);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
  transition:
    background-color var(--pill-transition),
    color var(--pill-transition);
}

.profile-label {
  display: block;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.profile-divider {
  width: 1px;
  height: 32px;
  background: rgb(255 255 255 / 30%);
  transition: background-color var(--pill-transition);
}

.profile-icon {
  display: block;
  flex: 0 0 auto;
  transition:
    filter var(--pill-transition),
    opacity var(--pill-transition);
}

.profile-icon-site,
.profile-icon-github,
.profile-icon-linkedin {
  width: 16px;
  height: 16px;
}

.profile-icon-behance {
  width: 25px;
  height: 16px;
}

.profile-icon-x {
  width: 18px;
  height: 16px;
}

.bottom-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stack-pill {
  gap: 16px;
  min-height: 48px;
  padding: 8px 24px;
  background: var(--ds-black);
  color: var(--ds-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.stack-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-popover {
  position: relative;
}

.info-pill {
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
}

.info-pill-mark {
  display: block;
  color: currentColor;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.info-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 20px);
  z-index: 4;
  width: max-content;
  max-width: min(360px, calc(100vw - 40px));
  padding: 24px;
  background: var(--ds-black);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgb(0 0 0 / 48%);
  color: var(--ds-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--pill-transition),
    transform var(--pill-transition),
    visibility 260ms step-end;
}

.info-panel p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  text-wrap: pretty;
}

.info-panel p + p {
  margin-top: 16px;
}

.info-popover:hover .info-panel,
.info-popover:focus-within .info-panel,
.info-popover[data-mobile-open="true"] .info-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity var(--pill-transition),
    transform var(--pill-transition),
    visibility 0s linear;
}

.icon-12,
.icon-20,
.icon-figma {
  display: block;
  flex: 0 0 auto;
}

.icon-12 {
  width: 12px;
  height: 12px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-figma {
  width: 12px;
  height: 19px;
}

.control-button:focus-visible,
.zoom-pill:focus-visible,
.info-pill:focus-visible,
.profile-link:focus-visible,
.zoom-menu-item:focus-visible {
  outline: 2px solid var(--ds-white);
  outline-offset: 4px;
}

.control-button:focus-visible,
.zoom-pill:focus-visible,
.info-pill:focus-visible {
  background: var(--ds-white);
  color: var(--ds-black);
}

.control-button:focus-visible .control-icon {
  filter: invert(1);
}

.profile-pill:focus-within {
  background: var(--ds-white);
  color: var(--ds-black);
}

.profile-pill:focus-within .profile-icon {
  filter: invert(1);
}

.profile-pill:focus-within .profile-divider {
  background: rgb(0 0 0 / 16%);
}

.profile-pill:focus-within .profile-link:focus-visible .profile-icon {
  opacity: 0.45;
}

@media (hover: hover) and (pointer: fine) {
  .control-button:not(.is-active):hover,
  .zoom-pill:hover,
  .info-pill:hover {
    background: var(--ds-white);
    color: var(--ds-black);
  }

  .control-button:not(.is-active):hover .control-icon {
    filter: invert(1);
  }

  .profile-pill:hover {
    background: var(--ds-white);
    color: var(--ds-black);
  }

  .profile-pill:hover .profile-icon {
    filter: invert(1);
  }

  .profile-pill:hover .profile-divider {
    background: rgb(0 0 0 / 16%);
  }

  .profile-link:hover .profile-icon {
    opacity: 0.45;
  }

  .zoom-menu-item:hover {
    background: rgb(255 255 255 / 12%);
  }
}

@media (max-width: 860px) {
  .stage {
    min-height: 580px;
  }

  .landing-copy {
    gap: 20px;
  }

  .landing-title {
    font-size: 88px;
    line-height: 88px;
  }

  .landing-subtitle {
    width: 560px;
    font-size: 28px;
    line-height: 36px;
  }

  .stack-pill {
    max-width: calc(100vw - (var(--side-offset) * 2));
    gap: 12px;
    padding: 8px 16px;
  }

  .game-controls {
    gap: 6px;
  }

  .stack-copy {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --top-offset: 17px;
    --side-offset: 17px;
    --bottom-offset: 17px;
  }

  .landing-copy {
    width: calc(100vw - 48px);
    min-width: 0;
    gap: 16px;
  }

  .landing-title {
    max-width: 100%;
    font-size: 54px;
    line-height: 58px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .landing-subtitle {
    width: 100%;
    font-size: 22px;
    line-height: 30px;
  }

  .landing-meta {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 20px;
    white-space: normal;
  }

  .landing-meta-icon {
    width: 12px;
    height: 16px;
  }

  .brand-pill {
    gap: 12px;
    min-height: 40px;
    height: 40px;
    padding: 8px 16px;
  }

  .brand-logo-ds {
    width: 38px;
    height: auto;
  }

  .brand-logo-trezor {
    width: 56px;
    height: auto;
  }

  .brand-logo-satoshilabs {
    width: 68px;
    height: auto;
  }

  .brand-cross {
    width: 18px;
    height: 24px;
    flex-basis: 18px;
  }

  .brand-cross::before,
  .brand-cross::after {
    height: 24px;
  }

  .game-controls {
    display: grid;
    grid-template-columns: repeat(2, 32px);
    grid-template-areas:
      "cursor hand"
      "zoom zoom"
      "reset reset";
    justify-content: end;
    align-items: start;
    gap: 8px;
    width: 72px;
  }

  .game-controls > .control-button[data-tool-button="cursor"] {
    grid-area: cursor;
  }

  .game-controls > .control-button[data-tool-button="hand"] {
    grid-area: hand;
  }

  .game-controls > .control-button[data-reset-view] {
    grid-area: reset;
  }

  .game-controls > .zoom-control {
    grid-area: zoom;
    width: 72px;
  }

  .game-controls > .zoom-control .zoom-pill {
    width: 72px;
    min-width: 72px;
    height: 32px;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .profile-pill {
    gap: 12px;
    min-height: 40px;
    padding: 12px 20px;
    font-size: 12px;
    line-height: 16px;
  }

  .profile-label {
    display: none;
  }

  .profile-divider {
    height: 24px;
  }

  .profile-icon-x {
    width: 13px;
    height: 12px;
  }

  .profile-icon-linkedin {
    width: 14px;
    height: 14px;
  }

  .bottom-cluster {
    gap: 0;
  }

  .stack-pill {
    display: none;
  }

  .info-pill {
    width: 40px;
    height: 40px;
  }

  .info-panel {
    bottom: calc(100% + 12px);
    max-width: min(280px, calc(100vw - 34px));
    padding: 20px;
    border-radius: 14px;
  }

  .info-popover:focus-within .info-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity var(--pill-transition),
      transform var(--pill-transition),
      visibility 260ms step-end;
  }

  .info-popover[data-mobile-open="true"] .info-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity var(--pill-transition),
      transform var(--pill-transition),
      visibility 0s linear;
  }
}
