@import url("https://api.fontshare.com/v2/css?f[]=tanker@400&f[]=general-sans@400,500,600,700&display=swap");

:root {
  --font-display: "Tanker", "Arial Narrow", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-body: "General Sans", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  --bg: #f1efe8;
  --surface: #d7d4cc;
  --surface-soft: #e6e3dc;
  --ink: #171716;
  --ink-soft: #55534f;
  --line: rgba(23, 23, 22, 0.28);
  --line-light: rgba(241, 239, 232, 0.3);
  --cue: #7b2232;
  --monitor: #90b6ae;
  --metal: #a7a7a0;
  --white: #fff;
  --header-height: 64px;
  --page-pad: 48px;
  --section-space: 112px;
  --max: 1440px;
  --radius-sm: 2px;
  --radius-md: 6px;
  --shadow: 0 18px 50px rgba(23, 23, 22, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

button,
a,
summary,
input {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--monitor);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  gap: 30px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.button span {
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translateX(4px);
}

.button-light {
  color: var(--white);
  background: rgba(23, 23, 22, 0.58);
  backdrop-filter: blur(10px);
}

.button-light:hover {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-primary {
  width: 100%;
  color: var(--white);
  background: var(--cue);
  border-color: var(--cue);
  cursor: pointer;
}

.button-primary:hover {
  color: var(--cue);
  background: transparent;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.site-header.is-compact {
  color: var(--ink);
  background: rgba(241, 239, 232, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header-light {
  color: var(--ink);
  background: rgba(241, 239, 232, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.wordmark {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  padding: 22px 0;
  font-size: 11px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tray-button,
.menu-button {
  min-width: 44px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.tray-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
}

.tray-button strong {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--cue);
  border-radius: 50%;
}

.menu-button {
  display: none;
  padding: 11px;
}

.menu-button i {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 48px);
  max-height: 940px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero picture,
.home-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 13, 0.24);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 144px;
  width: min(620px, calc(100% - 220px));
  transform: translateY(-44%);
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.95;
}

.hero-line {
  margin: 20px 0 34px;
  font-size: 28px;
  line-height: 1.35;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  top: var(--header-height);
  bottom: 48px;
  left: 0;
  width: 96px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  border-right: 1px solid var(--line-light);
}

.hero-rail li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-light);
}

.hero-rail li::before {
  position: absolute;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--monitor);
  content: "";
  transition: height 180ms ease;
}

.hero-rail li.is-current::before,
.hero-rail li:hover::before {
  height: 100%;
}

.hero-rail span {
  font-family: var(--font-body);
  font-size: 30px;
}

.hero-rail b {
  font-size: 9px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-footer {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad) 0 144px;
  border-top: 1px solid var(--line-light);
  font-size: 9px;
}

.fader-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(680px, 2fr);
  min-height: 720px;
  background: var(--bg);
}

.section-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px var(--page-pad);
  border-right: 1px solid var(--line);
}

.section-intro h2 {
  margin: 24px 0 34px;
  font-size: 46px;
}

.section-intro > p:last-child {
  max-width: 360px;
  color: var(--ink-soft);
}

.mix-console {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr)) minmax(200px, 1.15fr);
  color: var(--white);
  background: #171716;
}

.channel-strip {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease;
}

.channel-strip.is-active {
  background: #252522;
}

.channel-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.channel-head span {
  font-family: var(--font-body);
  font-size: 18px;
}

.channel-head b {
  font-size: 9px;
  text-align: center;
}

.channel-head i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
}

.channel-strip.is-active .channel-head i {
  background: var(--cue);
  border-color: var(--cue);
}

.channel-strip input[type="range"] {
  width: 30px;
  height: 300px;
  accent-color: var(--monitor);
  cursor: ns-resize;
  direction: rtl;
  writing-mode: vertical-lr;
}

.channel-scale {
  position: absolute;
  top: 190px;
  right: 16px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.mix-output {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 30px;
  background: #20201e;
}

.mix-output > p {
  margin-bottom: 26px;
  color: var(--monitor);
  font-size: 9px;
}

.mix-output strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
}

.mix-output > span {
  min-height: 110px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.mix-output a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
  font-size: 11px;
}

.movement-field {
  position: relative;
  min-height: 590px;
  color: var(--white);
  background: var(--ink);
}

.movement-field img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.movement-copy {
  position: absolute;
  inset: auto var(--page-pad) 48px auto;
  width: 460px;
  padding: 36px;
  background: rgba(23, 23, 22, 0.76);
  border-top: 1px solid var(--monitor);
  backdrop-filter: blur(12px);
}

