:root {
  --page-bg: #f0ebe3;
  --ink: #111111;
  --orange: #ed4c26;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  height: 100%;

  margin: 0;

  overflow: hidden;

  background: var(--page-bg);
  color: var(--ink);

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}


body {
  cursor: none;
}


button,
.project,
.hidden-node {
  cursor: none;
}


/* =========================================================
   CURSOR
========================================================= */

#floating-cursor {
  position: fixed;

  left: 0;
  top: 0;

  z-index: 99999;

  display: flex;
  flex-direction: column;

  gap: 3px;

  opacity: 0;

  pointer-events: none;

  transform:
    translate3d(
      -100px,
      -100px,
      0
    );

  will-change: transform;
}


#floating-cursor.visible {
  opacity: 1;
}


#cursor-main {
  padding: 5px 7px;

  background:
    rgba(
      240,
      237,
      230,
      0.94
    );

  color: #111;

  font-size: 8px;

  letter-spacing: 0.16em;
}


#cursor-action {
  padding-left: 7px;

  font-size: 7px;

  letter-spacing: 0.14em;

  opacity: 0.45;
}


#floating-cursor.active #cursor-main {
  background: #111;

  color: white;
}


/* =========================================================
   HEADER
========================================================= */

.topbar {
  position: fixed;

  left: 38px;
  right: 38px;
  top: 30px;

  z-index: 1000;

  display: flex;

  justify-content: space-between;

  pointer-events: none;
}


.brand {
  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.08em;
}


nav {
  display: flex;

  gap: 28px;

  pointer-events: auto;
}


nav button {
  border: 0;

  padding: 0;

  background: transparent;

  color: inherit;

  font-size: 10px;

  letter-spacing: 0.12em;
}


/* =========================================================
   WORLD
========================================================= */

#viewport {
  position: fixed;

  inset: 0;

  overflow: hidden;
}


#world {
  position: absolute;

  left: 0;
  top: 0;

  width: 2800px;
  height: 1800px;

  transform:
    translate3d(
      0,
      0,
      0
    );

  will-change: transform;

  contain:
    layout paint;
}


#relationship-layer {
  position: absolute;

  inset: 0;

  width: 2800px;
  height: 1800px;

  pointer-events: none;
}


.relationship-line {
  stroke:
    rgba(
      17,
      17,
      17,
      0.13
    );

  stroke-width: 1;

  stroke-dasharray:
    3 8;
}


.relationship-label {
  position: absolute;

  transform:
    translate(
      -50%,
      -50%
    );

  white-space: nowrap;

  font-size: 9px;

  letter-spacing: 0.18em;

  opacity: 0.18;

  pointer-events: none;
}


/* =========================================================
   PROJECTS
========================================================= */

.project {
  position: absolute;

  z-index: 10;

  user-select: none;
}


.project-visual {
  position: relative;

  width: 100%;
}


.project img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  transition:
    transform
    260ms
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}


.project:hover
.project-visual img {
  transform:
    scale(1.018);
}


/* =========================================================
   PROJECT LABELS
========================================================= */

.project-info {
  position: absolute;

  left: 50%;

  top:
    calc(
      100% + 22px
    );

  width: max-content;

  min-width: 250px;

  max-width: 360px;

  transform:
    translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 7px;

  text-align: center;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 140ms ease,
    transform 140ms ease;
}


.project:hover
.project-info {
  opacity: 1;

  transform:
    translateX(-50%)
    translateY(3px);
}


.project-number {
  font-size: 11px;

  line-height: 1;

  letter-spacing: 0.14em;

  opacity: 0.42;
}


.project-info strong {
  font-size: 16px;

  font-weight: 600;

  line-height: 1.15;

  letter-spacing: 0.10em;
}


.project-type {
  font-size: 11px;

  line-height: 1.25;

  letter-spacing: 0.13em;

  opacity: 0.52;
}


/* =========================================================
   PROJECT POSITIONS
========================================================= */

.broadcast {
  left: 260px;
  top: 230px;

  width: 520px;
}


.neinfeld {
  left: 1930px;
  top: 240px;

  width: 540px;
}


.editions {
  left: 470px;
  top: 1120px;

  width: 370px;
}


