:root {
  --desktop: #10131d;
  --desktop-deep: #090b12;
  --paper: #d9d7ce;
  --paper-bright: #f3f0e5;
  --ink: #11131b;
  --muted: #5e6070;
  --chrome: #c6c3b8;
  --chrome-light: #f9f7ee;
  --chrome-dark: #343541;
  --cyan: #32d2df;
  --blue: #2457d6;
  --green: #23c876;
  --amber: #f1b444;
  --red: #e5566f;
  --purple: #9a70e8;
  --yellow: #fff27a;
  --shadow: rgba(0, 0, 0, 0.58);
  --sans: Arial, Helvetica, sans-serif;
  --ui: Tahoma, "MS Sans Serif", Geneva, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --cursor-xp-arrow: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgEAYAAAAj6qa3AAAABmJLR0QAAAAAAAD5Q7t/AAAAo0lEQVRo3u2WSw6AIAxEqfH+V64rYsD4g1I6Yd7GDabMYzSkRAghhJB/qM7egRVb3+v4IpoFqKqe8XFFdDYAX0S3AHQRZgJQRZgLQBMxTACKiOECootwExBVxD56gIiIyLuWvNpbgFkDvgXNK+6e/nQLKIOL1CKiVd5MQB18dhB3Ac/BcZrQKAD3xC9JfMaolg2I8wm53wMWJ3cgzj+AEELIyhx2V2ICztqFpAAAAABJRU5ErkJggg==");
  --cursor-xp-hand: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QAAAAAAAD5Q7t/AAAAmklEQVRYw+2WSw6AIAwFW+L9r1wX0ogIAekDXHQSExdKpx8FojISr+lwKbjIFZuZa8/ACCuydAGrwNSBPJrR74FMJWCD+akFIqJCsKoMz0AiYhYQGswIIRF0odJi2v/8HsmjBb1BkDKBiDj+cregFdgm8foKZvW6R2BLFUx7AWK7zgWWV2H7blhLV1rDiDot/bcCxvcdx3Gcbk40QjoRH0ZfwgAAAABJRU5ErkJggg==");
}

/* Windows 90s-style refresh screen. */
.retro-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #111;
  background: rgba(5, 8, 14, 0.78);
}

.retro-loader__window {
  width: min(430px, 100%);
  background: var(--chrome);
  border: 2px solid;
  border-color: #fff #343434 #343434 #fff;
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.55);
}

.retro-loader__title {
  min-height: 29px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 4px 7px;
  color: #fff;
  background: linear-gradient(90deg, #171a80, #3157bf 58%, #5d2e96);
  border: 1px solid #fff;
  font: 700 12px var(--ui);
}

.retro-loader__title span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--cyan);
  border: 1px solid #fff;
  font-weight: 900;
}

.retro-loader__body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 22px;
}

.retro-loader__hourglass {
  font-size: 34px;
  line-height: 1;
  text-align: center;
}

.retro-loader__copy strong,
.retro-loader__copy span {
  display: block;
}

.retro-loader__copy strong {
  font: 700 14px var(--ui);
}

.retro-loader__copy span {
  margin-top: 4px;
  color: #3c3c42;
  font: 11px/1.4 var(--ui);
}

.retro-loader__progress {
  grid-column: 1 / -1;
  height: 22px;
  margin-top: 8px;
  padding: 3px;
  overflow: hidden;
  background: #fff;
  border: 2px solid;
  border-color: #4d4d4d #fff #fff #4d4d4d;
}

.retro-loader__progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: repeating-linear-gradient(90deg, #173f9b 0 14px, transparent 14px 17px);
  transform: scaleX(0);
  transform-origin: left;
}

.retro-loader.is-running .retro-loader__progress i {
  animation: retro-refresh-progress 650ms steps(10, end) forwards;
}

.retro-loader.is-closing {
  opacity: 0;
  transition: opacity 160ms steps(2, end);
}

@keyframes retro-refresh-progress {
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .retro-loader__progress i {
    animation: none !important;
    transform: scaleX(1);
  }

  .retro-loader.is-closing {
    transition: none;
  }
}

.portfolio-page-frame {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  border: 0;
  background: #10131d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--desktop-deep);
  cursor: var(--cursor-xp-arrow) 0 0, default;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.theme-light {
  --desktop: #316a78;
  --desktop-deep: #17424d;
  --shadow: rgba(9, 27, 32, 0.48);
}

button,
input,
a {
  font: inherit;
}

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

a {
  color: inherit;
}

body * {
  cursor: var(--cursor-xp-arrow) 0 0, default !important;
}

a,
a *,
button,
button *,
summary,
summary *,
[role="button"],
[role="button"] *,
label[for],
label[for] *,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"] {
  cursor: var(--cursor-xp-hand) 5 0, pointer !important;
}

button:disabled,
button:disabled *,
input:disabled,
select:disabled,
[aria-disabled="true"],
[aria-disabled="true"] * {
  cursor: not-allowed !important;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text !important;
}