.movement-copy h2 {
  margin: 18px 0 24px;
  font-size: 40px;
}

.movement-copy > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.product-channels {
  padding: var(--section-space) var(--page-pad);
}

.product-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: 72px;
  max-width: var(--max);
  margin: 0 auto 72px;
}

.product-heading h2 {
  margin-top: 20px;
  font-size: 56px;
}

.product-heading > p {
  max-width: 390px;
  padding-bottom: 8px;
  color: var(--ink-soft);
}

.product-mosaic {
  display: grid;
  max-width: var(--max);
  min-height: 1150px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1.12fr 0.9fr;
  gap: 32px;
  margin: 0 auto;
}

.product-module {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.product-module-wide {
  grid-column: 1 / 7;
  grid-row: 1;
}

.product-module-tall {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

.product-module-feature {
  grid-column: 1 / 5;
  grid-row: 2;
  background: var(--ink);
}

.product-module-short {
  grid-column: 5 / 7;
  grid-row: 2;
}

.product-module figure {
  height: calc(100% - 58px);
}

.product-module img {
  width: 100%;
  height: calc(100% - 70px);
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-module:hover img {
  transform: scale(1.018);
}

.product-module figcaption {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
}

.product-module figcaption span {
  font-size: 9px;
}

.product-module figcaption strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-align: right;
}

.product-module button,
.module-actions {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-top: 1px solid var(--line);
  color: inherit;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.product-module-feature {
  color: var(--white);
}

.product-module-feature img {
  filter: saturate(0.88);
}

.product-module-feature .module-actions {
  border-top-color: var(--line-light);
}

.module-actions button {
  width: 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-light);
}

.session-notes {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notes-title {
  padding: 84px var(--page-pad);
  border-right: 1px solid var(--line);
}

.notes-title h2 {
  margin-top: 24px;
  font-size: 48px;
}

.note-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.note-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 112px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.note-list li:last-child {
  border-bottom: 0;
}

.note-list time {
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 10px;
}

.note-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 34px;
  border-left: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.note-list a:hover {
  color: var(--white);
  background: var(--cue);
}

.note-list strong {
  font-size: 20px;
}

.note-list span {
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 56px;
  padding: 72px var(--page-pad) 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1;
}

.footer-brand span {
  color: var(--monitor);
  font-size: 10px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: max-content;
  font-size: 12px;
}

.session-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
}

.session-form > div {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid var(--line-light);
}

.session-form input {
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}

.session-form button {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.session-form [data-form-status] {
  min-height: 24px;
  margin-top: 8px;
  color: var(--monitor);
  font-size: 11px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.tray-dialog {
  width: min(480px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.tray-dialog::backdrop {
  background: rgba(23, 23, 22, 0.72);
  backdrop-filter: blur(6px);
}

.tray-head {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
}

.tray-head button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.tray-items {
  max-height: 400px;
  overflow-y: auto;
}

.tray-items > div {
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.tray-items > div span,
.tray-items > div strong {
  padding: 0 14px;
}

.tray-items > div button {
  height: 40px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.tray-empty {
  padding: 42px 20px;
  color: var(--ink-soft);
}

.tray-dialog > .button {
  margin: 18px;
}

.toast {
  position: fixed;
  z-index: 220;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--monitor);
  font-size: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Routine page */
.routine-opening {
  position: relative;
  height: 760px;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--surface);
}

.routine-opening > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-opening-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(560px, 44%);
  padding: 42px var(--page-pad);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.88);
}

.routine-opening-copy h1 {
  margin: 20px 0 24px;
  font-size: 64px;
}

.routine-opening-copy > p:last-child {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.9);
}

.routine-opening-index {
  position: absolute;
  top: 24px;
  right: var(--page-pad);
  display: flex;
  gap: 4px;
}

.routine-opening-index span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--font-body);
}

.desk-section {
  padding: var(--section-space) var(--page-pad);
}

.desk-header {
  display: flex;
  max-width: var(--max);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto 64px;
}

.desk-header h2 {
  margin-top: 20px;
  font-size: 56px;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ink);
}

.segmented-control button {
  min-width: 72px;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.is-active {
  color: var(--white);
  background: var(--ink);
}

.routine-ledger {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.routine-ledger article {
  display: grid;
  grid-template-columns: 72px minmax(250px, 1fr) minmax(220px, 0.7fr) 110px;
  min-height: 150px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.routine-ledger article[hidden] {
  display: none;
}

.ledger-number {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 30px;
}

.routine-ledger article > div:nth-child(2) {
  padding: 24px 34px;
}

.routine-ledger article > div:nth-child(2) p {
  color: var(--cue);
  font-size: 10px;
}

.routine-ledger h3 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: 32px;
}

.routine-ledger article > div:nth-child(2) span {
  color: var(--ink-soft);
  font-size: 13px;
}

.ledger-control {
  display: grid;
  gap: 10px;
  padding: 0 32px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.ledger-control label {
  font-size: 10px;
}

.ledger-control input {
  width: 100%;
  accent-color: var(--cue);
}

.routine-ledger article > button,
.routine-ledger article > a {
  align-self: stretch;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.routine-ledger article > button:hover,
.routine-ledger article > a:hover {
  color: var(--white);
  background: var(--cue);
}

.moment-sequence {
  padding: var(--section-space) var(--page-pad);
  color: var(--white);
  background: var(--ink);
}

.moment-sequence > header {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  align-items: end;
  gap: 48px;
  margin: 0 auto 88px;
}

.moment-sequence > header h2 {
  font-size: 52px;
}

.moment-sequence > header > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.moment-row {
  display: grid;
  max-width: var(--max);
  min-height: 680px;
  grid-template-columns: 0.78fr 1.22fr;
  margin: 0 auto 84px;
  border-top: 1px solid var(--line-light);
}

.moment-row-reverse {
  grid-template-columns: 1.22fr 0.78fr;
}

.moment-row-reverse .moment-copy {
  order: 2;
}

.moment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  border-right: 1px solid var(--line-light);
}

.moment-row-reverse .moment-copy {
  border-right: 0;
  border-left: 1px solid var(--line-light);
}

.moment-copy > span {
  color: var(--monitor);
  font-size: 10px;
}

.moment-copy h3 {
  margin: 24px 0;
  font-size: 46px;
}

.moment-copy p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.64);
}

.moment-copy a {
  width: max-content;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--monitor);
  font-size: 11px;
}

.moment-row img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.session-matrix {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  border-bottom: 1px solid var(--ink);
}

.matrix-title {
  padding: 88px var(--page-pad);
  border-right: 1px solid var(--ink);
}

.matrix-title h2 {
  margin-top: 22px;
  font-size: 48px;
}

.matrix-table {
  display: grid;
  align-content: stretch;
}

.matrix-table > div {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  min-height: 78px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.matrix-table > div:last-child {
  border-bottom: 0;
}

.matrix-table span,
.matrix-table strong,
.matrix-table i {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-style: normal;
}

.matrix-table > div > :last-child {
  border-right: 0;
}

.matrix-table i::before {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.matrix-table i.is-on::before {
  background: var(--cue);
  border-color: var(--cue);
}

.matrix-head {
  color: var(--white);
  background: var(--ink);
}

.routine-cta {
  padding: 120px var(--page-pad);
  color: var(--white);
  background: var(--cue);
  text-align: center;
}

.routine-cta h2 {
  margin: 18px 0 38px;
  font-size: 64px;
}

/* Product detail */
.pdp-station {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: 1.08fr 0.92fr;
  margin-top: var(--header-height);
  border-bottom: 1px solid var(--ink);
}

.pdp-media {
  position: relative;
  min-height: 760px;
  border-right: 1px solid var(--ink);
  background: var(--surface);
}

.pdp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-media > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
}

.pdp-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 9%;
}

.pdp-summary nav {
  display: flex;
  gap: 8px;
  margin-bottom: 64px;
  color: var(--ink-soft);
  font-size: 9px;
}

.pdp-summary h1 {
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: 88px;
}

.pdp-lead {
  margin-bottom: 46px;
  font-size: 30px;
  line-height: 1.4;
}

.pdp-attributes {
  border-top: 1px solid var(--ink);
}

.pdp-attributes div {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.pdp-attributes dt {
  font-size: 10px;
  font-weight: 700;
}

.pdp-attributes dd {
  color: var(--ink-soft);
  font-size: 13px;
}

.pdp-size {
  display: flex;
  justify-content: space-between;
  margin: 36px 0 18px;
  font-size: 12px;
}

.signal-path {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  padding: var(--section-space) var(--page-pad);
  border-bottom: 1px solid var(--ink);
}

.signal-path header h2 {
  margin-top: 22px;
  font-size: 50px;
}

.signal-path ol {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.signal-path li {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 126px;
  border-bottom: 1px solid var(--ink);
}

.signal-path li > span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  font-family: var(--font-body);
  font-size: 24px;
}

.signal-path li div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 26px;
  padding: 24px;
}

.signal-path b {
  color: var(--cue);
  font-size: 12px;
}

.signal-path li p {
  color: var(--ink-soft);
}

.usage-field {
  position: relative;
  min-height: 700px;
  color: var(--white);
  background: var(--ink);
}

.usage-field img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.usage-field > div {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  background: rgba(23, 23, 22, 0.82);
  backdrop-filter: blur(10px);
}

.usage-field h2 {
  margin: 22px 0 28px;
  font-size: 52px;
}

.usage-field > div > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.texture-study {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}

.texture-study > header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px var(--page-pad);
  border-right: 1px solid var(--ink);
}