.one-copy {
  left: 1970px;
  top: 1110px;

  width: 400px;
}


.shop {
  left: 1260px;
  top: 680px;

  width: 280px;
}


/* =========================================================
   BROADCAST HOME
========================================================= */

.broadcast-home-radio {
  width: 100%;
}


.broadcast-home-radio img {
  width: 100%;

  filter:
    drop-shadow(
      0
      18px
      18px
      rgba(
        0,
        0,
        0,
        0.09
      )
    );
}


/* =========================================================
   NEINFELD HOME ASSET
========================================================= */

.neinfeld .project-visual {
  position: relative;
}


.neinfeld .project-visual::before {
  content: "";

  position: absolute;

  left: 7%;
  right: 4%;

  bottom: -5%;

  height: 12%;

  z-index: -1;

  border-radius: 50%;

  background:
    rgba(
      0,
      0,
      0,
      0.22
    );

  filter:
    blur(19px);

  transform:
    translate(
      10px,
      10px
    )
    scaleX(0.94);

  opacity: 0.72;

  pointer-events: none;
}


.neinfeld .project-visual::after {
  content: none !important;

  display: none !important;
}


.neinfeld .project-visual img {
  position: relative;

  z-index: 2;

  width: 100%;

  filter:
    drop-shadow(
      8px
      12px
      10px
      rgba(
        0,
        0,
        0,
        0.15
      )
    );
}


.neinfeld:hover
.project-visual img {
  transform:
    translateY(-2px)
    scale(1.012);

  filter:
    drop-shadow(
      10px
      16px
      13px
      rgba(
        0,
        0,
        0,
        0.19
      )
    );
}


/* =========================================================
   GHOST SIGNALS
========================================================= */

.ghost-signal {
  position: absolute;

  display: flex;
  flex-direction: column;

  gap: 4px;

  opacity: 0.15;

  font-size: 8px;

  letter-spacing: 0.17em;

  pointer-events: none;
}


.ghost-a {
  left: 310px;
  top: 920px;
}


.ghost-b {
  left: 1380px;
  top: 180px;
}


.ghost-c {
  left: 2440px;
  top: 1510px;
}


.ghost-d {
  left: 2260px;
  top: 790px;
}


/* =========================================================
   HIDDEN DISCOVERIES
========================================================= */

.hidden-node {
  position: absolute;

  border: 0;

  padding: 0;

  background: transparent;

  color: inherit;

  display: flex;

  flex-direction: column;

  gap: 4px;

  text-align: left;

  opacity: 0.28;
}


.hidden-node:hover {
  opacity: 1;
}


.hidden-password {
  left: 2440px;
  top: 1040px;
}


.hidden-product {
  left: 1600px;
  top: 1450px;
}


.future-product-object {
  width: 110px;
  height: 160px;

  margin-bottom: 10px;

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.15
    );
}


.hidden-art {
  left: 220px;
  top: 1390px;

  width: 310px;
}


.hidden-art img {
  width: 220px;

  margin-bottom: 10px;
}


.hidden-night {
  left: 1070px;
  top: 1510px;

  visibility: hidden;
}


body[data-time="night"]
.hidden-night {
  visibility: visible;
}


.night-orb {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #555,
      #111 70%
    );
}


/* =========================================================
   FIXED UI
========================================================= */

.coordinates,
.location,
.explore,
.statement {
  position: fixed;

  z-index: 1000;

  font-size: 8px;

  letter-spacing: 0.16em;

  pointer-events: none;
}


.coordinates {
  left: 38px;
  bottom: 58px;

  display: flex;

  gap: 18px;

  opacity: 0.5;
}


.location {
  left: 38px;
  bottom: 34px;
}


.explore {
  left: 50%;
  bottom: 30px;

  transform:
    translateX(-50%);

  display: flex;

  gap: 16px;
}


.explore i {
  font-style: normal;

  opacity: 0.3;
}


.statement {
  right: 38px;
  bottom: 34px;

  display: flex;

  flex-direction: column;

  text-align: right;
}


/* =========================================================
   STANDARD OVERLAYS
========================================================= */

.discovery-overlay,
#editions-overlay,
#onecopy-overlay,
#neinfeld-overlay,
#broadcast-overlay {
  position: fixed;

  inset: 0;

  z-index: 10000;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}