input[readonly] {
  cursor: var(--cursor-xp-arrow) 0 0, default !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px dotted #111;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #000;
  background: var(--yellow);
  border: 2px solid #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.os-bar {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  min-height: 48px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: stretch;
  color: #f8f7ef;
  background: #151721;
  border-bottom: 1px solid #4b4d5c;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.os-brand {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 5px 14px;
  text-decoration: none;
  background: linear-gradient(90deg, #202334, #171924);
  border-right: 1px solid #444653;
}

.os-brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #111;
  background: conic-gradient(from 45deg, var(--cyan), var(--green), var(--amber), var(--purple), var(--cyan));
  border: 1px solid #fff;
  box-shadow: inset 1px 1px rgba(255, 255, 255, 0.8), 2px 2px #000;
  font: 900 19px/1 var(--sans);
}

.os-brand b,
.os-brand small {
  display: block;
}

.os-brand b {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.os-brand small {
  margin-top: -1px;
  color: #9fa4b7;
  font-size: 8px;
}

.os-bar__center,
.os-bar__right {
  display: flex;
  align-items: center;
}

.os-bar__center {
  gap: 28px;
  padding: 0 18px;
  color: #a9adbd;
}

.os-bar__center span:first-child::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--green);
}

.os-bar__right {
  gap: 13px;
  padding: 0 14px;
  border-left: 1px solid #444653;
}

.os-bar time {
  min-width: 78px;
  color: #cfd1dc;
  font-family: var(--mono);
}

.tiny-button {
  padding: 4px 8px;
  color: #e8e9ef;
  background: #2b2d39;
  border: 1px solid #575a68;
  box-shadow: inset 1px 1px rgba(255, 255, 255, 0.09);
  font-size: 9px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.desktop {
  position: relative;
  min-height: 100vh;
  padding: 76px clamp(14px, 3.2vw, 54px) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(50, 210, 223, 0.13), transparent 26rem),
    radial-gradient(circle at 84% 24%, rgba(154, 112, 232, 0.11), transparent 24rem),
    linear-gradient(135deg, var(--desktop), var(--desktop-deep));
}

.desktop__pattern {
  position: fixed;
  z-index: 0;
  inset: 48px 0 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 16px 16px;
}

.desktop::before,
.desktop::after {
  content: "";
  position: fixed;
  z-index: 0;
  width: 140px;
  height: 140px;
  opacity: 0.7;
  pointer-events: none;
}

.desktop::before {
  top: 82px;
  left: 22px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.desktop::after {
  right: 22px;
  bottom: 20px;
  border-right: 1px solid var(--purple);
  border-bottom: 1px solid var(--purple);
}

.browser-window {
  position: relative;
  z-index: 2;
  width: min(1460px, 100%);
  margin: 0 auto;
  background: var(--chrome);
  border: 2px solid;
  border-color: var(--chrome-light) #20212a #20212a var(--chrome-light);
  box-shadow: 12px 14px 0 rgba(0, 0, 0, 0.28), 22px 28px 60px var(--shadow);
}

.title-bar {
  min-height: 31px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 3px 4px;
  color: white;
  background: linear-gradient(90deg, #171a80 0%, #3157bf 54%, #5d2e96 100%);
  border: 1px solid #fff;
  font: 700 12px/1 var(--ui);
  letter-spacing: 0.03em;
}

.title-bar__icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--cyan);
  border: 1px solid white;
  font-weight: 900;
}

.window-controls {
  display: flex;
  gap: 3px;
}

.window-controls span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--chrome);
  border: 2px solid;
  border-color: white #353535 #353535 white;
  font-size: 12px;
}

.menu-bar {
  display: flex;
  gap: 2px;
  min-height: 28px;
  padding: 2px 8px;
  border-bottom: 1px solid #77766e;
}

.menu-bar button {
  padding: 2px 8px;
  color: #181818;
  background: transparent;
  border: 1px solid transparent;
  font: 12px var(--ui);
  cursor: pointer;
}

.menu-bar button:hover {
  background: #f1efe6;
  border-color: #fff #777 #777 #fff;
}

.browser-tools {
  display: grid;
  grid-template-columns: auto auto auto minmax(260px, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 6px 8px;
  border-top: 1px solid white;
  border-bottom: 1px solid #64645f;
  font-family: var(--ui);
}

.tool-button,
.go-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 28px;
  padding: 4px 9px;
  color: #111;
  background: var(--chrome);
  border: 2px solid;
  border-color: white #4d4d4d #4d4d4d white;
  text-decoration: none;
  font-size: 11px;
  cursor: pointer;
}

.tool-button:active,
.go-button:active,
.bevel-button:active,
.send-button:active {
  border-color: #4d4d4d white white #4d4d4d;
  transform: translate(1px, 1px);
}

.tool-button span {
  color: var(--blue);
  font-size: 14px;
}

.address-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
  color: #222;
  font-size: 10px;
}

