:root {
  --desktop: #008080;
  --desktop-dark: #006666;
  --window: #c0c0c0;
  --window-light: #dfdfdf;
  --white: #ffffff;
  --gray: #808080;
  --dark-gray: #404040;
  --black: #000000;
  --title: #000080;
  --title-active: #0a246a;
  --title-fade: #3a6ea5;
  --info-blue: #245edb;
  --folder: #f1d45a;
  --danger: #a00000;
  --success: #087b28;
  --focus: #000000;
  --system: Tahoma, Verdana, "MS Sans Serif", Arial, sans-serif;
  --document: "Times New Roman", Times, serif;
  --outset: inset -1px -1px var(--gray), inset 1px 1px var(--white);
  --inset: inset 1px 1px var(--gray), inset -1px -1px var(--white);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--desktop);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0 0 40px;
  overflow-x: hidden;
  color: var(--black);
  background-color: var(--desktop);
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, rgba(0, 0, 0, 0.018) 1px 2px),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(135deg, var(--desktop), var(--desktop-dark));
  background-attachment: fixed;
  font: 13px/1.42 var(--system);
  image-rendering: auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--title);
}

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 1px dotted var(--focus);
  outline-offset: -4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 12px;
  padding: 7px 14px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
}

.skip-link:focus {
  top: 8px;
}

.publisher-strip {
  min-height: 24px;
  padding: 5px 14px 4px;
  overflow: hidden;
  color: var(--white);
  background: var(--title);
  border-bottom: 1px solid var(--black);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  position: relative;
  z-index: 30;
  background: var(--window);
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--dark-gray);
  box-shadow: var(--outset);
}

.site-nav__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 7px;
}

.wordmark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 7px;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.wordmark span {
  color: #d91717;
  font-size: 23px;
  line-height: 1;
  text-shadow: 1px 1px var(--white);
}