.discovery-overlay.open,

body.editions-mode
#editions-overlay,

body.onecopy-mode
#onecopy-overlay,

body.neinfeld-mode
#neinfeld-overlay,

body.broadcast-mode
#broadcast-overlay {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   GLOBAL OVERLAY STATE
========================================================= */

body.overlay-open {
  cursor:
    default
    !important;
}


body.overlay-open
#floating-cursor {
  display:
    none
    !important;
}


body.overlay-open
#viewport,

body.overlay-open
.topbar,

body.overlay-open
.coordinates,

body.overlay-open
.location,

body.overlay-open
.explore,

body.overlay-open
.statement {
  opacity: 0;

  pointer-events:
    none
    !important;
}


body.overlay-open button,

body.overlay-open input,

body.overlay-open a,

body.overlay-open [role="slider"] {
  cursor:
    pointer
    !important;
}


/* =========================================================
   GENERIC CLOSE
========================================================= */

.overlay-close {
  position: absolute;

  top: 28px;
  right: 32px;

  z-index: 12000;

  border: 0;

  background: transparent;

  color: #111;

  font-size: 9px;

  letter-spacing: 0.15em;
}


.overlay-close-light {
  color: white;
}


/* =========================================================
   DISCOVERY OVERLAYS
========================================================= */

.discovery-overlay,
#editions-overlay {
  background:
    #ebe8e1;
}


.discovery-dark {
  background:
    #080909;

  color: white;
}


.password-terminal,
.future-product-stage,
.night-discovery-content {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(
      -50%,
      -50%
    );
}


.password-terminal {
  width:
    min(
      440px,
      80vw
    );
}


.password-terminal h2 {
  font-size: 54px;

  font-weight: 400;
}


#password-form {
  margin-top: 30px;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 12px;
}


#password-form label {
  grid-column:
    1 / -1;

  font-size: 8px;

  letter-spacing: 0.15em;
}


#password-input {
  border: 0;

  border-bottom:
    1px solid #111;

  background: transparent;

  outline: 0;
}


#password-form button {
  border: 0;

  background: transparent;
}


/* =========================================================
   ART
========================================================= */

.art-overlay {
  background: #e4ded5;
}


.art-discovery-stage {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 72vw;

  transform:
    translate(
      -50%,
      -50%
    );
}


.art-discovery-stage img {
  width: 100%;

  max-height: 74vh;

  object-fit: contain;
}


.art-discovery-copy {
  margin-top: 14px;

  display: flex;

  gap: 18px;

  font-size: 8px;

  letter-spacing: 0.16em;
}


/* =========================================================
   EDITIONS
========================================================= */

.editions-title {
  position: absolute;

  left: 5vw;
  top: 15%;
}


.editions-title strong {
  display: block;

  font-size: 82px;

  font-weight: 400;
}


.editions-object-wrap {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 38vw;

  transform:
    translate(
      -50%,
      -50%
    );
}


.editions-object-wrap img {
  width: 100%;
}

/* =========================================================
   ONE-COPY ALBUM — INTERACTIVE PRODUCT REVEAL
========================================================= */

#onecopy-overlay {
  position: fixed;

  inset: 0;

  z-index: 50000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 4vh 4vw;

  background:
    rgba(
      10,
      10,
      10,
      0.76
    );

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;

  cursor: default;
}


body.onecopy-mode
#onecopy-overlay {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


.onecopy-panel {
  position: relative;

  width:
    min(
      1450px,
      92vw
    );

  height:
    min(
      920px,
      90vh
    );

  overflow: hidden;

  border-radius: 12px;

  background:
    linear-gradient(
      120deg,
      #f5f1ea 0%,
      #f0ebe3 52%,
      #f6f2eb 100%
    );

  box-shadow:
    0
    30px
    100px
    rgba(
      0,
      0,
      0,
      0.28
    );

  transform:
    translateY(10px)
    scale(0.992);

  transition:
    transform
    320ms
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}