.texture-study h2 {
  margin-top: 22px;
  font-size: 42px;
}

.texture-study figure {
  border-right: 1px solid var(--ink);
}

.texture-study figure:last-child {
  border-right: 0;
}

.texture-study figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.texture-study figcaption {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 88px;
  align-items: center;
  border-top: 1px solid var(--ink);
}

.texture-study figcaption span {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 9px;
}

.texture-study figcaption p {
  padding: 16px 20px;
  font-size: 12px;
}

.pairing-console {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding: var(--section-space) var(--page-pad);
  color: var(--white);
  background: var(--ink);
}

.pairing-copy {
  padding-right: 70px;
}

.pairing-copy h2 {
  margin: 22px 0 26px;
  font-size: 50px;
}

.pairing-copy > p:last-child {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.64);
}

.pairing-tracks {
  border-top: 1px solid var(--line-light);
}

.pairing-tracks label {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 120px;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-light);
}

.pairing-tracks span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
}

.pairing-tracks span b {
  color: var(--monitor);
  font-size: 9px;
}

.pairing-tracks input {
  width: 100%;
  accent-color: var(--monitor);
}

.pairing-tracks .is-primary {
  background: var(--cue);
}

.pairing-tracks .is-primary span b {
  color: var(--white);
}

.facts-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}