.address-field input {
  min-width: 0;
  height: 25px;
  padding: 3px 7px;
  color: #111;
  background: white;
  border: 2px solid;
  border-color: #4d4d4d white white #4d4d4d;
  font: 11px var(--mono);
}

.go-button {
  color: white;
  background: #286523;
  font-weight: 900;
}

.page {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 19, 27, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 4px;
  border: 2px solid;
  border-color: #4a4a48 white white #4a4a48;
}

.notice-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 32px;
  color: #f4f4ee;
  background: #11131a;
  border-bottom: 3px double #6b6d77;
  font: 11px var(--mono);
}

.notice-strip__label {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: #10131c;
  background: var(--amber);
  font-weight: 700;
}

.notice-strip__marquee {
  overflow: hidden;
  white-space: nowrap;
}

.notice-strip__marquee span {
  display: inline-block;
  min-width: 100%;
  padding-left: 100%;
  color: #b8bbc8;
  animation: crawl 28s linear infinite;
}

.hit-counter {
  margin-right: 7px;
  padding: 1px 5px;
  color: var(--green);
  background: #050706;
  border: 1px inset #666;
  letter-spacing: 0.12em;
}

@keyframes crawl {
  to { transform: translateX(-100%); }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(360px, 1.35fr) minmax(215px, 0.65fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 610px;
  padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 78px);
  background:
    linear-gradient(130deg, transparent 0 53%, rgba(36, 87, 214, 0.055) 53% 72%, transparent 72%),
    linear-gradient(45deg, rgba(255,255,255,0.55), rgba(255,255,255,0.06));
  border-bottom: 1px solid #84837b;
}

.hero::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 180px;
  height: 84px;
  opacity: 0.33;
  background:
    linear-gradient(135deg, transparent 47%, #111 48% 50%, transparent 51%) 0 0/18px 18px,
    linear-gradient(45deg, transparent 47%, #111 48% 50%, transparent 51%) 0 0/18px 18px;
  pointer-events: none;
}

.identity-window {
  border: 2px solid;
  border-color: white #3e3f48 #3e3f48 white;
  box-shadow: 8px 9px 0 rgba(18, 19, 27, 0.18);
}

.identity-window__bar,
.loading-panel__title,
.contact-window__bar {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  color: white;
  background: #232638;
  border-bottom: 1px solid #07080c;
  font: 700 11px var(--mono);
  letter-spacing: 0.08em;
}

.blink {
  color: var(--green);
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0.15; }
}

.identity-window__body {
  padding: 14px;
  background: #b9b6ac;
}

.pixel-portrait {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f4f0df;
  background:
    linear-gradient(135deg, rgba(50,210,223,0.4), transparent 46%),
    linear-gradient(315deg, rgba(154,112,232,0.42), transparent 44%),
    #151824;
  border: 3px solid;
  border-color: #444 white white #444;
}

.pixel-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(#fff 0.8px, transparent 0.8px);
  background-size: 5px 5px;
}

.pixel-portrait span {
  position: relative;
  z-index: 2;
  padding: 8px 13px 6px;
  border: 2px solid var(--cyan);
  box-shadow: 5px 5px 0 var(--purple), -5px -5px 0 rgba(35, 200, 118, 0.55);
  font: 900 clamp(42px, 6vw, 68px)/1 var(--sans);
  letter-spacing: -0.12em;
}

.pixel-portrait i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: solid var(--cyan);
}

.pixel-portrait i:nth-of-type(1) { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.pixel-portrait i:nth-of-type(2) { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.pixel-portrait i:nth-of-type(3) { right: 12px; bottom: 12px; border-width: 0 2px 2px 0; }
.pixel-portrait i:nth-of-type(4) { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }

.identity-copy {
  padding-top: 15px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--muted);
  font: 700 10px var(--mono);
  letter-spacing: 0.12em;
}

.identity-copy h2 {
  margin: 0 0 14px;
  color: #151722;
  font: 900 clamp(26px, 3vw, 40px)/0.9 var(--sans);
  letter-spacing: -0.055em;
}

.identity-copy h2 span {
  color: #204fc3;
}

.identity-list {
  margin: 0;
  border-top: 1px solid #67675f;
}

.identity-list div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dotted #77766e;
  font: 10px var(--mono);
}

.identity-list dt {
  color: #555660;
}

.identity-list dd {
  margin: 0;
  font-weight: 700;
}

.status-light {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(35, 200, 118, 0.9);
}

.hero-copy__kicker {
  display: inline-block;
  margin: 0 0 15px;
  padding: 4px 7px;
  color: #fff;
  background: #191b26;
  font: 700 10px var(--mono);
  letter-spacing: 0.1em;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font: 900 clamp(46px, 6.2vw, 94px)/0.86 var(--sans);
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: #2655ca;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-copy__lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
}