.site-nav ul {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav li a {
  display: block;
  padding: 7px 11px;
  color: var(--black);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav li a:hover,
.site-nav li a[aria-current="page"] {
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  background: var(--window-light);
  box-shadow: var(--outset);
}

.site-nav li a:active {
  padding: 8px 10px 6px 12px;
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  box-shadow: var(--inset);
}

.site-main {
  display: flow-root;
}

.cover {
  position: relative;
  width: min(1080px, calc(100% - 28px));
  min-height: 610px;
  margin: 26px auto 0;
  padding: 36px 6px 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.38), var(--outset);
}

.cover::before {
  content: "Employee Self-Service - Microsoft Internet Explorer";
  position: absolute;
  z-index: 2;
  top: 3px;
  right: 3px;
  left: 3px;
  height: 26px;
  padding: 5px 8px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cover::after {
  content: "_  □  ×";
  position: absolute;
  z-index: 3;
  top: 6px;
  right: 8px;
  padding: 0 4px;
  color: var(--black);
  background: var(--window);
  border: 1px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 17px;
}

.cover__inner {
  min-height: 560px;
  padding: 62px 8% 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 128, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(rgba(0, 0, 128, 0.04) 1px, transparent 1px) 0 0 / 18px 18px,
    #f5f5ef;
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
  text-align: center;
}

.issue-box,
.authority-stamp {
  position: absolute;
  z-index: 4;
  top: 48px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
  font-size: 10px;
}

.issue-box {
  left: 18px;
  width: 105px;
  padding: 8px;
  text-align: left;
}

.issue-box strong {
  display: block;
  color: var(--title);
  font-size: 14px;
}

.authority-stamp {
  right: 18px;
  max-width: 255px;
  padding: 8px 10px;
  color: var(--danger);
  font-weight: 700;
}

.krackle {
  display: none;
}

.masthead {
  margin: 44px 0 0;
  color: var(--title);
  font: 700 clamp(46px, 9vw, 92px)/0.95 var(--document);
  letter-spacing: -0.055em;
  text-shadow: 2px 2px 0 #b7b7b7;
}

.masthead-sub {
  margin: 12px 0 38px;
  color: #333;
  font: 700 clamp(18px, 3vw, 30px)/1.1 var(--document);
}

.cover__balloons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.balloon {
  position: relative;
  margin: 0;
  padding: 15px 18px;
  color: var(--black);
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
  font: 14px/1.45 var(--system);
  text-align: left;
}

.balloon em {
  font-style: normal;
  font-weight: 700;
}

.balloon--tail::before {
  content: "Message";
  display: block;
  margin: -15px -18px 12px;
  padding: 4px 7px;
  color: var(--white);
  background: var(--title-active);
  font-size: 11px;
  font-weight: 700;
}

.cover__shout {
  max-width: 760px;
  margin: 22px auto 0;
}

.shout {
  display: block;
  padding: 15px 18px 15px 52px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.shout::before {
  content: "×";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin: -6px 14px -6px -38px;
  color: var(--white);
  background: #d10c0c;
  border-radius: 50%;
  font: 700 22px/1 Arial, sans-serif;
}

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

.cover__actions {
  margin-top: 28px;
}

.button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  border-radius: 0;
  box-shadow: var(--outset);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--window-light);
}

.button:active {
  padding: 7px 15px 5px 17px;
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  box-shadow: var(--inset);
}

.button--blue {
  outline: 1px solid var(--black);
  outline-offset: -5px;
}

.button--small {
  min-height: 26px;
  padding: 4px 10px;
  font-size: 11px;
}

.button[aria-disabled="true"] {
  color: var(--gray);
  text-shadow: 1px 1px var(--white);
  pointer-events: none;
}

.section {
  margin-block: 34px;
}

.section > .caption:first-child,
.badge-wall > .caption:first-child {
  margin-bottom: 0;
}

.caption {
  display: block;
  min-height: 24px;
  padding: 4px 8px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.caption strong {
  font-weight: inherit;
}

.section-title,
.page-title,
.panel h2,
.panel h3 {
  color: var(--black);
}

.section-title {
  margin: 0;
  padding: 18px 20px 14px;
  background: var(--window);
  border-right: 2px solid var(--dark-gray);
  border-left: 2px solid var(--white);
  font: 700 clamp(24px, 4vw, 38px)/1.05 var(--document);
}

.lede {
  max-width: 900px;
  font: 16px/1.5 var(--document);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
}

.panel {
  position: relative;
  min-width: 0;
  padding: 42px 18px 20px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
}

.panel::before {
  content: "Lackies Information System";
  position: absolute;
  top: 3px;
  right: 3px;
  left: 3px;
  height: 24px;
  padding: 4px 6px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.panel--yellow {
  background: #d4d0c8;
}

.panel h2,
.panel h3 {
  margin: 0 0 10px;
  font: 700 20px/1.15 var(--document);
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel-number {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  float: left;
  margin: 0 9px 7px 0;
  color: var(--white);
  background: var(--title);
  border: 1px solid var(--black);
  font-weight: 700;
}

.fx {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 6px;
  color: var(--black);
  background: #fffde5;
  border: 1px solid var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-wall {
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35), var(--outset);
}

.badge-wall > .caption {
  margin-bottom: 7px !important;
}

.photo-lab-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
  font-size: 11px;
}

.photo-lab-switcher__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.photo-lab-switcher [aria-current="true"] {
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  box-shadow: var(--inset);
  outline: 1px dotted var(--black);
  outline-offset: -5px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px 12px;
  padding: 14px;
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

.badge-grid > span {
  min-width: 0;
}

.badge {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 6px;
  color: var(--black);
  background: transparent;
  border: 1px dotted transparent;
  text-decoration: none;
}

.badge:hover,
.badge:focus-visible {
  color: var(--white);
  background: var(--title);
  border-color: var(--white);
  outline: 1px dotted var(--black);
  outline-offset: -3px;
}

.badge__hired,
.status-stamp {
  z-index: 3;
  padding: 3px 5px;
  color: var(--black);
  background: var(--window);
  border: 1px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.badge__hired {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--success);
}

.badge > .status-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
}

.badge__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 10;
  overflow: hidden;
  background: #73878f;
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

.badge__photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(0.96) brightness(0.98);
}

.badge__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 3px, transparent 3px 7px),
    #677d84;
  font: 700 clamp(38px, 9vw, 84px)/1 var(--document);
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

.badge__awaiting {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px;
  color: var(--black);
  background: var(--window);
  border: 1px solid var(--dark-gray);
  font: 700 9px/1.2 var(--system);
  text-align: center;
  text-shadow: none;
}

.badge__name {
  display: block;
  margin: 8px 0 2px;
  font: 700 19px/1.1 var(--document);
}

.badge__role {
  display: block;
  margin-bottom: 5px;
  color: var(--title);
  font-size: 11px;
  font-weight: 700;
}

.badge__quirk {
  display: block;
  min-height: 36px;
  margin-top: 4px;
  padding-top: 7px;
  border-top: 1px dotted var(--gray);
  font: 12px/1.35 var(--document);
}

.badge__quote {
  display: none;
  min-height: 50px;
  margin-top: 8px;
  padding: 6px 7px;
  overflow: auto;
  color: #333;
  background: #f5f5f5;
  border: 1px solid var(--gray);
  font: 11px/1.3 var(--system);
}

.badge__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  color: var(--gray);
  font-size: 9px;
}