body.onecopy-mode
.onecopy-panel {
  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   ONE COPY HEADER
========================================================= */

.onecopy-panel-brand {
  position: absolute;

  left: 42px;
  top: 34px;

  z-index: 20;

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 0.20em;
}


.onecopy-close {
  position: absolute;

  right: 34px;
  top: 29px;

  z-index: 100;

  display: flex;

  align-items: center;

  gap: 18px;

  border: 0;

  padding: 6px;

  background: transparent;

  color: #111;

  font-size: 10px;

  letter-spacing: 0.22em;

  cursor: pointer !important;
}


.onecopy-close span {
  display: block;

  font-size: 31px;

  font-weight: 200;

  line-height: 0.7;

  letter-spacing: 0;
}


/* =========================================================
   ARTIST NOTE
========================================================= */

.onecopy-left-note {
  position: absolute;

  left: 42px;

  top: 35%;

  width: 150px;

  display: flex;

  flex-direction: column;

  gap: 25px;

  font-size: 10px;

  line-height: 1.55;

  letter-spacing: 0.17em;
}


.onecopy-left-note i {
  width: 38px;
  height: 1px;

  background:
    rgba(
      17,
      17,
      17,
      0.65
    );
}


/* =========================================================
   HERO OBJECT
========================================================= */

.onecopy-hero {
  position: absolute;

  left: 14%;

  top: 7%;

  width: 43%;
  height: 65%;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 0;

  padding: 0;

  background: transparent;

  cursor: zoom-in !important;
}


.onecopy-hero img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0
      22px
      18px
      rgba(
        0,
        0,
        0,
        0.13
      )
    );

  opacity: 1;

  transform:
    translateY(0)
    scale(1);

  transition:
    opacity 150ms ease,
    transform
    300ms
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}


.onecopy-hero:hover img {
  transform:
    translateY(-3px)
    scale(1.012);
}


.onecopy-hero img.switching {
  opacity: 0;

  transform:
    translateY(5px)
    scale(0.995);
}


/* =========================================================
   COPY
========================================================= */

.onecopy-copy {
  position: absolute;

  left: 64%;

  top: 15%;

  width: 29%;
}


.onecopy-copy h2 {
  margin: 0;

  font-size:
    clamp(
      42px,
      3.5vw,
      70px
    );

  line-height: 0.88;

  font-weight: 600;

  letter-spacing: -0.05em;
}


.onecopy-copy-line {
  display: block;

  width: 84px;
  height: 1px;

  margin:
    34px
    0
    29px;

  background:
    rgba(
      17,
      17,
      17,
      0.72
    );
}


.onecopy-copy strong {
  display: block;

  margin-bottom: 27px;

  font-size: 15px;

  line-height: 1.55;

  font-weight: 500;

  letter-spacing: 0.13em;
}


.onecopy-copy p {
  max-width: 390px;

  margin: 0;

  font-size: 14px;

  line-height: 1.55;

  font-weight: 400;

  letter-spacing: 0.055em;
}


/* =========================================================
   GALLERY
========================================================= */

.onecopy-gallery {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 26px;

  height: 180px;

  display: grid;

  grid-template-columns:
    34px
    1fr
    34px;

  gap: 14px;

  align-items: center;
}


.onecopy-gallery-items {
  height: 100%;

  display: grid;

  grid-template-columns:
    repeat(
      7,
      minmax(
        0,
        1fr
      )
    );

  gap: 10px;
}


.onecopy-gallery-item {
  position: relative;

  min-width: 0;

  border: 0;

  padding: 0;

  background: transparent;

  color: #111;

  cursor: pointer !important;
}


.onecopy-thumb-frame {
  position: relative;

  width: 100%;
  height: 138px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    rgba(
      222,
      215,
      205,
      0.3
    );

  border:
    1px solid
    transparent;

  transition:
    border-color 160ms ease,
    opacity 160ms ease;
}


.onecopy-gallery-item:hover
.onecopy-thumb-frame {
  border-color:
    rgba(
      17,
      17,
      17,
      0.22
    );
}


.onecopy-gallery-item.active
.onecopy-thumb-frame {
  border-color:
    rgba(
      17,
      17,
      17,
      0.62
    );
}


.onecopy-thumb-frame img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1);

  transition:
    transform
    240ms
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}


.onecopy-gallery-item:hover
.onecopy-thumb-frame img {
  transform:
    scale(1.025);
}


