:root {
  color-scheme: dark;
  --bar-height: 26px;
  --gap: 5px;
  --gap-out: 10px;
  --window-border: 2px;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --bg: #1a1b26;
  --bg-strong: #16161e;
  --bg-soft: #24283b;
  --fg: #c0caf5;
  --muted: #787c99;
  --accent: #7aa2f7;
  --accent-2: #73daca;
  --green: #9ece6a;
  --red: #f7768e;
  --yellow: #e0af68;
  --border: #3b4261;
  --selection: rgb(122 162 247 / 24%);
  --wallpaper: url("assets/themes/1-quattro.webp");
}

body[data-theme="retro-82"] {
  color-scheme: dark;
  --bg: #000000;
  --bg-strong: #050805;
  --bg-soft: #0c170c;
  --fg: #9dff9d;
  --muted: #5c8c5c;
  --accent: #33ff33;
  --accent-2: #b6ff00;
  --green: #33ff33;
  --red: #ff5f5f;
  --yellow: #eaff00;
  --border: #286328;
  --selection: rgb(51 255 51 / 20%);
  --wallpaper: url("assets/themes/retro-82.webp");
}

body[data-theme="matte-black"] {
  color-scheme: dark;
  --bg: #111111;
  --bg-strong: #080808;
  --bg-soft: #1a1a1a;
  --fg: #f2f2f2;
  --muted: #8b8b8b;
  --accent: #dedede;
  --accent-2: #ffffff;
  --green: #b7d99c;
  --red: #e08383;
  --yellow: #dbc383;
  --border: #343434;
  --selection: rgb(255 255 255 / 14%);
  --wallpaper: url("assets/themes/matte-black.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  height: 100svh;
  min-width: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--bg-strong) var(--wallpaper) center / cover fixed;
  color: var(--fg);
  font: 12px/1.5 var(--font-mono);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: var(--bar-height) 0 0;
  z-index: -1;
  background:
    linear-gradient(rgb(0 0 0 / 28%), rgb(0 0 0 / 28%)),
    radial-gradient(circle at 50% 30%, transparent 0 24%, rgb(0 0 0 / 25%) 78%);
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 1px solid var(--accent-2);
  outline-offset: 2px;
}

.window:focus-visible {
  outline: 0;
}

::selection {
  background: var(--selection);
  color: var(--fg);
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  top: calc(var(--bar-height) + var(--gap));
  left: var(--gap);
  width: auto;
  height: auto;
  padding: 8px 12px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  border: 1px solid var(--accent);
  background: var(--bg-strong);
  color: var(--fg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--bar-height);
  padding: 0 8px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-strong) 94%, transparent);
  backdrop-filter: blur(12px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.shell-bar__left,
.shell-bar__right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3px;
}

.shell-bar__right {
  justify-content: flex-end;
  gap: 10px;
}

.shell-logo,
.workspace-link,
.theme-cycle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  border: 0;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
}

.shell-logo {
  width: 24px;
  padding: 0;
}

.shell-logo:hover,
.shell-logo:focus-visible {
  background: var(--selection);
}

.workspace-link {
  width: 22px;
}

.workspace-link.is-active {
  background: var(--accent);
  color: var(--bg-strong);
}

.theme-cycle {
  gap: 6px;
  padding: 0 4px;
}

.theme-cycle:hover {
  color: var(--accent-2);
}

.theme-cycle__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.shell-clock {
  color: var(--fg);
  text-align: center;
}

.bar-glyph {
  color: var(--muted);
}

