/* client/styles.css */
:root {
  --sys-bg: #000;
  --sys-bg-secondary: #1c1c1e;
  --sys-bg-tertiary: #2c2c2e;
  --sys-fill-1: #7878805c;
  --sys-fill-2: #78788052;
  --sys-fill-3: #7676803d;
  --sys-fill-4: #7676802e;
  --sys-separator: #545458a6;
  --sys-separator-opaque: #38383a;
  --label-primary: #fff;
  --label-secondary: #ebebf599;
  --label-tertiary: #ebebf54d;
  --label-quaternary: #ebebf52e;
  --tint-blue: #0a84ff;
  --tint-indigo: #5e5ce6;
  --tint-red: #ff453a;
  --tint-orange: #ff9f0a;
  --tint-yellow: #ffd60a;
  --tint-green: #30d158;
  --tint-pink: #ff375f;
  --tint-gray: #8e8e93;
  --mat-regular-bg: #1c1c1eb8;
  --mat-thick-bg: #242426d1;
  --mat-chrome-bg: #2c2c2eb3;
  --mat-filter: blur(30px) saturate(180%);
  --mat-filter-thick: blur(50px) saturate(200%);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;
  --ease-ios: cubic-bezier(.25, .1, .25, 1);
  --ease-snap: cubic-bezier(.5, 1.5, .5, 1);
  --sh-panel: 0 8px 24px #0000004d, 0 1px 2px #0000001a;
  --sh-thumb: 0 3px 8px #00000026, 0 3px 1px #0000000f, 0 0 0 .5px #0000000a;
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow: hidden;
  background: var(--sys-bg);
  color: var(--label-primary);
  font-family: var(--font-system);
  letter-spacing: -.01em;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 1.33;
}

button {
  color: inherit;
  letter-spacing: inherit;
  font-family: inherit;
}

#canvas-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#canvas-container canvas {
  display: block;
  touch-action: none;
}

#ui-root {
  position: fixed;
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#landing-root {
  position: fixed;
  z-index: 20;
  inset: 0;
}

body.view-landing #canvas-container, body.view-landing #ui-root, body.view-game #landing-root {
  display: none;
}

.icon {
  display: inline-flex;
  color: inherit;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mat-card {
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-lg);
}

.tool-palette {
  position: absolute;
  display: flex;
  pointer-events: auto;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-lg);
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.tool-palette .tool-separator {
  background: var(--sys-separator);
  height: .5px;
  margin: 4px 6px;
}

.tool-btn {
  border-radius: var(--r-md);
  color: var(--label-secondary);
  cursor: pointer;
  display: flex;
  transition: background .15s var(--ease-ios), color .15s var(--ease-ios), transform .12s var(--ease-snap);
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
}

.tool-btn .icon {
  width: 22px;
  height: 22px;
}

@media (hover: hover) {
  .tool-btn:hover {
    background: var(--sys-fill-4);
    color: var(--label-primary);
  }
}

.tool-btn:active {
  transform: scale(.95);
}

.tool-btn.active {
  background: var(--sys-fill-1);
  color: var(--label-primary);
}

.color-bar {
  position: absolute;
  display: flex;
  pointer-events: auto;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-pill);
  align-items:  center;
  gap: 10px;
  padding: 10px 12px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.color-swatch {
  cursor: pointer;
  transition: box-shadow .18s var(--ease-ios), transform .12s var(--ease-snap);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  box-shadow: inset 0 0 0 .5px #0000004d;
}

.color-swatch:active {
  transform: scale(.9);
}

.color-swatch.active {
  box-shadow: inset 0 0 0 .5px #0000004d, 0 0 0 2px var(--mat-thick-bg), 0 0 0 4px var(--tint-blue);
}

.color-custom {
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 0 0 .5px #0000004d, inset 0 0 0 6px var(--mat-thick-bg);
  overflow: hidden;
  background: conic-gradient(#ff453a, #ff9f0a, #ffd60a, #30d158, #0a84ff, #5e5ce6, #ff375f, #ff453a);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.color-custom input[type="color"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
  inset: 0;
}

.brush-panel {
  position: absolute;
  pointer-events: auto;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-lg);
  width: 260px;
  padding: 10px 12px 12px;
  bottom: 20px;
  left: 16px;
}

.brush-segmented {
  display: flex;
  background: var(--sys-fill-3);
  border-radius: var(--r-md);
  gap: 0;
  height: 32px;
  padding: 2px;
}

.brush-btn {
  cursor: pointer;
  display: flex;
  color: var(--label-secondary);
  position: relative;
  transition: background .25s var(--ease-ios), color .25s var(--ease-ios), box-shadow .25s var(--ease-ios);
  background: none;
  border: none;
  border-radius: 10px;
  flex: 1;
  justify-content: center;
  align-items:  center;
}