.badge:hover .badge__role,
.badge:focus-visible .badge__role,
.badge:hover .badge__footer,
.badge:focus-visible .badge__footer {
  color: var(--white);
}

.badge:hover .badge__quirk,
.badge:focus-visible .badge__quirk {
  border-top-color: var(--white);
}

.barcode {
  display: none;
  width: 72px;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--black) 0 1px, transparent 1px 3px, var(--black) 3px 5px, transparent 5px 7px);
}

.badge--large {
  width: min(100%, 390px);
  margin-inline: auto;
}

.badge--large .badge__quote {
  display: block;
}

.badge--large .barcode {
  display: block;
}

.badge--mystery .badge__fallback {
  color: #d9d9d9;
  background: #545454;
}

.page-hero {
  position: relative;
  width: min(1180px, calc(100% - 28px));
  margin: 26px auto 0;
  padding: 34px 6px 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35), var(--outset);
}

.page-hero::before {
  content: "Lackies Intranet";
  position: absolute;
  top: 3px;
  right: 3px;
  left: 3px;
  height: 25px;
  padding: 4px 7px;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
}

body[data-page="roster"] .page-hero::before {
  content: "Lackies Explorer";
}

body[data-page="hire"] .page-hero::before {
  content: "Lackies Setup Wizard";
}

body[data-page="record"] .page-hero::before {
  content: "Event Viewer";
}

body[data-page="company"] .page-hero::before {
  content: "Network Neighborhood";
}

body[data-page="character"] .page-hero::before {
  content: "Employee File";
}

.page-hero__inner {
  width: 100%;
  padding: 18px 20px;
  background: #f5f5ef;
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

.page-hero .caption {
  display: none;
}

.page-hero__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font: 700 clamp(26px, 4vw, 40px)/1.05 var(--document);
  overflow-wrap: anywhere;
}

.page-hero .lede {
  margin-bottom: 0;
  font: 13px/1.45 var(--system);
}

.explorer-address {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
  padding: 4px;
  background: var(--window);
  border: 1px solid var(--gray);
  font-size: 11px;
}