.hero-copy__note {
  max-width: 670px;
  margin: 14px 0 0;
  padding-left: 12px;
  color: #51535d;
  border-left: 4px solid var(--amber);
  font: 13px/1.5 var(--mono);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.bevel-button,
.send-button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  color: #151515;
  background: #d1cec4;
  border: 3px solid;
  border-color: white #444 #444 white;
  box-shadow: 1px 1px 0 #111;
  text-decoration: none;
  font: 700 11px var(--mono);
  letter-spacing: 0.05em;
  cursor: pointer;
}

.bevel-button--primary,
.send-button {
  color: white;
  background: #224cbe;
  border-color: #7e9cf1 #0b1e5d #0b1e5d #7e9cf1;
}

.loading-panel {
  align-self: stretch;
  min-height: 330px;
  color: #e9eae4;
  background: #151720;
  border: 2px solid;
  border-color: #777982 #020205 #020205 #777982;
  box-shadow: 7px 8px 0 rgba(23, 24, 32, 0.17);
}

.loading-panel__title {
  color: var(--cyan);
  background: #0b0c12;
}

.loading-panel ul {
  margin: 0;
  padding: 8px 12px;
  list-style: none;
}

.loading-panel li {
  padding: 12px 2px;
  border-bottom: 1px dotted #4d4f5b;
  font: 11px/1.35 var(--mono);
}

.loading-panel li span,
.loading-panel li b {
  display: block;
}

.loading-panel li b {
  margin-top: 3px;
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.load-meter {
  height: 17px;
  margin: 12px 14px 9px;
  padding: 2px;
  background: #050608;
  border: 2px solid;
  border-color: #050505 #6c6e77 #6c6e77 #050505;
}

.load-meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 8px, transparent 8px 11px);
}

.loading-panel > p {
  margin: 0 14px 14px;
  color: #8d909c;
  font: 9px/1.45 var(--mono);
}

.tab-nav {
  position: sticky;
  z-index: 20;
  top: 48px;
  display: flex;
  overflow-x: auto;
  padding: 10px 16px 0;
  color: #dddde0;
  background: #161821;
  border-bottom: 4px solid #0e0f16;
  scrollbar-width: thin;
}

.tab-nav a {
  flex: 0 0 auto;
  padding: 10px 16px 9px;
  color: #b4b7c1;
  background: #262934;
  border: 2px solid;
  border-color: #555863 #0b0b10 #0b0b10 #555863;
  text-decoration: none;
  font: 700 10px var(--mono);
  letter-spacing: 0.05em;
}

.tab-nav a + a {
  margin-left: 4px;
}

.tab-nav a:hover,
.tab-nav a.is-active {
  color: #0a0b10;
  background: var(--cyan);
  border-color: #c2fbff #11676e #11676e #c2fbff;
}

.section {
  padding: clamp(60px, 7vw, 104px) clamp(22px, 6vw, 92px);
  border-bottom: 1px solid #8b8a83;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 35px;
  padding-bottom: 12px;
  border-bottom: 4px double #272933;
}