.brush-btn + .brush-btn {
  margin-left: 2px;
}

.brush-btn.active {
  background: var(--sys-bg-tertiary);
  color: var(--label-primary);
  box-shadow: 0 3px 8px #00000026, 0 3px 1px #0000000a;
}

.brush-btn:active {
  transform: scale(.97);
}

.brush-dot {
  background: currentColor;
  border-radius: 50%;
}

.thickness-slider {
  --val: 10%;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  width: 100%;
  height: 28px;
  margin-bottom: 12px;
}

.thickness-slider::-webkit-slider-runnable-track {
  border-radius: var(--r-pill);
  background: linear-gradient(to right, var(--tint-blue) var(--val), var(--sys-fill-3) var(--val));
  height: 4px;
}

.thickness-slider::-moz-range-track {
  border-radius: var(--r-pill);
  background: linear-gradient(to right, var(--tint-blue) var(--val), var(--sys-fill-3) var(--val));
  height: 4px;
}

.thickness-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: var(--sh-thumb);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-top: -12px;
}

.thickness-slider::-moz-range-thumb {
  box-shadow: var(--sh-thumb);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.zoom-info {
  position: absolute;
  pointer-events: auto;
  background: var(--mat-regular-bg);
  backdrop-filter: var(--mat-filter);
  -webkit-backdrop-filter: var(--mat-filter);
  box-shadow: inset 0 0 0 .5px var(--sys-separator);
  border-radius: var(--r-pill);
  display: flex;
  color: var(--label-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.005em;
  align-items:  center;
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  top: 16px;
  right: 16px;
}

.zoom-info .zoom-sep {
  color: var(--label-tertiary);
  margin: 0 6px;
}

.breadcrumb-bar {
  position: fixed;
  display: flex;
  background: var(--mat-chrome-bg);
  backdrop-filter: var(--mat-filter);
  -webkit-backdrop-filter: var(--mat-filter);
  box-shadow: inset 0 0 0 .5px var(--sys-separator);
  border-radius: var(--r-pill);
  color: var(--label-secondary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.005em;
  z-index: 100;
  overflow: hidden;
  align-items:  center;
  gap: 2px;
  max-width: calc(100% - 32px);
  padding: 5px 10px;
  font-size: 13px;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.breadcrumb {
  cursor: pointer;
  color: var(--label-secondary);
  transition: background .15s var(--ease-ios), color .15s var(--ease-ios);
  border-radius: 6px;
  padding: 3px 6px;
  font-weight: 500;
}

.breadcrumb:last-child {
  color: var(--label-primary);
  font-weight: 600;
}

@media (hover: hover) {
  .breadcrumb:hover {
    background: var(--sys-fill-4);
    color: var(--label-primary);
  }
}

.breadcrumb-arrow {
  display: inline-flex;
  color: var(--label-quaternary);
  justify-content: center;
  align-items:  center;
  width: 14px;
  height: 14px;
}

.breadcrumb-arrow svg {
  width: 100%;
  height: 100%;
}

.user-badge {
  position: absolute;
  display: flex;
  pointer-events: auto;
  background: var(--mat-regular-bg);
  backdrop-filter: var(--mat-filter);
  -webkit-backdrop-filter: var(--mat-filter);
  box-shadow: inset 0 0 0 .5px var(--sys-separator);
  border-radius: var(--r-pill);
  z-index: 50;
  align-items:  center;
  gap: 10px;
  height: 36px;
  padding: 4px 12px 4px 4px;
  top: 16px;
  left: 16px;
}

.user-avatar {
  display: flex;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 .5px #fff3;
}

.user-name {
  color: var(--label-primary);
  letter-spacing: -.01em;
  font-size: 15px;
  font-weight: 500;
}

.user-logout-btn {
  color: var(--label-tertiary);
  cursor: pointer;
  display: flex;
  transition: color .15s var(--ease-ios), background .15s var(--ease-ios);
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  margin-left: 2px;
}

.user-logout-btn .icon {
  width: 18px;
  height: 18px;
}

@media (hover: hover) {
  .user-logout-btn:hover {
    background: var(--sys-fill-4);
    color: var(--label-primary);
  }
}

.user-logout-btn:active {
  transform: scale(.92);
}

.login-overlay {
  position: fixed;
  display: flex;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  z-index: 1000;
  pointer-events: auto;
  background: #0000008c;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

.login-card {
  background: var(--mat-thick-bg);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), 0 30px 60px #00000080;
  border-radius: var(--r-xl);
  text-align: center;
  min-width: 340px;
  max-width: 92vw;
  padding: 32px 24px 24px;
}

.login-title {
  color: var(--label-primary);
  letter-spacing: -.022em;
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.login-subtitle {
  color: var(--label-secondary);
  letter-spacing: -.01em;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 20px;
}

.login-user-list {
  display: flex;
  background: var(--sys-fill-4);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
  flex-direction: column;
}

.login-user-btn {
  display: flex;
  border: none;
  border-top: .5px solid var(--sys-separator);
  color: var(--label-primary);
  cursor: pointer;
  transition: background .12s var(--ease-ios);
  background: none;
  align-items:  center;
  gap: 12px;
  width: 100%;
  height: 56px;
  padding: 12px 16px;
}

.login-user-btn:first-child {
  border-top: none;
}

.login-user-btn:active {
  background: var(--sys-fill-2);
}

.login-user-avatar {
  display: flex;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 0 0 .5px #fff3;
}

.login-user-name {
  letter-spacing: -.015em;
  flex: 1;
  font-size: 17px;
  font-weight: 500;
}

.login-user-chevron {
  color: var(--label-tertiary);
  display: inline-flex;
  width: 14px;
  height: 14px;
}

.login-user-chevron svg {
  width: 100%;
  height: 100%;
}

.login-add-user-btn {
  opacity: .7;
}

.login-add-user-btn:hover {
  opacity: 1;
}

.login-add-form {
  display: flex;
  border-top: .5px solid var(--sys-separator);
  gap: 8px;
  padding: 10px 16px;
}

.login-add-input {
  border: .5px solid var(--sys-separator);
  background: var(--sys-fill-2);
  color: var(--label-primary);
  outline: none;
  border-radius: 8px;
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
}

.login-add-input:focus {
  border-color: var(--tint-blue, #0a84ff);
}

.login-add-submit {
  background: var(--tint-blue, #0a84ff);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.login-add-submit:disabled {
  opacity: .5;
}

.claim-panel {
  position: absolute;
  pointer-events: auto;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-lg);
  min-width: 220px;
  padding: 12px 14px;
  top: 60px;
  right: 16px;
}

.claim-info {
  margin-bottom: 10px;
}

.claim-status {
  display: flex;
  color: var(--label-primary);
  letter-spacing: -.01em;
  align-items:  center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.claim-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.claim-owned .claim-dot {
  box-shadow: 0 0 0 3px #30d1582e;
}

.claim-detail {
  color: var(--label-secondary);
  margin-top: 4px;
  font-size: 13px;
  line-height: 18px;
}

.claim-toggle {
  display: flex;
  align-items:  center;
  gap: 10px;
  margin-top: 6px;
}

.claim-toggle-input {
  display: none;
}

.claim-toggle-slider {
  position: relative;
  background: var(--sys-fill-2);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .28s var(--ease-ios);
  flex-shrink: 0;
  width: 51px;
  height: 31px;
}

.claim-toggle-slider:after {
  content: "";
  position: absolute;
  box-shadow: var(--sh-thumb);
  transition: transform .28s var(--ease-ios);
  background: #fff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  top: 2px;
  left: 2px;
}

.claim-toggle-input:checked + .claim-toggle-slider {
  background: var(--tint-green);
}

.claim-toggle-input:checked + .claim-toggle-slider:after {
  transform: translateX(20px);
}

.claim-toggle-input:disabled + .claim-toggle-slider {
  opacity: .5;
  cursor: not-allowed;
}

.claim-toggle-text {
  color: var(--label-secondary);
  letter-spacing: -.005em;
  font-size: 13px;
  font-weight: 500;
}

.view-panel {
  position: absolute;
  pointer-events: auto;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), var(--sh-panel);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  bottom: 20px;
  right: 16px;
}

.ios-switch-row {
  display: flex;
  cursor: pointer;
  align-items:  center;
  gap: 10px;
}

.ios-switch-label {
  color: var(--label-primary);
  letter-spacing: -.01em;
  font-size: 15px;
  font-weight: 500;
}

.ios-switch-input {
  display: none;
}

.ios-switch-slider {
  position: relative;
  background: var(--sys-fill-2);
  border-radius: var(--r-pill);
  transition: background .28s var(--ease-ios);
  flex-shrink: 0;
  width: 51px;
  height: 31px;
}

.ios-switch-slider:after {
  content: "";
  position: absolute;
  box-shadow: var(--sh-thumb);
  transition: transform .28s var(--ease-ios);
  background: #fff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  top: 2px;
  left: 2px;
}

.ios-switch-input:checked ~ .ios-switch-slider {
  background: var(--tint-green);
}

.ios-switch-input:checked ~ .ios-switch-slider:after {
  transform: translateX(20px);
}

.ios-switch-input:disabled ~ .ios-switch-slider {
  opacity: .5;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  display: flex;
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator), 0 10px 30px #0006;
  border-radius: var(--r-pill);
  color: var(--label-primary);
  letter-spacing: -.01em;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  transition: transform .35s var(--ease-snap), opacity .25s var(--ease-ios);
  align-items:  center;
  gap: 10px;
  max-width: min(92vw, 420px);
  min-height: 40px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -20px);
}

.toast.toast-visible {
  opacity: 1;
  transform: translate(-50%);
}

.toast-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.toast-icon svg {
  width: 100%;
  height: 100%;
}

.toast-success .toast-icon {
  color: var(--tint-green);
}

.toast-warning .toast-icon {
  color: var(--tint-orange);
}

.toast-error .toast-icon {
  color: var(--tint-red);
}

.toast-text {
  line-height: 20px;
}

.landing {
  position: absolute;
  display: flex;
  background: radial-gradient(ellipse at top, #5e5ce62e 0%, transparent 55%), radial-gradient(ellipse at bottom, #0a84ff24 0%, transparent 60%), var(--sys-bg);
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  padding: 48px 24px;
  inset: 0;
}

.landing:before {
  content: "";
  position: absolute;
  mask-image: radial-gradient(#000 30%, #0000 75%);
  -webkit-mask-image: radial-gradient(#000 30%, #0000 75%);
  pointer-events: none;
  background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
  background-size: 64px 64px;
  inset: 0;
}

.landing-badge {
  position: absolute;
  display: none;
  background: var(--mat-regular-bg);
  backdrop-filter: var(--mat-filter);
  -webkit-backdrop-filter: var(--mat-filter);
  box-shadow: inset 0 0 0 .5px var(--sys-separator);
  border-radius: var(--r-pill);
  z-index: 2;
  align-items:  center;
  gap: 10px;
  height: 36px;
  padding: 4px 12px 4px 4px;
  top: 16px;
  right: 16px;
}

.landing-hero {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 40px;
}

.landing-title {
  letter-spacing: -.035em;
  background: linear-gradient(135deg, #fff 0%, #b8b8d4 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 14px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.landing-tagline {
  color: var(--label-secondary);
  letter-spacing: -.01em;
  max-width: 420px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 22px;
}

.landing-menu {
  position: relative;
  display: flex;
  z-index: 1;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.menu-button {
  border-radius: var(--r-lg);
  background: var(--mat-thick-bg);
  backdrop-filter: var(--mat-filter-thick);
  -webkit-backdrop-filter: var(--mat-filter-thick);
  box-shadow: inset 0 0 0 .5px var(--sys-separator);
  color: var(--label-primary);
  letter-spacing: -.015em;
  cursor: pointer;
  transition: background .18s var(--ease-ios), transform .12s var(--ease-snap), box-shadow .18s var(--ease-ios);
  border: none;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  font-size: 17px;
  font-weight: 500;
}

@media (hover: hover) {
  .menu-button:hover {
    background: var(--mat-chrome-bg);
  }
}

.menu-button:active {
  transform: scale(.98);
}

.menu-button--primary {
  background: var(--tint-blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 24px #0a84ff59, inset 0 0 0 .5px #ffffff1f;
}

@media (hover: hover) {
  .menu-button--primary:hover {
    background: #1a92ff;
  }
}

.landing-footer {
  position: relative;
  color: var(--label-tertiary);
  letter-spacing: -.005em;
  z-index: 1;
  margin-top: 40px;
  font-size: 12px;
}

.landing-modal-card {
  text-align: left;
  max-width: 440px;
}

.landing-modal-body {
  color: var(--label-secondary);
  letter-spacing: -.005em;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 22px;
}

.landing-modal-body strong {
  color: var(--label-primary);
  font-weight: 600;
}

.landing-modal-body p + p, .landing-modal-body p + ul, .landing-modal-body ul + p {
  margin-top: 12px;
}

.landing-modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.landing-modal-body li {
  position: relative;
  padding-left: 18px;
}

.landing-modal-body li:before {
  content: "";
  position: absolute;
  background: var(--tint-blue);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 9px;
  left: 4px;
}

.landing-modal-muted {
  color: var(--label-tertiary);
  font-style: italic;
}

.landing-modal-close {
  display: block;
  width: 100%;
  height: 44px;
}

@media (width <= 480px) {
  .landing-title {
    font-size: 48px;
  }

  .landing-tagline {
    font-size: 15px;
  }
}