.product-facts,
.faq {
  padding: var(--section-space) var(--page-pad);
}

.product-facts {
  border-right: 1px solid var(--ink);
}

.facts-faq h2 {
  margin: 18px 0 48px;
  font-size: 46px;
}

.product-facts dl {
  border-top: 1px solid var(--ink);
}

.product-facts dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  font-size: 11px;
}

.product-facts dd {
  color: var(--ink-soft);
  text-align: right;
}

.faq details {
  border-top: 1px solid var(--ink);
}

.faq details:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 42px 24px 0;
  color: var(--ink-soft);
}

.next-channel {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  min-height: 220px;
  align-items: center;
  color: var(--white);
  background: var(--cue);
}

.next-channel > span {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 10px;
  writing-mode: vertical-rl;
}

.next-channel > div {
  padding: 30px 56px;
}

.next-channel p {
  margin-bottom: 10px;
  font-size: 12px;
}

.next-channel h2 {
  font-family: var(--font-display);
  font-size: 64px;
}

.next-channel > a {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 32px;
  transition: color 180ms ease, background-color 180ms ease;
}

.next-channel > a:hover {
  color: var(--cue);
  background: var(--white);
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 40px;
    --section-space: 92px;
  }

  .site-header {
    grid-template-columns: 0.7fr auto 0.7fr;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 96px;
  }

  .hero-copy {
    left: 124px;
  }

  .fader-section {
    grid-template-columns: 300px 1fr;
  }

  .fader-section .section-intro h2 {
    font-size: 36px;
  }

  .mix-console {
    grid-template-columns: repeat(4, minmax(92px, 1fr));
  }

  .mix-output {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .channel-strip {
    min-height: 590px;
  }

  .product-mosaic {
    min-height: 980px;
  }

  .routine-opening {
    height: 680px;
  }

  .routine-opening-copy h1 {
    font-size: 54px;
  }

  .pdp-summary h1 {
    font-size: 72px;
  }

  .signal-path {
    grid-template-columns: 0.55fr 1.45fr;
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 28px;
    --section-space: 80px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .tray-button span {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: center;
    gap: 0;
    height: calc(100svh - var(--header-height));
    padding: 40px var(--page-pad);
    color: var(--ink);
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    z-index: 99;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 28px;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
  }

  .hero-copy {
    left: 96px;
  }

  .hero-copy h1 {
    font-size: 80px;
  }

  .hero-line {
    font-size: 23px;
  }

  .hero-rail {
    width: 72px;
  }

  .hero-footer {
    padding-left: 94px;
  }

  .fader-section {
    display: block;
  }

  .routine-opening {
    height: 512px;
  }

  .section-intro {
    min-height: 500px;
    padding: var(--section-space) var(--page-pad);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mix-console {
    grid-template-columns: repeat(4, 1fr);
  }

  .movement-copy {
    right: 28px;
    bottom: 28px;
    width: calc(100% - 56px);
  }

  .product-heading,
  .moment-sequence > header {
    grid-template-columns: 1fr;
  }

  .product-mosaic {
    min-height: 1350px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1.25fr 1fr;
  }

  .product-module-wide {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .product-module-tall {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .product-module-feature {
    grid-column: 1;
    grid-row: 2;
  }

  .product-module-short {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .session-notes,
  .session-matrix,
  .signal-path,
  .pairing-console {
    grid-template-columns: 1fr;
  }

  .notes-title,
  .matrix-title {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .session-form {
    grid-column: 1 / -1;
  }

  .routine-opening-copy {
    width: 60%;
  }

  .routine-ledger article {
    grid-template-columns: 62px 1fr 100px;
  }

  .ledger-control {
    grid-column: 2 / -1;
    padding: 18px 32px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .routine-ledger article > button,
  .routine-ledger article > a {
    grid-column: 3;
    grid-row: 1;
  }

  .moment-row,
  .moment-row-reverse {
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 580px;
  }

  .moment-row img {
    height: 580px;
  }

  .pdp-station {
    grid-template-columns: 1fr;
  }

  .pdp-media {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .pdp-summary {
    padding: var(--section-space) var(--page-pad);
  }

  .pdp-summary nav {
    margin-bottom: 42px;
  }

  .usage-field > div {
    width: 46%;
  }

  .texture-study {
    grid-template-columns: 1fr 1fr;
  }

  .texture-study > header {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .facts-faq {
    grid-template-columns: 1fr;
  }

  .product-facts {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 60px;
    --page-pad: 20px;
    --section-space: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 var(--page-pad);
  }

  .wordmark {
    font-size: 21px;
  }

  .tray-button,
  .menu-button {
    height: 38px;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
    max-height: none;
  }

  .home-hero picture img {
    object-position: center;
  }

  .hero-shade {
    background: rgba(14, 14, 13, 0.3);
  }

  .hero-copy {
    top: auto;
    right: 20px;
    bottom: 116px;
    left: 20px;
    width: auto;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-line {
    margin: 10px 0 22px;
    font-size: 20px;
  }

  .hero-rail {
    top: auto;
    right: 0;
    bottom: 48px;
    left: 0;
    width: auto;
    height: 52px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .hero-rail li {
    flex-direction: row;
    gap: 6px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .hero-rail li::before {
    top: 0;
    width: 0;
    height: 3px;
  }

  .hero-rail li.is-current::before,
  .hero-rail li:hover::before {
    width: 100%;
    height: 3px;
  }

  .hero-rail span {
    font-size: 18px;
  }

  .hero-rail b {
    font-size: 8px;
    writing-mode: initial;
    transform: none;
  }

  .hero-footer {
    padding: 0 20px;
  }

  .hero-footer span:last-child {
    display: none;
  }

  .section-intro {
    min-height: 0;
  }

  .section-intro h2 {
    font-size: 38px;
  }

  .mix-console {
    grid-template-columns: 1fr;
  }

  .channel-strip {
    min-height: 176px;
    grid-template-columns: 110px 1fr;
    grid-template-rows: 1fr;
    justify-items: stretch;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .channel-head {
    align-self: stretch;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .channel-head b {
    font-size: 10px;
  }

  .channel-strip input[type="range"] {
    width: calc(100% - 54px);
    height: 32px;
    margin: 0 28px;
    direction: initial;
    writing-mode: initial;
  }

  .channel-scale {
    top: auto;
    right: 30px;
    bottom: 32px;
    left: 140px;
    flex-direction: row-reverse;
  }

  .mix-output {
    min-height: 250px;
  }

  .mix-output > span {
    min-height: 74px;
  }

  .movement-field,
  .movement-field img {
    min-height: 620px;
  }

  .movement-field img {
    object-position: center;
  }

  .movement-copy {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 24px;
  }

  .movement-copy h2 {
    font-size: 34px;
  }

  .product-channels {
    padding: var(--section-space) var(--page-pad);
  }

  .product-heading {
    gap: 28px;
    margin-bottom: 48px;
  }

  .product-heading h2 {
    font-size: 40px;
  }

  .product-mosaic {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 28px;
  }

  .product-module,
  .product-module-wide,
  .product-module-tall,
  .product-module-feature,
  .product-module-short {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .product-module figure {
    height: auto;
  }

  .product-module img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .session-notes {
    display: block;
  }

  .notes-title {
    padding: var(--section-space) var(--page-pad);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .notes-title h2 {
    font-size: 40px;
  }

  .note-list li {
    grid-template-columns: 68px 1fr;
  }

  .note-list time {
    padding-left: 14px;
  }

  .note-list a {
    display: grid;
    gap: 8px;
    padding: 20px;
  }

  .note-list strong {
    font-size: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px var(--page-pad) 24px;
  }

  .session-form {
    grid-column: auto;
  }

  .footer-brand strong {
    font-size: 42px;
  }

  .copyright {
    grid-column: auto;
  }

  .routine-opening {
    height: 700px;
  }

  .routine-opening > img {
    object-position: 62% center;
  }

  .routine-opening-copy {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 28px;
  }

  .routine-opening-copy h1 {
    font-size: 44px;
  }

  .routine-opening-index {
    top: 18px;
    right: 20px;
  }

  .routine-opening-index span {
    width: 44px;
    height: 44px;
  }

  .desk-header {
    display: grid;
    gap: 34px;
  }

  .desk-header h2 {
    font-size: 42px;
  }

  .segmented-control {
    width: 100%;
  }

  .segmented-control button {
    min-width: 0;
    padding: 0 8px;
    font-size: 12px;
  }

  .routine-ledger article {
    grid-template-columns: 50px 1fr 68px;
  }

  .ledger-number {
    font-size: 22px;
  }

  .routine-ledger article > div:nth-child(2) {
    padding: 20px 16px;
  }

  .routine-ledger h3 {
    font-size: 24px;
  }

  .routine-ledger article > div:nth-child(2) span {
    font-size: 12px;
  }

  .ledger-control {
    grid-column: 1 / -1;
    padding: 16px 20px;
  }

  .moment-sequence > header {
    gap: 24px;
    margin-bottom: 56px;
  }

  .moment-sequence > header h2 {
    font-size: 40px;
  }

  .moment-row,
  .moment-row-reverse {
    display: flex;
    min-height: 0;
    flex-direction: column;
    margin-bottom: 64px;
  }

  .moment-row-reverse .moment-copy {
    order: 0;
    border-left: 0;
  }

  .moment-copy {
    padding: 32px 0;
    border-right: 0;
  }

  .moment-copy h3 {
    font-size: 36px;
  }

  .moment-row img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .matrix-title h2 {
    font-size: 40px;
  }

  .matrix-table > div {
    grid-template-columns: 1.15fr repeat(3, 0.85fr);
    min-height: 68px;
  }

  .matrix-table span,
  .matrix-table strong,
  .matrix-table i {
    padding: 8px 4px;
    font-size: 9px;
    text-align: center;
  }

  .routine-cta h2 {
    font-size: 44px;
  }

  .pdp-media {
    min-height: 0;
  }

  .pdp-media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .pdp-summary h1 {
    font-size: 56px;
  }

  .pdp-lead {
    font-size: 24px;
  }

  .signal-path {
    gap: 52px;
  }

  .signal-path header h2 {
    font-size: 40px;
  }

  .signal-path li div {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .usage-field {
    min-height: 700px;
  }

  .usage-field img {
    height: 700px;
    object-position: 38% center;
  }

  .usage-field > div {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: auto;
    padding: 26px;
  }

  .usage-field h2 {
    font-size: 40px;
  }

  .texture-study {
    grid-template-columns: 1fr;
  }

  .texture-study > header {
    grid-column: auto;
  }

  .texture-study figure {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .texture-study h2 {
    font-size: 36px;
  }

  .pairing-copy {
    padding-right: 0;
    margin-bottom: 48px;
  }

  .pairing-copy h2 {
    font-size: 40px;
  }

  .pairing-tracks label {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .product-facts,
  .faq {
    padding: var(--section-space) var(--page-pad);
  }

  .facts-faq h2 {
    font-size: 40px;
  }

  .product-facts dl div {
    grid-template-columns: 110px 1fr;
  }

  .next-channel {
    grid-template-columns: 60px 1fr 60px;
  }

  .next-channel > div {
    padding: 28px 20px;
  }

  .next-channel h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