main {
  position: fixed;
  inset: var(--bar-height) 0 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

main::-webkit-scrollbar {
  display: none;
}

.workspace {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 0 0 100%;
  padding: var(--gap-out);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.workspace--watch {
  background: color-mix(in srgb, var(--bg-strong) 28%, transparent);
}

.workspace-grid {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  gap: var(--gap);
}

.workspace-grid.tiles-1 {
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
}

.workspace-grid.tiles-2[data-orientation="columns"] {
  grid-template: minmax(0, 1fr) / repeat(2, minmax(0, 1fr));
}

.workspace-grid.tiles-2[data-orientation="rows"] {
  grid-template: repeat(2, minmax(0, 1fr)) / minmax(0, 1fr);
}

.workspace-grid.tiles-3[data-orientation="columns"] {
  grid-template: repeat(2, minmax(0, 1fr)) / repeat(2, minmax(0, 1fr));
}

.workspace-grid.tiles-3[data-orientation="columns"] > :first-child {
  grid-row: 1 / -1;
}

.workspace-grid.tiles-3[data-orientation="rows"] {
  grid-template: repeat(2, minmax(0, 1fr)) / repeat(2, minmax(0, 1fr));
}

.workspace-grid.tiles-3[data-orientation="rows"] > :first-child {
  grid-column: 1 / -1;
}

.window {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: var(--window-border) solid var(--border);
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  color: var(--fg);
  box-shadow: 0 0 3px rgb(26 26 26 / 93%);
}

.window.is-focused {
  border-color: transparent;
  border-image: linear-gradient(45deg, var(--accent-2), var(--green)) 1;
}

.window__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 31px;
  padding: 0 9px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-strong);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.window__app,
.window__meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window__meta {
  margin-left: 12px;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
}

.window__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 27px;
  padding: 4px 9px;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: var(--bg-strong);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.window__statusbar strong {
  color: var(--accent-2);
}

.status-action,
.window__statusbar button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.status-action:hover,
.window__statusbar button:hover {
  color: var(--accent-2);
}

.about-window {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.about-window__body {
  display: grid;
  grid-template-columns: minmax(340px, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  padding: clamp(28px, 5vw, 74px);
  gap: clamp(28px, 6vw, 84px);
  overflow: auto;
}

.about-brand {
  min-width: 0;
  text-align: center;
}

.ascii-wordmark {
  position: relative;
  display: grid;
  width: min(100%, 620px);
  margin-inline: auto;
  overflow: hidden;
  place-items: center;
}

.ascii-wordmark pre {
  max-width: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--green) 0 42%, var(--accent-2) 49%, #ffffff 50%, var(--accent-2) 51%, var(--green) 58% 100%);
  background-clip: text;
  background-size: 240% 100%;
  color: transparent;
  filter: drop-shadow(0 0 1px color-mix(in srgb, var(--green) 65%, transparent));
  font: 400 clamp(5px, 0.74vw, 10.6px) / 1.09375 var(--font-mono);
  letter-spacing: -0.0425em;
  white-space: pre;
  animation:
    logo-etch 1.5s cubic-bezier(0.22, 1, 0.36, 1) 180ms both,
    logo-color-sweep 1.5s cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.ascii-wordmark__laser {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #ffffff;
  box-shadow:
    0 0 4px var(--accent-2),
    0 0 12px var(--accent-2);
  opacity: 0;
  animation: laser-sweep 1.5s cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.about-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.26em;
}

.about-copy {
  max-width: 540px;
}

.about-copy h1 {
  max-width: 17ch;
  margin: 0 0 24px;
  color: var(--fg);
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-copy h1 a {
  color: var(--green);
}

.about-copy p {
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--fg) 82%, var(--muted));
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.72;
}

.about-copy__challenge {
  padding-left: 13px;
  border-left: 1px solid var(--accent);
}

.iso-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 27px;
  padding: 13px 14px;
  gap: 12px;
  border: 1px solid var(--accent);
  background: var(--selection);
  color: var(--fg);
  text-decoration: none;
}

.iso-action:hover {
  background: var(--accent);
  color: var(--bg-strong);
}

.iso-action__prompt {
  color: var(--green);
  font-size: 18px;
}

.iso-action:hover .iso-action__prompt {
  color: currentColor;
}

.iso-action strong,
.iso-action small {
  display: block;
}

.iso-action strong {
  font-size: 13px;
}

.iso-action small {
  margin-top: 1px;
  color: var(--muted);
}

.iso-action:hover small {
  color: currentColor;
}

.iso-action__key {
  border: 1px solid currentColor;
  padding: 2px 5px;
  font-size: 9px;
  font-weight: 700;
}

.workspace-grid:not(.tiles-1) .about-window__body {
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(22px, 4vw, 44px);
}

.workspace-grid:not(.tiles-1) .about-brand {
  display: none;
}

.workspace-grid:not(.tiles-1) .about-copy h1 {
  font-size: clamp(23px, 3vw, 34px);
}

.notification {
  position: fixed;
  top: calc(var(--bar-height) + var(--gap));
  right: var(--gap);
  z-index: 70;
  width: min(380px, calc(100vw - (var(--gap) * 2)));
  overflow: hidden;
  border: var(--window-border) solid var(--border);
  border-radius: 0;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 0 3px rgb(26 26 26 / 93%);
  font-family: "Liberation Sans", Arial, sans-serif;
}

.notification:hover {
  border-color: var(--accent);
}

.notification__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 62px;
  padding: 9px 34px 9px 12px;
  gap: 10px;
  color: var(--fg);
  text-decoration: none;
}