.explorer-address code {
  min-width: 0;
  display: block;
  padding: 4px 6px;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.profile-copy {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.origin-panel .caption {
  margin: -39px -15px 18px;
}

.voice-stack {
  display: grid;
  gap: 8px;
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
}

.stats h2 {
  margin-bottom: 16px;
}

.stat {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 11px;
}

.stat__track {
  height: 19px;
  padding: 2px;
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

.stat__fill {
  height: 100%;
  display: block;
  background: repeating-linear-gradient(90deg, var(--title) 0 10px, transparent 10px 12px);
}

.record-file {
  padding: 32px 7px 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.32), var(--outset);
}

.record-file__tab {
  height: 25px;
  display: block;
  margin: -29px -4px 7px;
  padding: 4px 7px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.record-list {
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
  list-style: none;
}

.record-entry {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(105px, 145px);
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 6px 8px;
  border-bottom: 1px solid #d4d0c8;
  font-size: 11px;
}

.record-entry:nth-child(even) {
  background: #f3f3f3;
}

.record-entry:last-child {
  border-bottom: 0;
}

.record-entry:target {
  color: var(--white);
  background: var(--title);
}

.record-entry__time {
  font-family: "Courier New", monospace;
  white-space: nowrap;
}

.record-entry__body {
  min-width: 0;
  overflow-wrap: anywhere;
}

.record-entry > span:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 2px 5px;
  color: var(--black);
  background: #f3d75b;
  border: 1px solid var(--gray);
  font-size: 9px;
  text-transform: uppercase;
}

.tag--blue {
  color: var(--white);
  background: var(--info-blue);
}

.tag--ink {
  color: var(--white);
  background: #333;
}

.record-entry__share {
  padding: 2px 5px;
  color: var(--title);
  background: transparent;
  border: 0;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 18px 0 10px;
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
}

.filters [aria-pressed="true"] {
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  box-shadow: var(--inset);
  outline: 1px dotted var(--black);
  outline-offset: -5px;
}

.contract-field {
  padding: 12px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: var(--outset);
}

.contract-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.contract-field input,
.contract-field select,
select.contract-field {
  width: 100%;
  min-height: 30px;
  padding: 5px 7px;
  color: var(--black);
  background: var(--white);
  border: 2px solid;
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  border-radius: 0;
  box-shadow: var(--inset);
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 7px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.36), var(--outset);
}

.hire-panel {
  min-height: 300px;
}

.hire-panel .contract-field {
  margin: 14px 0 8px;
}

.bot-command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 14px 0;
  padding: 7px;
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

code {
  font: 12px/1.4 "Courier New", monospace;
}

.form-note {
  color: #444;
  font-size: 10px;
}

.form-status {
  min-height: 74px;
  margin: 16px 0;
  padding: 12px 12px 12px 46px;
  color: var(--black);
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
}

.form-status::before {
  content: "i";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: -4px 10px 0 -34px;
  color: var(--white);
  background: var(--info-blue);
  border-radius: 50%;
  font: 700 18px/1 var(--document);
}

.form-status[data-state="error"]::before {
  content: "×";
  background: #d10c0c;
  font-family: Arial, sans-serif;
}

.form-status[data-state="success"]::before {
  content: "✓";
  background: var(--success);
}

.org-chart {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 7px solid var(--window);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.36), 0 0 0 2px var(--white), 0 0 0 4px var(--dark-gray);
}

.org-chart::before {
  content: "LACKIES workgroup · 5 object(s)";
  display: block;
  margin: -7px -7px 12px;
  padding: 5px 8px;
  color: var(--white);
  background: linear-gradient(90deg, var(--title), var(--title-fade));
  font-size: 11px;
  font-weight: 700;
}

.org-chart__manager {
  width: min(100%, 360px);
  margin: 0 auto 24px;
}

.org-chart__team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.org-card {
  min-width: 0;
}

.task-ticker {
  min-height: 26px;
  padding: 5px 7px;
  overflow: hidden;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  font: 9px/1.2 "Courier New", monospace;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.status-stamp--working {
  color: #075d25;
}

.status-stamp--idle {
  color: #555;
}

.status-stamp--trouble {
  color: var(--danger);
}

.status-stamp--yapping {
  color: var(--title);
}

.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 38px auto 20px;
  padding: 7px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35), var(--outset);
}