.section-header > div {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.section-header h2 {
  margin: 0;
  font: 900 clamp(28px, 4vw, 51px)/1 var(--sans);
  letter-spacing: -0.055em;
}

.section-number {
  color: #2853c3;
  font: 900 12px var(--mono);
}

.section-header > p {
  max-width: 360px;
  margin: 0;
  color: #5b5c66;
  text-align: right;
  font: 11px/1.4 var(--mono);
}

.about {
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(154,112,232,0.08) 67% 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.65fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.text-file {
  background: #fbfaf4;
  border: 2px solid;
  border-color: #4b4b4b white white #4b4b4b;
  box-shadow: 10px 11px 0 rgba(39, 41, 51, 0.14);
}

.text-file__menu {
  padding: 5px 10px;
  color: #333;
  background: #d3d0c5;
  border-bottom: 1px solid #777;
  font: 11px var(--ui);
}

.text-file__content {
  min-height: 380px;
  padding: clamp(24px, 4vw, 52px);
  background:
    linear-gradient(90deg, transparent 0 55px, rgba(229,86,111,0.22) 55px 56px, transparent 56px),
    repeating-linear-gradient(#fffef9 0 31px, #d6e4ec 31px 32px);
  font: 15px/2.15 var(--mono);
}

.text-file__content p {
  margin: 0 0 12px;
}

.text-file__content p span {
  display: inline-block;
  width: 35px;
  margin-right: 20px;
  color: #999;
  text-align: right;
  user-select: none;
}

.text-cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  margin-left: 56px;
  vertical-align: middle;
  background: #222;
  animation: blink 1s step-end infinite;
}

.profile-sheet {
  position: relative;
  padding: 26px;
  background: #b8c6bb;
  border: 2px solid;
  border-color: white #3e4540 #3e4540 white;
  box-shadow: 9px 10px 0 rgba(39, 41, 51, 0.16);
  transform: rotate(0.65deg);
}

.profile-sheet__stamp {
  position: absolute;
  top: 21px;
  right: 18px;
  padding: 6px;
  color: #9a2636;
  border: 3px double #9a2636;
  font: 900 9px/1.1 var(--mono);
  text-align: center;
  transform: rotate(7deg);
}

.profile-sheet h3 {
  margin: 0 0 21px;
  font: 900 24px/1 var(--sans);
}

.profile-sheet dl {
  margin: 0;
}

.profile-sheet dl div {
  padding: 10px 0;
  border-top: 1px dotted #616d64;
}

.profile-sheet dt {
  color: #556057;
  font: 700 9px var(--mono);
  text-transform: uppercase;
}

.profile-sheet dd {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.evidence {
  color: #eff0eb;
  background:
    radial-gradient(circle at 100% 0, rgba(50,210,223,0.09), transparent 32rem),
    #14161e;
}

.evidence .section-header {
  border-bottom-color: #686a75;
}

.evidence .section-number {
  color: var(--cyan);
}

.evidence .section-header > p {
  color: #9da0ac;
}

.console-window {
  margin-bottom: 26px;
  border: 2px solid;
  border-color: #72747f #020204 #020204 #72747f;
  box-shadow: 8px 9px 0 #08090d;
}

.console-window__bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  color: #14151c;
  background: #b9b6ab;
  font: 700 10px var(--mono);
}

.console-window__body {
  padding: 17px 20px;
  color: #d8d9d2;
  background: #050607;
  font: 12px/1.6 var(--mono);
}

.console-window__body p {
  margin: 0;
}

.console-window__body b {
  color: var(--cyan);
}

.console-ok {
  color: var(--green);
}

.console-dim {
  color: #777a83;
}

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

.evidence-card {
  min-height: 260px;
  padding: 19px;
  color: #e9e9e4;
  background: #1c1e27;
  border: 1px solid #494b56;
  border-left: 5px solid #6f7280;
  box-shadow: inset 1px 1px rgba(255, 255, 255, 0.035), 4px 5px 0 #090a0e;
}

.evidence-card--active { border-left-color: var(--cyan); }
.evidence-card--flag { border-left-color: var(--green); }
.evidence-card--gold { border-left-color: var(--amber); }

.evidence-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  color: #858895;
  font: 700 9px var(--mono);
  letter-spacing: 0.1em;
}

.evidence-card--active .evidence-card__top span:last-child { color: var(--cyan); }
.evidence-card--flag .evidence-card__top span:last-child { color: var(--green); }
.evidence-card--gold .evidence-card__top span:last-child { color: var(--amber); }

.evidence-card h3 {
  margin: 0 0 10px;
  font: 800 20px/1.1 var(--sans);
}

.evidence-card p {
  margin: 0;
  color: #aaadb7;
  font-size: 13px;
}

.evidence-card ul {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  color: #858894;
  font: 10px/1.7 var(--mono);
}

.evidence-card li::before {
  content: "> ";
  color: var(--cyan);
}

.result-code {
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 8px;
  color: #10120f;
  background: var(--green);
  font: 900 15px var(--mono);
  box-shadow: 3px 3px 0 #070807;
}

.evidence-card--gold .result-code {
  background: var(--amber);
}

.project {
  background:
    linear-gradient(132deg, transparent 0 45%, rgba(36,87,214,0.08) 45% 65%, transparent 65%),
    #cbc9bf;
}

.case-file {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.8fr);
  color: #eee;
  background: #171924;
  border: 2px solid;
  border-color: #72747f #050506 #050506 #72747f;
  box-shadow: 12px 13px 0 rgba(39, 41, 51, 0.22);
}

.case-file__side {
  padding: 18px;
  background: #0d0f16;
  border-right: 1px solid #4f515c;
}

.case-file__classification {
  margin-bottom: 14px;
  padding: 5px 7px;
  color: #101119;
  background: var(--red);
  font: 900 10px var(--mono);
}

.case-file__art {
  min-height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(50,210,223,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,210,223,0.05) 1px, transparent 1px),
    #07090d;
  background-size: 17px 17px;
  border: 1px solid #383b48;
}

.radar {
  position: relative;
  width: 180px;
  height: 180px;
  border: 1px solid #246b70;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(50, 210, 223, 0.08), 0 0 20px rgba(50, 210, 223, 0.06);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: #246b70;
}

.radar::before { top: 50%; left: 0; width: 100%; height: 1px; }
.radar::after { top: 0; left: 50%; width: 1px; height: 100%; }

.radar i {
  position: absolute;
  inset: 20%;
  border: 1px solid #214e53;
  border-radius: 50%;
}

.radar i:nth-child(2) { inset: 38%; }
.radar i:nth-child(3) {
  inset: 49% 0 auto 50%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform-origin: left center;
  animation: sweep 5s linear infinite;
}

.radar span {
  position: absolute;
  top: 35%;
  left: 63%;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--red);
}

@keyframes sweep { to { transform: rotate(360deg); } }

.case-file__side > p {
  margin: 14px 0 0;
  color: #727580;
  font: 9px/1.5 var(--mono);
}