.notification__icon {
  color: var(--accent);
  font: 17px/1 var(--font-mono);
}

.notification__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.notification__copy strong {
  overflow: hidden;
  color: var(--fg);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification__copy span {
  color: color-mix(in srgb, var(--fg) 82%, var(--muted));
  font-size: 13px;
}

.notification s {
  text-decoration: line-through;
}

.notification__close {
  position: absolute;
  top: 3px;
  right: 3px;
  display: grid;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 15px/1 "Liberation Sans", Arial, sans-serif;
  opacity: 0;
  cursor: pointer;
  place-items: center;
}

.notification:hover .notification__close,
.notification__close:focus-visible {
  opacity: 1;
}

.notification__close:hover {
  color: var(--fg);
}

.tile-layout {
  display: grid;
  width: 100%;
  height: 100%;
  gap: var(--gap);
}

.tile-layout--videos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-window {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: var(--fg);
  text-decoration: none;
}

.video-window:hover {
  border-color: var(--accent);
}

.video-window__poster {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background: var(--bg-strong);
  place-items: center;
}

.video-window__poster::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(transparent 64%, rgb(0 0 0 / 58%));
  content: "";
}

.video-window__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.video-window:hover img {
  filter: saturate(1) contrast(1.02);
}

.video-window__play {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  padding-left: 4px;
  border: 1px solid var(--accent-2);
  background: color-mix(in srgb, var(--bg-strong) 88%, transparent);
  color: var(--accent-2);
  font-size: 18px;
  place-items: center;
}

.video-window:hover .video-window__play {
  background: var(--accent-2);
  color: var(--bg-strong);
}

.browser-tile,
.terminal-tile {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  animation: tile-in 180ms ease-out both;
}

.browser-tile__body {
  position: relative;
  min-height: 0;
  background: #ffffff;
}

.browser-tile iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.browser-tile__loading {
  position: absolute;
  inset: 0;
  display: grid;
  background: var(--bg);
  color: var(--muted);
  place-items: center;
}

.browser-tile.is-loaded .browser-tile__loading {
  display: none;
}

.tile-external {
  color: var(--accent-2);
  text-decoration: none;
}

.tile-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.tile-close:hover {
  color: var(--red);
}

.terminal-tile__body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 14px;
  overflow: auto;
  background: var(--bg-strong);
  color: var(--fg);
}

.terminal-output {
  margin: 0;
  white-space: pre-wrap;
}

.terminal-output .terminal-dim {
  color: var(--muted);
}

.terminal-output .terminal-success {
  color: var(--green);
}

.terminal-form {
  display: flex;
  align-items: center;
  margin-top: 7px;
  gap: 7px;
}

.terminal-form label {
  color: var(--green);
}

.terminal-form input {
  min-width: 0;
  flex: 1;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  caret-color: var(--accent-2);
}

.menu-overlay {
  position: fixed;
  inset: var(--bar-height) 0 0;
  z-index: 80;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgb(0 0 0 / 48%);
  cursor: default;
}

.menu-window {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: min(300px, calc(100vw - (var(--gap) * 2)));
  max-height: calc(100% - (var(--gap) * 2));
  padding: 18px;
  gap: 8px;
  overflow: hidden;
  border: var(--window-border) solid var(--border);
  border-radius: 0;
  background: var(--bg);
  box-shadow: 0 0 3px rgb(26 26 26 / 93%);
  transform: translate(-50%, -50%);
}

.menu-window.is-pinned {
  top: var(--menu-pinned-top);
  transform: translateX(-50%);
}

.menu-prompt {
  width: 100%;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  caret-color: var(--accent-2);
  font: 500 13px/1.4 var(--font-mono);
}

.menu-prompt:focus,
.menu-prompt:focus-visible {
  outline: 0;
}

.menu-prompt::placeholder {
  color: var(--fg);
  opacity: 0.58;
}

