@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/ibm-plex-mono-latin-400.woff2') format('woff2');
}
:root {
  --fg: #eeeeea;
  --font: 'IBM Plex Mono', Menlo, Consolas, Monaco, monospace;
  font-family: var(--font);
  color: var(--fg);
  background: #000;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
body {
  position: fixed;
  inset: 0;
  touch-action: none;
}
.crt-canvas,
.crt-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}
.crt-canvas {
  z-index: 0;
  pointer-events: none;
}
.crt-wrapper {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
}
main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(290px, 1.6fr) minmax(120px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  width: min(1040px, 74vw);
  height: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
.visual {
  position: relative;
  display: grid;
  place-items: center;
}
.mark {
  width: clamp(124px, 11vw, 176px);
  aspect-ratio: 1;
}
.content {
  min-width: 0;
  padding: 22px 0;
}
.kicker {
  margin-bottom: 28px;
  color: #939390;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.kicker__idx {
  margin-right: 10px;
  color: #d9d9d5;
}
h1 {
  color: var(--fg);
  font-size: clamp(28px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.copy {
  max-width: 44ch;
  margin-top: 28px;
  color: #b0b0aa;
  font-size: 13px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.typewrap {
  position: relative;
}
.typewrap__ghost,
.typewrap__live {
  display: block;
}
.typewrap__ghost {
  visibility: hidden;
}
.typewrap__live {
  position: absolute;
  inset: 0;
}
.copy .typewrap__ghost,
.copy .typewrap__live {
  padding-right: 0.65em;
}
.cursor {
  position: relative;
  display: inline-block;
  width: 0;
  height: 1em;
  vertical-align: -0.12em;
}
.contact-btn {
  position: relative;
  display: inline-block;
  margin-top: 34px;
  padding: 4px 0 6px;
  border: 0;
  color: #b8b8b2;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.contact-label {
  white-space: nowrap;
}
.contact-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 20px);
  height: 1px;
}
.contact-btn:hover,
.contact-btn:focus-visible {
  color: #fff;
}
.contact-prompt {
  color: #777772;
}
.contact-btn:hover .contact-prompt,
.contact-btn:focus-visible .contact-prompt {
  color: #fff;
}
.portrait {
  width: 100%;
  max-width: 176px;
  justify-self: end;
}
.portrait__image {
  display: block;
  width: 100%;
}
header,
footer {
  position: absolute;
  z-index: 2;
  left: max(24px, 5vw);
  right: max(24px, 5vw);
  display: flex;
  justify-content: space-between;
  color: #72726e;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
header {
  top: max(24px, 5vh, 2vw);
}
footer {
  bottom: max(24px, 5vh, 2vw);
}
.hdr-left {
  color: #a0a09a;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-light {
  width: 4px;
  height: 4px;
}
@media (min-width: 1700px) {
  main {
    width: min(1200px, 70vw);
    gap: 110px;
  }
  .mark {
    width: 180px;
  }
  .portrait {
    max-width: 205px;
  }
}
@media (max-width: 1050px) and (min-width: 701px) {
  main {
    width: 88vw;
    grid-template-columns: 0.8fr 1.7fr 0.8fr;
    gap: 40px;
  }
  .mark {
    width: 140px;
  }
  h1 {
    font-size: 29px;
  }
  .copy {
    font-size: 12px;
  }
  .kicker {
    font-size: 8px;
  }
}
@media (max-width: 700px) {
  main {
    width: min(440px, 82vw);
    padding: 84px 0 72px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
    align-content: center;
  }
  .visual {
    grid-column: 1;
    grid-row: 1;
  }
  .mark {
    width: clamp(112px, 26vw, 152px);
  }
  .portrait {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 130px);
  }
  .content {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0;
  }
  h1 {
    font-size: clamp(26px, 6.8vw, 34px);
  }
  .copy {
    margin-top: 20px;
    font-size: 12px;
  }
  .kicker {
    margin-bottom: 20px;
    font-size: 9px;
  }
  .contact-btn {
    margin-top: 28px;
  }
  header,
  footer {
    right: 24px;
    left: 24px;
    font-size: 8px;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  main {
    width: 86vw;
    padding: 48px 0;
    grid-template-columns: 0.8fr 1.8fr 0.7fr;
    gap: 36px;
  }
  .visual {
    grid-column: 1;
    grid-row: 1;
  }
  .content {
    grid-column: 2;
    grid-row: 1;
  }
  .portrait {
    grid-column: 3;
    grid-row: 1;
  }
  .mark {
    width: 110px;
  }
  h1 {
    font-size: 26px;
  }
  .kicker {
    margin-bottom: 16px;
    font-size: 8px;
  }
  .copy {
    margin-top: 16px;
    font-size: 11px;
  }
  .contact-btn {
    margin-top: 16px;
  }
  .portrait {
    max-width: 108px;
  }
}