.case-file__main {
  padding: clamp(28px, 5vw, 66px);
}

.case-file__labels,
.case-file__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-file__labels span,
.case-file__stack span {
  padding: 4px 7px;
  border: 1px solid #555866;
  font: 700 9px var(--mono);
}

.case-file__labels span:nth-child(1) { color: var(--cyan); border-color: #246c72; }
.case-file__labels span:nth-child(2) { color: var(--purple); border-color: #684f91; }
.case-file__labels span:nth-child(3) { color: var(--amber); border-color: #7e6129; }

.case-file h3 {
  margin: 24px 0 14px;
  font: 900 clamp(35px, 5vw, 68px)/0.95 var(--sans);
  letter-spacing: -0.06em;
}

.case-file__lede {
  max-width: 860px;
  margin: 0;
  color: #c4c6cf;
  font-size: clamp(16px, 1.8vw, 21px);
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 28px 0;
  padding: 15px;
  color: #d7d9e0;
  background: #090a0f;
  border: 1px inset #545660;
  font: 10px var(--mono);
}

.pipeline span {
  padding: 5px 7px;
  color: #10131a;
  background: #bfc1c7;
}

.pipeline b {
  color: var(--green);
}

.case-file__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px dotted #4f515e;
}

.case-file__facts b {
  color: var(--cyan);
  font: 700 9px var(--mono);
  letter-spacing: 0.1em;
}

.case-file__facts p {
  margin: 8px 0 0;
  color: #9fa1ab;
  font-size: 12px;
}

.case-file__stack {
  margin-top: 28px;
}

.case-file__stack span {
  color: #afb2bc;
  background: #22242e;
}

.toolkit {
  background: #e2dfd4;
}

.toolbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.toolbox-grid article {
  min-height: 285px;
  padding: 22px;
  background: #c9c6bc;
  border: 3px solid;
  border-color: white #56564f #56564f white;
  box-shadow: 5px 6px 0 rgba(39, 41, 51, 0.14);
}

.toolbox-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--cyan);
  border: 2px solid;
  border-color: white #313131 #313131 white;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.28);
  font: 900 24px var(--mono);
}

.toolbox-icon--green { background: var(--green); }
.toolbox-icon--amber { background: var(--amber); }
.toolbox-icon--purple { background: var(--purple); }

.toolbox-grid h3 {
  margin: 20px 0 10px;
  font: 900 23px/1 var(--sans);
}

.toolbox-grid p {
  margin: 0;
  color: #474852;
  font-size: 13px;
}

.toolbox-grid article > span {
  display: inline-block;
  margin-top: 19px;
  padding: 3px 5px;
  color: #e7e8e2;
  background: #252730;
  font: 700 9px var(--mono);
  letter-spacing: 0.07em;
}

.proof {
  background:
    radial-gradient(circle at 12% 24%, rgba(241,180,68,0.13), transparent 25rem),
    #c8c5ba;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.disk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 12px;
}

.cert-disk {
  min-height: 220px;
  padding: 20px 13px;
  color: #20212a;
  background: transparent;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}

.cert-disk:hover,
.cert-disk:focus-visible {
  background: rgba(255,255,255,0.35);
  border-style: dotted;
  border-color: #30313a;
}

.disk-icon {
  position: relative;
  width: 94px;
  height: 103px;
  display: block;
  margin: 0 auto 13px;
  background: #363944;
  border: 3px solid;
  border-color: #737783 #111217 #111217 #737783;
  box-shadow: 6px 7px 0 rgba(30,31,38,0.2);
}

.disk-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17px;
  width: 53px;
  height: 39px;
  background: #c6c4bb;
  border: 2px solid #0f1015;
}

.disk-icon::after {
  content: "CERT";
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #121318;
  background: #efeee6;
  border: 2px solid #18191f;
  font: 700 9px var(--mono);
}

.disk-icon i {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 49px;
  width: 12px;
  height: 25px;
  background: #444650;
  border: 1px solid #15161b;
}

.cert-disk b,
.cert-disk small {
  display: block;
}

.cert-disk b {
  font: 700 10px var(--mono);
}

.cert-disk small {
  margin-top: 7px;
  color: #5b5c63;
  font-size: 11px;
  line-height: 1.35;
}

.proof-note {
  position: relative;
  padding: 36px 30px 30px;
  background: #f5e889;
  box-shadow: 9px 12px 0 rgba(39, 41, 51, 0.15);
  transform: rotate(-0.8deg);
}

.proof-note__pin {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 2px solid #7b2434;
  border-radius: 50%;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.25);
}

.proof-note h3 {
  margin: 0 0 14px;
  font: 900 27px/1 var(--sans);
}

.proof-note p {
  font: 13px/1.6 var(--mono);
}

.secret-button {
  width: 100%;
  margin-top: 9px;
  padding: 11px 8px;
  color: #ebecf2;
  background: #1a1c25;
  border: 2px dashed var(--green);
  font: 700 10px var(--mono);
  cursor: pointer;
}