.menu-results {
  display: grid;
  min-height: 0;
  max-height: calc(100svh - var(--bar-height) - 126px);
  gap: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.menu-results::-webkit-scrollbar {
  display: none;
}

.menu-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 14px;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
}

.menu-row.has-detail {
  height: 58px;
}

.menu-row:hover,
.menu-row.is-selected {
  border-color: color-mix(in srgb, var(--accent) 70%, transparent);
  background: var(--selection);
  color: var(--fg);
}

.menu-row:focus-visible {
  outline: 0;
}

.menu-row__icon {
  display: grid;
  width: 36px;
  color: inherit;
  font: 16px/1 var(--font-mono);
  text-align: center;
  place-items: center;
}

.menu-row__copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.menu-row__label,
.menu-row__detail {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-row__label {
  font: 500 13px/1.3 var(--font-mono);
}

.menu-row__detail {
  color: var(--fg);
  font: 400 10px/1.3 var(--font-mono);
  opacity: 0.52;
}

.menu-row__trail {
  color: inherit;
  font: 400 14px/1 var(--font-mono);
  opacity: 0.36;
  text-align: right;
}

.menu-row.is-informational {
  cursor: default;
}

.menu-empty {
  display: grid;
  min-height: 120px;
  gap: 8px;
  color: var(--fg);
  opacity: 0.7;
  text-align: center;
  place-content: center;
}

.menu-empty span {
  color: var(--accent-2);
  font-size: 24px;
}

.menu-empty strong {
  font: 500 13px/1.4 var(--font-mono);
}

.shell-toast {
  position: fixed;
  top: calc(var(--bar-height) + var(--gap) + 70px);
  right: var(--gap);
  z-index: 120;
  width: min(380px, calc(100vw - (var(--gap) * 2)));
  padding: 12px;
  border: var(--window-border) solid var(--accent);
  border-radius: 0;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 0 3px rgb(26 26 26 / 93%);
  font: 700 13px/1.45 "Liberation Sans", Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 120ms ease-out,
    transform 120ms ease-out;
}

.shell-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes logo-etch {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes logo-color-sweep {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes laser-sweep {
  0% {
    left: 0;
    opacity: 0;
  }

  8%,
  88% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 2px);
    opacity: 0;
  }
}

@keyframes tile-in {
  from {
    opacity: 0;
    transform: scale(0.992);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 850px) {
  .workspace-grid.tiles-1 .about-window__body {
    grid-template-columns: minmax(0, 1fr);
    padding: 34px;
  }

  .about-copy {
    max-width: 620px;
    margin-inline: auto;
  }

  .tile-layout--videos {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 660px) {
  .shell-bar {
    grid-template-columns: 1fr auto;
  }

  .shell-clock,
  .bar-glyph,
  #themeLabel {
    display: none;
  }

  .workspace {
    padding: var(--gap);
  }

  .workspace-grid,
  .workspace-grid.tiles-2[data-orientation],
  .workspace-grid.tiles-3[data-orientation] {
    height: auto;
    min-height: calc(100svh - var(--bar-height) - (var(--gap) * 2));
    grid-template: none;
    grid-auto-flow: row;
    grid-auto-rows: minmax(610px, calc(100svh - var(--bar-height) - (var(--gap) * 2)));
  }

  .workspace-grid.tiles-3[data-orientation] > :first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .about-window__body,
  .workspace-grid:not(.tiles-1) .about-window__body,
  .workspace-grid.tiles-1 .about-window__body {
    padding: 24px 20px;
  }

  .about-copy h1,
  .workspace-grid:not(.tiles-1) .about-copy h1 {
    max-width: 15ch;
    font-size: 30px;
  }

  .window__statusbar {
    overflow-x: auto;
  }

  .about-window .window__statusbar {
    justify-content: flex-start;
  }

  .about-window .window__statusbar > :last-child {
    margin-left: auto;
  }

  .iso-action__key {
    display: none;
  }

  .notification {
    right: var(--gap);
    left: var(--gap);
    width: auto;
  }

  .menu-overlay {
    padding: var(--gap);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ascii-wordmark pre,
  .ascii-wordmark__laser,
  .browser-tile,
  .terminal-tile {
    animation: none;
  }

  .ascii-wordmark pre {
    clip-path: none;
  }

  .ascii-wordmark__laser {
    display: none;
  }
}