.onecopy-gallery-label {
  position: relative;

  margin-top: 11px;

  display: flex;

  justify-content: center;

  gap: 7px;

  white-space: nowrap;

  font-size: 9px;

  letter-spacing: 0.15em;
}


.onecopy-gallery-label b {
  font-weight: 400;

  opacity: 0.56;
}


.onecopy-gallery-item.active
.onecopy-gallery-label::after {
  content: "";

  position: absolute;

  left: 18%;
  right: 18%;

  bottom: -10px;

  height: 1px;

  background: #111;
}


/* =========================================================
   GALLERY ARROWS
========================================================= */

.onecopy-gallery-arrow {
  width: 34px;
  height: 60px;

  border: 0;

  padding: 0;

  background: transparent;

  color: #111;

  font-size: 32px;

  font-weight: 200;

  cursor: pointer !important;

  opacity: 0.62;

  transition:
    opacity 120ms ease,
    transform 120ms ease;
}


.onecopy-gallery-arrow:hover {
  opacity: 1;
}


.onecopy-gallery-prev:hover {
  transform:
    translateX(-2px);
}


.onecopy-gallery-next:hover {
  transform:
    translateX(2px);
}


/* =========================================================
   LARGE IMAGE LIGHTBOX
========================================================= */

.onecopy-zoom {
  position: fixed;

  inset: 0;

  z-index: 70000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 7vh 7vw;

  background:
    rgba(
      8,
      8,
      8,
      0.94
    );

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}


.onecopy-zoom.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


.onecopy-zoom img {
  display: block;

  max-width: 88vw;
  max-height: 84vh;

  width: auto;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0
      25px
      40px
      rgba(
        0,
        0,
        0,
        0.3
      )
    );
}


.onecopy-zoom-close {
  position: absolute;

  right: 34px;
  top: 28px;

  border: 0;

  padding: 7px;

  background: transparent;

  color: white;

  font-size: 9px;

  letter-spacing: 0.18em;

  cursor: pointer !important;
}


/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1100px) {

  .onecopy-panel {
    width: 94vw;
    height: 90vh;
  }


  .onecopy-left-note {
    display: none;
  }


  .onecopy-hero {
    left: 4%;

    width: 53%;
  }


  .onecopy-copy {
    left: 61%;

    width: 34%;
  }


  .onecopy-copy h2 {
    font-size: 46px;
  }


  .onecopy-gallery {
    height: 160px;
  }


  .onecopy-thumb-frame {
    height: 120px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 760px) {

  #onecopy-overlay {
    padding: 0;

    overflow-y: auto;

    align-items: flex-start;
  }


  .onecopy-panel {
    width: 100%;
    height: auto;

    min-height: 100vh;

    border-radius: 0;

    overflow: visible;

    padding:
      80px
      22px
      34px;
  }


  .onecopy-panel-brand {
    left: 22px;

    top: 24px;
  }


  .onecopy-close {
    right: 18px;

    top: 20px;
  }


  .onecopy-hero {
    position: relative;

    left: auto;
    top: auto;

    width: 100%;
    height: 43vh;

    margin-bottom: 36px;
  }


  .onecopy-copy {
    position: relative;

    left: auto;
    top: auto;

    width: 100%;

    margin-bottom: 38px;
  }


  .onecopy-copy h2 {
    font-size: 48px;
  }


  .onecopy-gallery {
    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    height: auto;

    display: block;
  }


  .onecopy-gallery-arrow {
    display: none;
  }


  .onecopy-gallery-items {
    display: flex;

    gap: 10px;

    overflow-x: auto;

    padding-bottom: 15px;

    scrollbar-width: none;
  }


  .onecopy-gallery-items::-webkit-scrollbar {
    display: none;
  }


  .onecopy-gallery-item {
    flex:
      0
      0
      135px;
  }


  .onecopy-thumb-frame {
    height: 110px;
  }

}


/* =========================================================
   NEINFELD OVERLAY
========================================================= */

#neinfeld-overlay {
  z-index: 50000;

  background: #111;

  overflow: hidden;
}


.neinfeld-overlay-image-wrap {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #111;
}


.neinfeld-overlay-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  user-select: none;

  -webkit-user-drag:
    none;
}