.contact {
  color: #ebebe7;
  background: #11131a;
}

.contact-window {
  border: 2px solid;
  border-color: #6e707a #020204 #020204 #6e707a;
  box-shadow: 10px 11px 0 #07080b;
}

.contact-window__bar {
  background: linear-gradient(90deg, #244ebb, #61379a);
}

.contact-window__body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 7vw, 110px);
  padding: clamp(30px, 6vw, 76px);
  background: #1a1c25;
}

.contact-window h2 {
  margin: 0 0 13px;
  font: 900 clamp(39px, 6vw, 78px)/0.95 var(--sans);
  letter-spacing: -0.06em;
}

.contact-window__body > div:first-child > p:last-child {
  max-width: 700px;
  color: #a7a9b3;
}

.contact-fields {
  display: grid;
  align-content: center;
  gap: 10px;
}

.contact-fields > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px;
  padding: 9px;
  color: #cfd0d6;
  background: #090a0f;
  border: 2px solid;
  border-color: #050505 #4e5059 #4e5059 #050505;
  font: 10px var(--mono);
}

.contact-fields span {
  color: var(--cyan);
}

.contact-fields a {
  overflow-wrap: anywhere;
}

.send-button {
  margin-top: 8px;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: #c4c5cb;
  background: #08090d;
  font: 9px/1.5 var(--mono);
  letter-spacing: 0.04em;
}

.page-footer p {
  margin: 0;
}

.status-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  min-height: 27px;
  padding: 3px;
  color: #24242a;
  background: var(--chrome);
  font: 10px var(--ui);
}

.status-bar span {
  padding: 3px 6px;
  border: 1px solid;
  border-color: #777 white white #777;
}

.helper {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 340px;
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.34));
  transition: opacity 160ms ease, transform 160ms ease;
}

.helper.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}

.helper__face {
  position: relative;
  flex: 0 0 74px;
  width: 74px;
  height: 86px;
  background: var(--purple);
  border: 3px solid;
  border-color: #d9c7ff #3e256c #3e256c #d9c7ff;
  border-radius: 36px 36px 27px 27px;
}

.helper__face::after {
  content: "";
  position: absolute;
  inset: 50px 16px 15px;
  border-bottom: 3px solid #261442;
  border-radius: 50%;
}

.helper__face i {
  position: absolute;
  top: 29px;
  width: 9px;
  height: 12px;
  background: #fff;
  border: 2px solid #2d1a4b;
  border-radius: 50%;
}

.helper__face i:first-child { left: 18px; }
.helper__face i:nth-child(2) { right: 18px; }

.helper__face b {
  position: absolute;
  top: -17px;
  left: 31px;
  width: 9px;
  height: 21px;
  background: var(--purple);
  border: 2px solid #3e256c;
  border-radius: 6px;
}

.helper__bubble {
  min-width: 210px;
  padding: 12px;
  color: #17171b;
  background: #fff8c9;
  border: 2px solid;
  border-color: white #48473c #48473c white;
  font: 10px/1.45 var(--ui);
}

.helper__bubble strong {
  font-family: var(--mono);
}

.helper__bubble p {
  margin: 6px 0 9px;
}

.helper__bubble button,
.helper__close {
  color: #151515;
  background: #d2cfc4;
  border: 2px solid;
  border-color: white #444 #444 white;
  font: 700 9px var(--ui);
  cursor: pointer;
}

.helper__close {
  position: absolute;
  z-index: 2;
  top: -8px;
  right: -7px;
  width: 20px;
  height: 20px;
  padding: 0;
}

.classic-dialog {
  width: min(820px, calc(100vw - 24px));
  max-height: calc(100vh - 30px);
  padding: 3px;
  overflow: hidden;
  color: #151515;
  background: var(--chrome);
  border: 3px solid;
  border-color: white #303030 #303030 white;
  box-shadow: 14px 16px 0 rgba(0,0,0,0.35);
}

.classic-dialog::backdrop {
  background: rgba(5, 7, 12, 0.76);
  backdrop-filter: blur(2px);
}

.classic-dialog__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
  padding: 3px 4px 3px 8px;
  color: white;
  background: linear-gradient(90deg, #171a80, #5d2e96);
  font: 700 11px var(--ui);
}

.classic-dialog__bar button {
  width: 23px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--chrome);
  border: 2px solid;
  border-color: white #444 #444 white;
  cursor: pointer;
}

.classic-dialog__content {
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 12px;
  background: #30323b;
  border: 2px inset #888;
}

.classic-dialog__content img {
  display: block;
  width: 100%;
  height: auto;
  background: white;
}

.classic-dialog__actions {
  display: flex;
  justify-content: flex-end;
  padding: 8px;
}

.classic-dialog__actions .bevel-button {
  min-width: 90px;
  min-height: 30px;
}

.flag-dialog {
  width: min(620px, calc(100vw - 24px));
}

.flag-dialog__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
  background: #f2efe5;
}