.site-footer .shell {
  width: 100%;
}

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

.ad {
  padding: 34px 12px 12px;
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  position: relative;
}

.ad::before {
  content: "Corporate Notice";
  position: absolute;
  top: 3px;
  right: 3px;
  left: 3px;
  padding: 4px 6px;
  color: var(--white);
  background: var(--title);
  font-size: 10px;
  font-weight: 700;
}

.ad h3 {
  margin: 0 0 6px;
  font: 700 17px/1.1 var(--document);
}

.ad p {
  margin: 0 0 8px;
}

.ad small,
.fine-print {
  font-size: 9px;
}

.fine-print {
  margin: 9px 0 0;
  padding: 7px;
  background: var(--white);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  font-family: "Courier New", monospace;
}

.toast {
  position: fixed;
  z-index: 1001;
  right: 12px;
  bottom: 44px;
  max-width: min(360px, calc(100% - 24px));
  padding: 10px 12px;
  color: var(--black);
  background: #ffffe1;
  border: 1px solid var(--black);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  font-size: 11px;
}

.taskbar {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: var(--window);
  border-top: 2px solid var(--white);
  box-shadow: 0 -1px 0 var(--dark-gray);
  color: var(--black);
  font-size: 11px;
}

.start-button {
  height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--white) var(--dark-gray) var(--dark-gray) var(--white);
  border-radius: 0;
  box-shadow: var(--outset);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-shadow: none;
}

.start-button span {
  font-style: normal;
  color: var(--title);
  font-size: 15px;
}

.taskbar__app {
  width: min(100%, 360px);
  height: 27px;
  padding: 5px 9px;
  overflow: hidden;
  color: var(--black);
  background: #d4d0c8;
  border: 2px solid;
  border-color: var(--dark-gray) var(--white) var(--white) var(--dark-gray);
  box-shadow: var(--inset);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.taskbar__clock {
  height: 27px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--black);
  background: var(--window);
  border: 2px solid;
  border-color: var(--gray) var(--white) var(--white) var(--gray);
  box-shadow: var(--inset);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .strip,
  .org-chart__team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav__inner {
    display: block;
  }

  .wordmark {
    margin-bottom: 4px;
  }

  .site-nav ul {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .cover {
    min-height: 0;
  }

  .cover__inner {
    min-height: 0;
    padding: 85px 22px 38px;
  }

  .masthead {
    margin-top: 25px;
  }

  .cover__balloons,
  .profile-grid,
  .hire-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    gap: 12px;
  }

  .ads {
    grid-template-columns: 1fr;
  }

  .record-entry {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .record-entry > span:last-child {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 12px;
  }

  .shell,
  .cover,
  .page-hero,
  .site-footer {
    width: calc(100% - 14px);
  }

  .publisher-strip {
    text-align: left;
  }

  .issue-box {
    left: 11px;
  }

  .authority-stamp {
    right: 11px;
    max-width: 165px;
  }

  .cover::before {
    padding-right: 90px;
  }

  .cover__inner {
    padding-inline: 12px;
  }

  .masthead {
    font-size: clamp(42px, 18vw, 70px);
  }

  .strip,
  .badge-grid,
  .org-chart__team {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    padding: 22px 15px;
  }

  .page-hero .caption {
    margin: -22px -15px 18px;
  }

  .section-title {
    padding-inline: 12px;
  }

  .badge-grid {
    padding: 6px;
  }

  .photo-lab-switcher {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-lab-switcher__actions {
    justify-content: flex-start;
  }

  .taskbar__clock {
    padding-inline: 7px;
  }

  .taskbar__app {
    font-size: 0;
  }

  .taskbar__app::before {
    content: "Lackies Intranet";
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