.neinfeld-overlay-close {
  position: absolute;

  right: 6.5%;
  top: 6%;

  width: 140px;
  height: 46px;

  z-index: 100;

  border: 0;

  padding: 0;

  background: transparent;

  cursor:
    pointer
    !important;
}


.neinfeld-overlay-link {
  position: absolute;

  left: 31%;
  bottom: 7%;

  width: 38%;
  height: 8%;

  z-index: 100;

  display: block;

  background: transparent;

  cursor:
    pointer
    !important;
}


/* =========================================================
   BROADCAST
========================================================= */

#broadcast-overlay {
  overflow: hidden;

  background:
    radial-gradient(
      circle
      at
      50%
      48%,

      #f4efe8 0%,

      #f0ebe3 62%,

      #ede7df 100%
    );

  color: #111;
}


.broadcast-page-header {
  position: absolute;

  top: 35px;
  left: 50%;

  width:
    min(
      1000px,
      67vw
    );

  transform:
    translateX(-50%);

  z-index: 200;

  pointer-events: none;
}


.broadcast-title {
  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  text-align: center;
}


.broadcast-title strong {
  display: block;

  font-family:
    Didot,
    "Bodoni 72",
    Georgia,
    serif;

  font-size:
    clamp(
      24px,
      2vw,
      37px
    );

  line-height: 0.92;

  font-weight: 400;

  letter-spacing:
    -0.065em;

  white-space: nowrap;
}


.broadcast-title span {
  display: block;

  margin-top: 11px;

  padding-left: 0.46em;

  font-size: 8px;

  letter-spacing: 0.46em;
}


/* =========================================================
   BROADCAST META
========================================================= */

.broadcast-meta {
  position: absolute;

  right: 0;
  top: 3px;

  display: flex;

  align-items: center;

  gap: 25px;

  font-family:
    "Courier New",
    monospace;

  font-size: 10.5px;

  letter-spacing: 0.13em;
}


.broadcast-live {
  display: flex;

  align-items: center;

  gap: 8px;
}


.broadcast-live i {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    var(--orange);
}


.broadcast-close {
  position: fixed;

  right: 25px;
  top: 28px;

  z-index: 500;

  border: 0;

  padding: 6px;

  background:
    transparent;

  color: #111;

  font-size: 8px;

  letter-spacing: 0.16em;
}


/* =========================================================
   BROADCAST PLAYER
========================================================= */

.broadcast-stage {
  position: absolute;

  left: 50%;
  top: 55%;

  width:
    min(
      1320px,
      79vw
    );

  transform:
    translate(
      -50%,
      -50%
    );

  display: flex;

  flex-direction: column;

  align-items: center;
}


.broadcast-object-wrap {
  position: relative;

  width: 100%;

  aspect-ratio:
    1.82 / 1;
}


.broadcast-machine-image {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  pointer-events: none;

  user-select: none;
}


/* =========================================================
   FREQUENCY BAR
========================================================= */

.broadcast-tuner {
  position: absolute;

  left: 29.2%;
  top: 74.6%;

  width: 45.2%;
  height: 12%;

  z-index: 20;

  overflow: hidden;

  font-family:
    "Courier New",
    monospace;

  pointer-events: none;
}


.tuner-line {
  position: absolute;

  left: 4%;
  right: 4%;

  top: 43%;

  height: 1px;

  background:
    rgba(
      242,
      239,
      233,
      0.76
    );
}


.tuner-minor-ticks {
  position: absolute;

  left: 4%;
  right: 4%;

  top:
    calc(
      43% - 6px
    );

  height: 12px;

  background:
    repeating-linear-gradient(
      90deg,

      rgba(
        240,
        237,
        231,
        0.44
      )
      0 1px,

      transparent
      1px 14px
    );
}


#broadcast-station-marks {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.station-mark {
  position: absolute;

  top: 34%;

  width: 0;

  height: 58%;

  transform:
    translateX(-50%);
}


.station-mark::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 1px;
  height: 15px;

  background:
    rgba(
      245,
      242,
      236,
      0.92
    );
}


.station-mark-label {
  position: absolute;

  top: 23px;
  left: 0;

  transform:
    translateX(-50%);

  font-size: 8px;

  color:
    rgba(
      244,
      241,
      235,
      0.93
    );

  white-space: nowrap;
}


.station-mark:first-child
.station-mark-label {
  transform:
    translateX(0);
}