.flag-dialog__content h2 {
  margin: 0 0 6px;
  font: 900 30px/1 var(--sans);
}

.flag-dialog__content p {
  margin: 9px 0 0;
  color: #60616a;
  font: 11px var(--mono);
}

.flag-dialog code {
  display: block;
  padding: 8px;
  color: #06120a;
  background: #9be8b9;
  border: 2px inset #777;
  font: 700 12px var(--mono);
  overflow-wrap: anywhere;
}

.flag-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #102116;
  background: var(--green);
  border: 3px solid;
  border-color: #c3f8d6 #176b3c #176b3c #c3f8d6;
  font-size: 35px;
}

.message-dialog__text {
  min-height: 90px;
  margin: 0;
  padding: 22px;
  background: #efede4;
  font: 13px/1.5 var(--mono);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(250px, 0.8fr) 1.4fr;
  }

  .loading-panel {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .loading-panel ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .loading-panel li {
    padding: 10px;
    border-right: 1px dotted #4d4f5b;
    border-bottom: 0;
  }

  .evidence-grid,
  .toolbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-file__facts {
    grid-template-columns: 1fr;
  }

  .case-file__facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }

  .case-file__facts p {
    margin: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 46px;
  }

  .os-bar {
    grid-template-columns: 1fr auto;
  }

  .os-bar__center {
    display: none;
  }

  .desktop {
    padding: 57px 7px 26px;
  }

  .browser-window {
    box-shadow: 5px 7px 0 rgba(0,0,0,0.3);
  }

  .menu-bar {
    display: none;
  }

  .browser-tools {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .browser-tools > .tool-button:nth-child(2),
  .browser-tools > .tool-button:nth-child(3),
  .address-field > span {
    display: none;
  }

  .address-field {
    display: block;
  }

  .notice-strip {
    grid-template-columns: auto 1fr;
  }

  .hit-counter {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .identity-window {
    max-width: 470px;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .loading-panel ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .loading-panel li:nth-child(2n) {
    border-right: 0;
  }

  .tab-nav {
    top: 48px;
  }

  .section-header {
    display: block;
  }

  .section-header > p {
    margin-top: 9px;
    text-align: left;
  }

  .about-grid,
  .case-file,
  .proof-layout,
  .contact-window__body {
    grid-template-columns: 1fr;
  }

  .case-file__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid #4f515c;
  }

  .case-file__classification {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .case-file__art {
    min-height: 180px;
  }

  .case-file__side > p {
    align-self: end;
  }

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

  .page-footer {
    display: grid;
  }

  .status-bar {
    grid-template-columns: 1fr auto;
  }

  .status-bar span:nth-child(2) {
    display: none;
  }

  .helper {
    right: 8px;
    bottom: 8px;
    max-width: 280px;
  }

  .helper__face {
    flex-basis: 58px;
    width: 58px;
    height: 68px;
  }

  .helper__face i { top: 22px; }
  .helper__face i:first-child { left: 13px; }
  .helper__face i:nth-child(2) { right: 13px; }
  .helper__face::after { inset: 40px 12px 11px; }
  .helper__face b { left: 23px; }
  .helper__bubble { min-width: 0; }
}

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

  .os-brand {
    padding-left: 7px;
  }

  .os-bar__right {
    gap: 7px;
    padding: 0 7px;
  }

  .tiny-button {
    display: none;
  }

  .title-bar {
    font-size: 9px;
  }

  .window-controls span:nth-child(-n+2) {
    display: none;
  }

  .browser-tools {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .browser-tools > .tool-button:first-child {
    display: none;
  }

  .hero,
  .section {
    padding-right: 17px;
    padding-left: 17px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 15vw, 64px);
  }

  .identity-window__body {
    padding: 9px;
  }

  .loading-panel ul,
  .evidence-grid,
  .toolbox-grid {
    grid-template-columns: 1fr;
  }

  .loading-panel li {
    border-right: 0;
    border-bottom: 1px dotted #4d4f5b;
  }

  .text-file__content {
    padding: 22px 14px;
    background: repeating-linear-gradient(#fffef9 0 31px, #d6e4ec 31px 32px);
    font-size: 12px;
  }

  .text-file__content p span {
    width: 24px;
    margin-right: 8px;
  }

  .case-file__side {
    grid-template-columns: 1fr;
  }

  .case-file__art {
    min-height: 210px;
  }

  .pipeline {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .pipeline b:last-of-type {
    display: none;
  }

  .case-file__facts div {
    grid-template-columns: 1fr;
  }

  .disk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
  }

  .cert-disk {
    min-height: 205px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .contact-window__body {
    padding: 28px 17px;
  }

  .contact-fields > div {
    grid-template-columns: 1fr;
  }

  .helper {
    max-width: 245px;
  }

  .helper__face {
    display: none;
  }

  .flag-dialog__content {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .notice-strip__marquee span {
    padding-left: 10px;
    transform: none;
  }
}