.station-mark:last-child
.station-mark-label {
  transform:
    translateX(-100%);
}


.broadcast-needle {
  position: absolute;

  top: 13%;

  width: 2px;

  height: 55%;

  transform:
    translateX(-50%);

  background:
    var(--orange);

  box-shadow:
    0
    0
    5px
    rgba(
      237,
      76,
      38,
      0.34
    );

  will-change:
    left;
}


/* =========================================================
   DIAL
========================================================= */

.broadcast-dial {
  position: absolute;

  left: 78.4%;
  top: 67%;

  width: 10%;

  aspect-ratio: 1;

  z-index: 100;

  border: 0;

  border-radius: 50%;

  background:
    transparent
    !important;

  box-shadow:
    none
    !important;

  outline:
    none
    !important;

  cursor:
    grab
    !important;

  touch-action:
    none;
}


.broadcast-dial:active {
  cursor:
    grabbing
    !important;
}


/* =========================================================
   BROADCAST CONTROLS
========================================================= */

.broadcast-controls {
  width: 94%;

  margin-top: 24px;

  display: grid;

  grid-template-columns:
    72px
    minmax(
      280px,
      1fr
    )
    minmax(
      260px,
      0.7fr
    );

  align-items: center;

  gap:
    clamp(
      50px,
      6vw,
      105px
    );
}


.broadcast-toggle {
  width: 54px;
  height: 54px;

  display: grid;

  place-items:
    center;

  border:
    1px solid
    rgba(
      17,
      17,
      17,
      0.38
    );

  border-radius:
    50%;

  background:
    transparent;

  color:
    #111;

  padding:
    0;
}


#broadcast-play-icon {
  font-size:
    15px;

  transform:
    translateX(1px);
}


.broadcast-progress-area {
  position: relative;

  height: 40px;

  display: flex;

  align-items: center;
}


.broadcast-progress-track {
  width: 100%;

  height: 1px;

  background:
    rgba(
      17,
      17,
      17,
      0.28
    );
}


.broadcast-progress {
  width: 0%;

  height: 1px;

  background:
    var(--orange);
}


.broadcast-status {
  position: absolute;

  top: 0;
  right: 0;

  font-family:
    "Courier New",
    monospace;

  font-size:
    7px;

  letter-spacing:
    0.13em;

  opacity:
    0.45;
}


.broadcast-volume-area {
  display: grid;

  grid-template-columns:
    20px
    1fr
    38px;

  gap:
    16px;

  align-items:
    center;
}


.broadcast-volume {
  width: 100%;

  appearance:
    none;

  -webkit-appearance:
    none;

  background:
    transparent;
}


.broadcast-volume::-webkit-slider-runnable-track {
  height: 1px;

  background:
    rgba(
      17,
      17,
      17,
      0.47
    );
}


.broadcast-volume::-webkit-slider-thumb {
  width: 10px;
  height: 10px;

  margin-top:
    -4.5px;

  border: 0;

  border-radius:
    50%;

  background:
    #111;

  appearance:
    none;

  -webkit-appearance:
    none;
}


.broadcast-volume::-moz-range-track {
  height: 1px;

  background:
    rgba(
      17,
      17,
      17,
      0.47
    );
}


.broadcast-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;

  border: 0;

  border-radius:
    50%;

  background:
    #111;
}


.broadcast-volume-value {
  font-family:
    "Courier New",
    monospace;

  font-size:
    8px;

  text-align:
    right;
}


/* =========================================================
   BROADCAST DESCRIPTION
========================================================= */

.broadcast-description {
  margin-top:
    24px;

  text-align:
    center;

  pointer-events:
    none;
}


.broadcast-description strong {
  display:
    block;

  font-family:
    "Courier New",
    monospace;

  font-size:
    10px;

  font-weight:
    400;

  line-height:
    1.3;

  letter-spacing:
    0.16em;
}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 900px) {

  body,
  button,
  .project,
  .hidden-node {
    cursor:
      auto;
  }


  #floating-cursor {
    display:
      none;
  }


  .broadcast-stage {
    width:
      1050px;
  }


  .neinfeld-overlay-image,
  .onecopy-overlay-image {
    object-fit:
      contain;
  }

}