/* =========================================================================
   kauai — archival green index theme
   Single global stylesheet. CSS variables in :root drive the look.
   ========================================================================= */

/* ---------- reset ------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html, body, h1, h2, h3, h4, p, ul, ol, li, figure, button {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

img, svg, video, iframe { display: block; max-width: 100%; }

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

select, input {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 3px;
}

/* ---------- design tokens ----------------------------------------------- */

:root {
  /* palette — flat archival green field, near-black ink */
  --bg-outer:        #000000;          /* the black around the rounded frame */
  --bg-screen:       #32684d;
  --bg-screen-dark:  #1e3f32;
  --fg:              #000000;           /* pure black ink — primary text */
  --fg-dim:          #111111;           /* slightly lighter ink for separators */
  --fg-faint:        #2a3d34;           /* faintest: placeholders */
  --accent:          #8b1f16;          /* muted archival red */
  --accent-hover:    #edf1df;          /* warm paper white */
  --thumbnail-wash:  #0e1d1d;
  --background-wash: #c9d9bd;

  /* typography */
  --font-mono: "JetBrains Mono", "Courier Prime", "Special Elite", "Cutive Mono",
               "Courier New", ui-monospace, Menlo, monospace;
  --fs-base: clamp(14px, 0.86vw, 17px);
  --fs-sm:   12px;
  --fs-lg:   16px;
  --lh:      1.55;
  --tracking: 0;
  --ink-bleed: 0.018em 0 rgba(0, 0, 0, 0.32),
               -0.012em 0.012em rgba(0, 0, 0, 0.24),
               0.024em 0.018em rgba(0, 0, 0, 0.16);

  /* layout — edge-to-edge, tight like the reference */
  --frame-radius: 0px;
  --frame-pad-x: clamp(22px, 1.8vw, 38px);
  --frame-pad-y: clamp(14px, 1.2vw, 24px);
  --bezel: 0px;
  --row-pad-y: 3px;
  --row-thumb-h: clamp(66px, 5.15vw, 106px);
  --max-w: none;
  --logo-x: 0px;
  --logo-y: 0px;
  --logo-scale: 1;

  /* effects — thin hairlines, pure-black ink */
  --hairline: 2px solid rgba(0, 0, 0, 0.35);
  --hairline-strong: 2px solid rgba(0, 0, 0, 0.55);

  color-scheme: dark;
}

/* ---------- base -------------------------------------------------------- */

html, body {
  background: var(--bg-screen);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: var(--lh);
  letter-spacing: var(--tracking);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: var(--ink-bleed);
}

body {
  min-height: 100vh;
  padding: var(--bezel);
}

/* ---------- frame ------------------------------------------------------- */
/* The rounded green "monitor screen" inside the black bezel.            */

.frame {
  position: relative;
  background-color: var(--bg-screen);
  background-image:
    radial-gradient(circle at 13% 22%, rgba(0, 0, 0, 0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 44%, rgba(0, 0, 0, 0.025) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 71%, rgba(0, 0, 0, 0.03) 0 1px, transparent 2px);
  background-size: 19px 23px, 31px 29px, 43px 37px;
  border-radius: var(--frame-radius);
  padding: var(--frame-pad-y) var(--frame-pad-x);
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* Very subtle scan grain — closer to photographed screen texture. */
.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0)     0px,
    rgba(0, 0, 0, 0)     3px,
    rgba(0, 0, 0, 0.018) 4px,
    rgba(0, 0, 0, 0)     5px
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  border-radius: inherit;
}

/* Light edge falloff only. */
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    140% 100% at 50% 50%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.frame > * { position: relative; z-index: 3; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- header ------------------------------------------------------ */

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 0;
  margin-bottom: clamp(0px, 0.35vw, 8px);
}

/* nudge the nav baseline to sit on the top edge of the logo */
.site-nav { padding-top: 0.55em; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  width: clamp(144px, 10vw, 208px);
  height: auto;
  display: block;
  /* knock out the white background of the source PNG so only the bird +
     letters show on the green field */
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  transform: translate(var(--logo-x), var(--logo-y)) scale(var(--logo-scale));
  transform-origin: center center;
  user-select: none;
}

.site-nav ul {
  display: flex;
  gap: clamp(22px, 3.5vw, 72px);
}

.site-nav a {
  font-size: var(--fs-base);
  letter-spacing: var(--tracking);
  transition: color 0.18s ease;
}

.site-nav a:hover { color: var(--accent-hover); }
.site-nav a[aria-current="page"] { opacity: 0.86; }

/* ---------- tagline block ---------------------------------------------- */

.tagline {
  padding: clamp(8px, 0.9vw, 18px) 0 clamp(24px, 2.4vw, 42px);
  border-bottom: var(--hairline);
}

.tagline p {
  font-size: var(--fs-base);
  line-height: 1.45;
  letter-spacing: var(--tracking);
}

.tagline p + p { margin-top: 4px; }

.tagline__focus { color: var(--accent); }

.tagline__filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tagline__filters button {
  color: var(--fg);
  transition: color 0.16s ease;
}

.tagline__filters button:hover { color: var(--accent-hover); }

.tagline__filters button[aria-pressed="true"] { color: var(--accent); }

/* ---------- landing v2 -------------------------------------------------- */

.landing-v2-page {
  min-height: 100vh;
  background: #050805;
}

.landing-v2-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #050805;
  z-index: 0;
}

.landing-v2-bg::before,
.landing-v2-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.landing-v2-bg::before {
  background:
    linear-gradient(rgba(50, 104, 77, 0.18), rgba(50, 104, 77, 0.18)),
    radial-gradient(120% 80% at 50% 46%, rgba(0, 0, 0, 0.02) 0 58%, rgba(0, 0, 0, 0.45) 100%);
  mix-blend-mode: multiply;
}

.landing-v2-bg::after {
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 3px,
    rgba(0, 0, 0, 0.05) 4px,
    rgba(0, 0, 0, 0) 5px
  );
  opacity: 0.62;
}

.landing-v2-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.02) brightness(0.9) contrast(1.05);
  transform: scale(1.035);
  transition: opacity 0.42s ease, transform 1.1s ease;
}

.landing-v2-bg__image.is-active {
  opacity: 1;
  transform: scale(1.01);
}

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

.landing-v2-brand {
  position: fixed;
  top: clamp(20px, 2.4vw, 40px);
  left: clamp(22px, 3vw, 54px);
  z-index: 5;
  display: grid;
  gap: 12px;
}

.landing-v2-logo-heading {
  position: relative;
  display: inline-block;
  width: fit-content;
  line-height: 0;
}

.landing-v2-logo-mark {
  display: block;
  width: clamp(120px, 13.5vw, 190px);
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.1));
  transition: filter 0.32s ease;
}

.landing-v2-logo-heading.is-on-dark .landing-v2-logo-mark {
  filter: invert(1) brightness(1.1) drop-shadow(0 2px 0 rgba(0, 0, 0, 0.18));
}

.landing-v2-logo-heading.is-on-dark .landing-v2-brand-nav {
  color: #edf1df;
}

.landing-v2-logo-heading.is-on-dark .landing-v2-brand-nav .landing-v2-filter {
  color: #edf1df;
}

.landing-v2-logo-heading.is-on-dark .landing-v2-brand-nav a {
  color: #edf1df;
}

.landing-v2-brand-nav {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.15;
  white-space: nowrap;
}

.landing-v2-page:not(.landing-v3-page) .landing-v2-brand-nav .landing-v2-filter-sep {
  display: none;
}

.landing-v2-page:not(.landing-v3-page) .landing-v2-brand-nav {
  animation: brand-nav-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

@keyframes brand-nav-in {
  from {
    opacity: 0;
    transform: translate(-8px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.landing-v2-brand-nav a {
  transition: color 0.18s ease, opacity 0.18s ease;
  opacity: 0.78;
}

.landing-v2-brand-nav a:hover {
  opacity: 1;
  color: var(--accent-hover);
}

.landing-v2-filter {
  padding: 0;
  color: var(--fg);
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    margin 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.78;
}

.landing-v2-filter:hover {
  opacity: 1;
  color: var(--accent-hover);
}

.landing-v2-filter[aria-pressed="true"] {
  opacity: 1;
  transform: translateX(24px);
}

.landing-v2-filter-sep {
  opacity: 0.55;
}

.landing-v2-shell {
  position: relative;
  z-index: 3;
  display: block;
  min-height: 100vh;
  padding: clamp(20px, 2.4vw, 40px) clamp(22px, 3vw, 54px);
  padding-top: clamp(180px, 18vw, 260px);
}

.landing-v2-list {
  display: grid;
  width: min(520px, calc(100vw - 36px));
}

.landing-v2-list[hidden] { display: none; }

.landing-v2-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 18px;
  width: 100%;
  padding: 13px 0 14px;
  border-top: var(--hairline);
  text-align: left;
  transition: color 0.18s ease, padding-left 0.18s ease, background 0.18s ease;
}

.landing-v2-list:not([hidden]) .landing-v2-work {
  animation: work-row-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--row-i, 0) * 55ms);
}

@keyframes work-row-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-v2-work:hover,
.landing-v2-work:focus-visible,
.landing-v2-work[aria-current="true"] {
  color: var(--accent-hover);
  padding-left: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.landing-v2-work__meta {
  grid-column: 1 / -1;
  font-size: clamp(11px, 0.72vw, 13px);
  opacity: 0.7;
}

.landing-v2-work__title {
  min-width: 0;
  text-transform: lowercase;
}

.landing-v2-work__play {
  justify-self: end;
}

/* ---------- landing page ----------------------------------------------- */

.landing {
  display: grid;
  grid-template-columns: minmax(230px, 24vw) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 46px);
  margin-top: 0;
  padding-top: 0;
}

.landing-rail {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 0;
}

.landing-kicker {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(12px, 0.74vw, 14px);
  line-height: 1.45;
}

.featured-panel {
  display: grid;
  margin-top: clamp(42px, 5vw, 76px);
}

.featured-panel__title {
  padding-bottom: 10px;
  border-bottom: var(--hairline);
  font-size: var(--fs-base);
  font-weight: 700;
}

.featured-list {
  display: grid;
}

.featured-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  grid-template-areas:
    "index title title"
    "duration duration play";
  gap: 2px 12px;
  width: 100%;
  padding: 12px 0 14px;
  border-bottom: var(--hairline);
  text-align: left;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}

.featured-item:hover,
.featured-item:focus-visible,
.featured-item[aria-current="true"] {
  color: var(--accent-hover);
  background: rgba(0, 0, 0, 0.1);
  padding-left: 8px;
}

.featured-item__index { grid-area: index; opacity: 0.84; }
.featured-item__title { grid-area: title; text-transform: lowercase; }
.featured-item__duration { grid-area: duration; opacity: 0.78; }
.featured-item__play {
  grid-area: play;
  justify-self: end;
}

.featured-panel__link {
  justify-self: end;
  padding-top: 18px;
  transition: color 0.18s ease;
}

.featured-panel__link:hover { color: var(--accent-hover); }

.landing-stage {
  min-width: 0;
  margin-top: clamp(-92px, -8vw, -64px);
}

.landing-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-screen-dark);
  border: var(--hairline);
  cursor: pointer;
}

.landing-hero__media:focus-visible {
  outline-offset: -2px;
}

.landing-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) brightness(1) contrast(1.04);
  transition: opacity 0.24s ease, filter 0.42s ease, transform 0.62s ease;
}

.landing-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumbnail-wash);
  mix-blend-mode: multiply;
  opacity: 0.22;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.landing-hero__media:hover img,
.landing-hero__media:focus-visible img {
  filter: saturate(1.04) brightness(1.03) contrast(1.02);
  transform: scale(1.015);
}

.landing-hero__media:hover::after,
.landing-hero__media:focus-visible::after {
  opacity: 0.1;
}

.landing-hero__media.is-swapping img {
  opacity: 0.22;
}

.landing-hero__media.is-launch-source {
  opacity: 0;
  transition: opacity 0.08s ease;
}

.landing-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: var(--hairline);
  border-right: var(--hairline);
  border-bottom: var(--hairline);
}

.landing-copy p {
  min-height: clamp(82px, 7.6vw, 118px);
  padding: clamp(18px, 1.8vw, 28px);
  line-height: 1.55;
}

.landing-copy p + p {
  border-left: var(--hairline);
}

/* ---------- section header --------------------------------------------- */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(12px, 1vw, 18px) 0 clamp(9px, 0.8vw, 14px);
  border-bottom: var(--hairline-strong);
}

.section-head__title { font-size: var(--fs-base); }

.section-head__action {
  font-size: var(--fs-base);
  color: var(--fg);
  transition: opacity 0.18s ease;
}
.section-head__action:hover { opacity: 1; color: var(--accent-hover); }

/* ---------- work list --------------------------------------------------- */

.works { width: 100%; }

.work-row {
  position: relative;
  display: grid;
  grid-template-columns:
    7%                      /* index 001 */
    28%                     /* title */
    12%                     /* duration */
    10%                     /* play */
    29%                     /* thumbnail */
    14%;                    /* catalogue/year */
  align-items: stretch;     /* let the thumbnail fill row height */
  gap: 0;
  padding: var(--row-pad-y) 0;
  border-bottom: var(--hairline);
  transition: background 0.2s ease;
}

/* every text/button cell vertically centers within the row */
.work-row > :not(.work-row__thumb) {
  align-self: center;
}

.work-row:hover { background: rgba(0, 0, 0, 0.14); }
.work-row.is-launching { background: rgba(0, 0, 0, 0.19); }
.work-row:last-child { border-bottom: 0; }
.work-row[hidden] { display: none; }

.work-row__index { color: var(--fg); opacity: 0.85; }

.work-row__title {
  color: var(--fg);
  text-transform: lowercase;
}

.work-row__duration {
  color: var(--fg);
  opacity: 0.75;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.work-row__play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg);
  transition: color 0.15s ease, opacity 0.18s ease, transform 0.15s ease;
}
.work-row__play:hover { color: var(--accent-hover); transform: translateX(1px); }
.work-row__play[disabled] { opacity: 0.3; cursor: not-allowed; }

.work-row.is-launching .work-row__duration,
.work-row.is-launching .work-row__play {
  opacity: 0;
}

.work-row__year {
  text-align: right;
  color: var(--fg);
  opacity: 0.85;
}

/* — thumbnail strip — fixed height defines row height */
.work-row__thumb {
  position: relative;
  width: 100%;
  height: var(--row-thumb-h);
  overflow: hidden;
  background: var(--bg-screen-dark);
  border-radius: 0;
  cursor: pointer;
}

.work-row__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.46) brightness(0.52) contrast(1.2);
  transition: filter 0.45s ease, transform 0.65s ease;
}

.work-row__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 33%,
    rgba(255, 255, 255, 0.035) 46%,
    rgba(255, 255, 255, 0.09) 52%,
    rgba(255, 255, 255, 0.035) 58%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.3s ease, transform 0.78s ease;
  pointer-events: none;
}

/* dark teal wash — ties stills to the photographed reference without crushing color. */
.work-row__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumbnail-wash);
  mix-blend-mode: multiply;
  opacity: 0.42;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.work-row:hover .work-row__thumb img {
  filter: saturate(1) brightness(1) contrast(1);
  transform: scale(1.02);
}

.work-row:hover .work-row__thumb::before {
  opacity: 0.68;
  transform: translateX(55%);
}

.work-row:hover .work-row__thumb::after { opacity: 0.16; }

.work-row__thumb.is-launch-source {
  opacity: 0;
  transition: opacity 0.08s ease;
}

.work-launch-card {
  position: fixed;
  z-index: 1001;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-screen-dark);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.68),
    0 10px 24px rgba(0, 0, 0, 0.2);
  transform-origin: top left;
  will-change: left, top, width, height, opacity, filter;
}

.work-launch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.86) contrast(1.12);
}

.work-launch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 96, 69, 0.22);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.works-empty {
  padding: clamp(22px, 2vw, 34px) 0;
  border-bottom: var(--hairline);
  color: rgba(0, 0, 0, 0.62);
}

/* ---------- logo lab ---------------------------------------------------- */

.logo-lab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: grid;
  gap: 8px;
  width: min(260px, calc(100vw - 36px));
  padding: 12px;
  border: var(--hairline);
  background: rgba(50, 104, 77, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.logo-lab label {
  display: grid;
  gap: 4px;
}

.logo-lab input {
  width: 100%;
  accent-color: var(--accent);
}

.logo-lab button {
  justify-self: start;
  padding: 2px 8px;
  border: 1px solid rgba(0, 0, 0, 0.42);
}

/* placeholder when no thumbnail downloaded yet */
.work-row__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-faint);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.06) 0,
    rgba(0, 0, 0, 0.06) 6px,
    transparent 6px,
    transparent 12px
  ), var(--bg-screen-dark);
}
.work-row__thumb--empty::after { display: none; }

/* ---------- footer ------------------------------------------------------ */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0 8px;
  margin-top: 0;
  border-top: var(--hairline);
  font-size: var(--fs-base);
  color: var(--fg);
}

.site-footer__links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}

.site-footer__links a { transition: color 0.18s ease; }
.site-footer__links a:hover { color: var(--accent); }

/* ---------- about / contact pages -------------------------------------- */

.page {
  padding: 24px 0 48px;
  max-width: 720px;
}

.page h1 {
  font-size: var(--fs-base);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--fg);
  opacity: 0.85;
}

.page p { margin-bottom: 1.1em; }

.contact-list { display: grid; gap: 14px; }

.contact-list dt {
  font-size: var(--fs-sm);
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.contact-list dd { color: var(--fg); }
.contact-list dd a { border-bottom: 1px dotted var(--fg-dim); }
.contact-list dd a:hover { color: var(--accent-hover); border-bottom-color: var(--accent-hover); }

/* ---------- about page -------------------------------------------------- */

.about-record {
  margin-top: 28px;
  border: var(--hairline);
  padding: clamp(18px, 1.8vw, 34px);
}

.about-record__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: clamp(18px, 3vw, 56px);
  padding-bottom: 18px;
  border-bottom: var(--hairline);
}

.about-record__meta p {
  display: grid;
  gap: 16px;
}

.about-record__meta strong {
  font-size: var(--fs-base);
  line-height: 1.2;
}

.about-record__meta span {
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.25;
}

.about-record__meta a:hover { color: var(--accent-hover); }

.about-record__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(240px, 0.62fr);
  gap: clamp(14px, 1.2vw, 22px);
  padding-top: clamp(24px, 2vw, 36px);
}

.about-record__media {
  position: relative;
  min-height: clamp(520px, 70vh, 860px);
  background: var(--bg-screen-dark);
  overflow: hidden;
}

.about-record__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.66) contrast(1.14);
}

.about-record__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(48, 112, 80, 0.52);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-record__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 0 0 8px;
}

.about-record__mark {
  font-size: clamp(72px, 9vw, 164px);
  font-weight: 800;
  line-height: 0.86;
  margin-bottom: clamp(28px, 3.6vw, 66px);
  color: rgba(0, 0, 0, 0.55);
}

.about-record__copy h1 {
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.2;
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: var(--hairline);
}

.about-record__copy p:not(.about-record__mark) {
  margin: 0 0 28px;
  line-height: 1.35;
}

.about-record__list {
  list-style: decimal;
  padding-left: 2ch;
  color: rgba(0, 0, 0, 0.62);
  font-style: italic;
  line-height: 1.42;
}

/* ---------- modal lightbox --------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 14, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: clamp(28px, 4vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              -webkit-backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open {
  opacity: 1;
  background: rgba(8, 18, 14, 0.94);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  pointer-events: auto;
}

.lightbox.is-closing {
  pointer-events: none;
  transition: opacity 0.46s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.46s cubic-bezier(0.4, 0, 0.2, 1),
              -webkit-backdrop-filter 0.46s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.46s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 3px,
    rgba(255, 255, 255, 0.03) 4px,
    rgba(0, 0, 0, 0) 5px
  );
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.55s ease 0.12s;
}

.lightbox.is-open::before {
  opacity: 0.5;
}

.lightbox::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    140% 100% at 50% 50%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease 0.15s;
}

.lightbox.is-open::after {
  opacity: 1;
}

.lightbox__frame {
  --aspect-ratio: 1.7778;
  position: relative;
  width: min(
    1200px,
    calc(100vw - 8vw),
    calc((100vh - 8vh) * var(--aspect-ratio))
  );
  aspect-ratio: var(--aspect-ratio);
  background: #050805;
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  box-shadow: 0 0 0 1px rgba(212, 234, 213, 0.16),
              0 1px 0 rgba(212, 234, 213, 0.08),
              0 50px 120px rgba(0, 0, 0, 0.55);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
              width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              aspect-ratio 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox__frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px #050805;
  z-index: 2;
}

.lightbox.is-launching .lightbox__frame {
  opacity: 0;
  transform: translateY(24px) scale(0.94);
}

.lightbox.is-closing .lightbox__frame {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.46s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  background: #050805;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.lightbox__frame.is-ready iframe {
  opacity: 1;
}

.lightbox__poster[hidden] {
  display: none;
}

.lightbox__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.94) brightness(0.9);
  transform: scale(1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s,
              filter 0.8s ease 0.1s,
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.lightbox__frame.is-ready .lightbox__poster {
  opacity: 0;
  filter: saturate(0.6) brightness(0.7) blur(8px);
  transform: scale(1.03);
}

.lightbox__closed-eye-load[hidden] {
  display: none;
}

.lightbox__closed-eye-load {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background: #020001;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.86s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox__closed-eye-load::before,
.lightbox__closed-eye-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 1440px);
  height: min(70vh, 760px);
  border-radius: 46%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.lightbox__closed-eye-load::before {
  background:
    radial-gradient(
      ellipse at 50% 52%,
      rgba(96, 31, 28, 0.72) 0%,
      rgba(72, 18, 20, 0.72) 34%,
      rgba(35, 7, 11, 0.82) 61%,
      rgba(8, 1, 3, 0.38) 78%,
      transparent 100%
    );
  filter: blur(clamp(22px, 3.4vw, 58px)) brightness(0.86) saturate(0.92);
  animation: closed-eye-lid-breathe 2.15s ease-in-out infinite alternate;
}

.lightbox__closed-eye-load::after {
  width: min(62vw, 1040px);
  height: min(45vh, 500px);
  background:
    radial-gradient(circle at 30% 42%, rgba(244, 119, 63, 0.6) 0%, transparent 29%),
    radial-gradient(circle at 69% 59%, rgba(221, 78, 44, 0.48) 0%, transparent 33%),
    radial-gradient(ellipse at 50% 51%, rgba(149, 47, 34, 0.34) 0%, transparent 70%);
  filter: blur(clamp(34px, 4.3vw, 76px)) brightness(0.82);
  mix-blend-mode: screen;
  animation: closed-eye-light-through 1.85s ease-in-out infinite alternate;
}

.lightbox__closed-eye-load.is-leaving {
  opacity: 0;
}

.lightbox__closed-eye-field {
  position: absolute;
  left: 16%;
  width: 68%;
  border-radius: 42%;
  filter: blur(clamp(44px, 5.6vw, 100px));
  transform-origin: 50% 50%;
  will-change: opacity, transform;
}

.lightbox__closed-eye-field--upper {
  top: 19%;
  height: 34%;
  background: rgba(148, 55, 42, 0.38);
  animation: closed-eye-upper-breathe 2.5s ease-in-out infinite alternate;
}

.lightbox__closed-eye-field--lower {
  bottom: 17%;
  height: 36%;
  background: rgba(170, 69, 42, 0.32);
  animation: closed-eye-lower-breathe 2.9s ease-in-out infinite alternate;
}

.lightbox__closed-eye-field--center {
  top: 34%;
  left: 23%;
  width: 54%;
  height: 33%;
  background: rgba(48, 6, 13, 0.7);
  filter: blur(clamp(48px, 6.2vw, 112px));
  animation: closed-eye-center-breathe 2.35s ease-in-out infinite alternate;
}

@keyframes closed-eye-lid-breathe {
  from {
    opacity: 0.7;
    filter: blur(clamp(22px, 3.4vw, 58px)) brightness(0.78) saturate(0.9);
    transform: translate3d(-50%, -50%, 0) scale(0.97, 0.95);
  }
  to {
    opacity: 1;
    filter: blur(clamp(28px, 4vw, 68px)) brightness(1.18) saturate(1.08);
    transform: translate3d(-50%, -50%, 0) scale(1.025, 1.04);
  }
}

@keyframes closed-eye-light-through {
  from {
    opacity: 0.14;
    filter: blur(clamp(38px, 4.8vw, 84px)) brightness(0.76);
    transform: translate3d(-52%, -51%, 0) scale(0.91);
  }
  to {
    opacity: 0.88;
    filter: blur(clamp(30px, 3.8vw, 68px)) brightness(1.2);
    transform: translate3d(-48%, -49%, 0) scale(1.07);
  }
}

@keyframes closed-eye-upper-breathe {
  from {
    opacity: 0.36;
    transform: translate3d(-1.2%, -1.5%, 0) scale(0.94);
  }
  to {
    opacity: 0.76;
    transform: translate3d(1.5%, 1.8%, 0) scale(1.06);
  }
}

@keyframes closed-eye-lower-breathe {
  from {
    opacity: 0.3;
    transform: translate3d(1.2%, 1.4%, 0) scale(1.05);
  }
  to {
    opacity: 0.68;
    transform: translate3d(-1.5%, -1.7%, 0) scale(0.94);
  }
}

@keyframes closed-eye-center-breathe {
  from {
    opacity: 0.54;
    transform: scale(0.9, 0.94);
  }
  to {
    opacity: 0.86;
    transform: scale(1.08, 1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox__closed-eye-load::before,
  .lightbox__closed-eye-load::after,
  .lightbox__closed-eye-field {
    animation: none;
  }
}

.lightbox__close {
  position: absolute;
  top: clamp(18px, 3vh, 34px);
  right: clamp(18px, 3vw, 46px);
  z-index: 4;
  color: rgba(237, 241, 223, 0.78);
  font-size: clamp(11px, 0.74vw, 13px);
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(237, 241, 223, 0.32);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  transform: translateY(-4px);
}

.lightbox.is-open .lightbox__close {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.2s ease, border-color 0.2s ease,
              opacity 0.4s ease 0.42s, transform 0.45s ease 0.42s;
}

.lightbox__close:hover {
  color: #edf1df;
  border-bottom-color: rgba(237, 241, 223, 0.72);
}

.landing-v4-4-page .lightbox__close {
  color: rgba(255, 70, 76, 0.96);
  border-bottom-color: rgba(255, 70, 76, 0.38);
  font-family: var(--v44-font-main);
  font-weight: 700;
  text-transform: lowercase;
}

.landing-v4-4-page .lightbox__close:hover,
.landing-v4-4-page .lightbox__close:focus-visible {
  color: #ff6267;
  border-bottom-color: rgba(255, 98, 103, 0.88);
}

/* hide body scroll while modal open */
body.lightbox-open { overflow: hidden; }

/* ---------- responsive ------------------------------------------------- */

@media (max-width: 720px) {
  :root {
    --fs-base: 13px;
    --frame-pad-x: 18px;
    --frame-pad-y: 18px;
    --row-thumb-h: auto;
  }

  .site-header { flex-direction: column; gap: 14px; margin-bottom: 18px; }
  .brand__logo { width: clamp(118px, 33vw, 154px); }
  .site-nav ul { gap: 22px; }

  .landing {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .landing-rail {
    min-height: auto;
    padding-top: 8px;
  }

  .featured-panel {
    margin-top: 34px;
  }

  .landing-stage {
    display: grid;
    gap: 0;
  }

  .landing-hero__media {
    height: clamp(260px, 68vw, 420px);
  }

  .landing-copy {
    grid-template-columns: 1fr;
  }

  .landing-copy p + p {
    border-top: var(--hairline);
    border-left: 0;
  }

  .landing-v2-page {
    overflow: auto;
  }

  .landing-v2-shell {
    place-items: stretch;
    min-height: 100vh;
    padding: 18px;
  }

  .landing-v2-brand {
    position: static;
    padding-top: 4px;
  }

  .landing-v2-shell {
    padding-top: 18px;
  }

  .landing-v2-list {
    width: 100%;
  }

  .landing-v2-logo-mark {
    width: clamp(96px, 30vw, 150px);
    height: auto;
  }

  .landing-v2-brand-nav {
    position: static;
    transform: none;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
  }

  .landing-v2-logo-heading:hover .landing-v2-brand-nav,
  .landing-v2-logo-heading:focus-within .landing-v2-brand-nav,
  .landing-v2-brand:hover .landing-v2-brand-nav,
  .landing-v2-brand:focus-within .landing-v2-brand-nav {
    transform: none;
  }

  .work-row {
    grid-template-columns: 36px 1fr 64px;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 18px 0;
  }
  .work-row__index   { grid-column: 1; grid-row: 1; }
  .work-row__title   { grid-column: 2; grid-row: 1; }
  .work-row__year    { grid-column: 3; grid-row: 1; text-align: right; }
  .work-row__thumb   {
    grid-column: 1 / -1;
    grid-row: 2;
    height: clamp(150px, 40vw, 260px);
  }
  .work-row__duration,
  .work-row__play {
    grid-column: 2 / -1;
    grid-row: 1;
    justify-self: end;
    margin-right: 70px;
  }
  /* on mobile keep just title + year on top, thumbnail full-width below;
     hide duration + play button label, but the thumbnail itself is clickable */
  .work-row__duration,
  .work-row__play { display: none; }
  .work-row__thumb { cursor: pointer; }

  .about-record {
    margin-top: 20px;
    padding: 14px;
  }

  .about-record__meta,
  .about-record__grid {
    grid-template-columns: 1fr;
  }

  .about-record__meta {
    gap: 18px;
  }

  .about-record__meta p {
    gap: 6px;
  }

  .about-record__media {
    min-height: clamp(300px, 84vw, 520px);
  }

  .about-record__mark {
    margin-top: 10px;
  }
}

/* ---------- landings index ---------------------------------------------- */

.landings-list {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  margin-top: clamp(18px, 2vw, 32px);
  list-style: none;
  padding-left: 0;
}

.landings-list li {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: var(--hairline);
}

.landings-list li:last-child {
  border-bottom: var(--hairline);
}

.landings-list a {
  border-bottom: 1px dotted var(--fg-dim);
  width: fit-content;
}

.landings-list a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.landings-list span {
  opacity: 0.78;
  line-height: 1.45;
}

/* ---------- landing v3 (centered logo, hover-revealed nav) ------------- */

.landing-v3-page {
  --landing-v3-list-top: clamp(316px, 31vh, 410px);
  --landing-v3-list-bottom: clamp(22px, 4vh, 58px);
  --landing-v3-list-feather: clamp(34px, 5vh, 72px);
  --landing-v3-frame-inset: clamp(10px, 1.35vw, 28px);
  --landing-v3-frame-radius: clamp(18px, 3vw, 52px);
  background: #020302;
  overflow: hidden;
}

.landing-v3-page::before {
  content: "";
  position: fixed;
  inset: var(--landing-v3-frame-inset);
  z-index: 40;
  pointer-events: none;
  border-radius: var(--landing-v3-frame-radius);
  box-shadow:
    inset 0 0 0 1px rgba(221, 235, 213, 0.16),
    inset 0 0 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(48, 92, 70, 0.72),
    0 0 0 9999px #020302;
}

.landing-v3-page .landing-v2-bg::before {
  background:
    radial-gradient(55% 38% at 50% 22%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 90%),
    linear-gradient(rgba(201, 217, 189, 0.1), rgba(201, 217, 189, 0.1)),
    radial-gradient(120% 80% at 50% 46%, rgba(0, 0, 0, 0) 0 58%, rgba(0, 0, 0, 0.34) 100%);
  mix-blend-mode: normal;
}

.landing-v3-page .landing-v2-bg__image {
  filter: saturate(0.98) brightness(1.01) contrast(0.98);
}

.landing-v3-page .landing-v2-brand {
  top: clamp(28px, 3vw, 56px);
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.landing-v3-page .landing-v2-logo-heading {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.landing-v3-page .landing-v2-logo-heading::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: clamp(220px, 22vw, 320px);
  height: 10px;
  transform: translateX(-50%);
  z-index: 0;
}

.landing-v3-logo-stage {
  position: relative;
  display: block;
  width: clamp(150px, 16vw, 240px);
  line-height: 0;
  cursor: pointer;
}

.landing-v4-4-page .landing-v4-project-image {
  transform: var(--v4-thumb-base-transform);
  animation: none;
}

.landing-v4-4-page .landing-v4-project-window::before,
.landing-v4-4-page .landing-v4-project-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.landing-v4-4-page .landing-v4-project-window::before {
  background:
    linear-gradient(
      118deg,
      transparent 16%,
      rgba(255, 244, 220, 0.035) 36%,
      rgba(255, 248, 228, 0.075) 48%,
      transparent 68%
    );
  mix-blend-mode: screen;
  opacity: 0.55;
}

.landing-v4-4-page .landing-v4-project-window::after {
  background: radial-gradient(
    ellipse at 50% 47%,
    transparent 46%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0.34) 100%
  );
  box-shadow:
    inset 0 0 28px rgba(0, 0, 0, 0.2),
    inset 0 0 74px rgba(0, 0, 0, 0.18);
  mix-blend-mode: multiply;
}

.landing-v44-about-panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  color: #000;
  font-family: var(--font-mono);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.5s;
}

.landing-v4-4-page.is-v41-about-active .landing-v44-about-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.landing-v4-4-page.is-v41-about-active .landing-v4-project-window {
  opacity: 0;
}

.landing-v44-about-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #020001;
  filter: brightness(0.72) saturate(0.92);
  isolation: isolate;
}

.landing-v44-about-field::before,
.landing-v44-about-field::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 46%;
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.landing-v44-about-field::before {
  width: 94%;
  height: 84%;
  background:
    radial-gradient(
      ellipse at 50% 52%,
      rgba(96, 31, 28, 0.78) 0%,
      rgba(72, 18, 20, 0.76) 34%,
      rgba(35, 7, 11, 0.84) 61%,
      rgba(8, 1, 3, 0.44) 78%,
      transparent 100%
    );
  filter: blur(clamp(18px, 2.8vw, 48px)) brightness(0.86) saturate(0.94);
  animation: closed-eye-lid-breathe 2.6s ease-in-out infinite alternate;
}

.landing-v44-about-field::after {
  width: 72%;
  height: 58%;
  background:
    radial-gradient(circle at 30% 42%, rgba(244, 119, 63, 0.48) 0%, transparent 29%),
    radial-gradient(circle at 69% 59%, rgba(221, 78, 44, 0.4) 0%, transparent 33%),
    radial-gradient(ellipse at 50% 51%, rgba(149, 47, 34, 0.3) 0%, transparent 70%);
  filter: blur(clamp(26px, 3.6vw, 62px)) brightness(0.78);
  mix-blend-mode: screen;
  animation: closed-eye-light-through 2.25s ease-in-out infinite alternate;
}

.landing-v44-about-field span {
  position: absolute;
  left: 16%;
  width: 68%;
  border-radius: 42%;
  filter: blur(clamp(28px, 4vw, 72px));
  transform-origin: 50% 50%;
  will-change: opacity, transform;
}

.landing-v44-about-field__upper {
  top: 19%;
  height: 34%;
  background: rgba(148, 55, 42, 0.32);
  animation: closed-eye-upper-breathe 3s ease-in-out infinite alternate;
}

.landing-v44-about-field__lower {
  bottom: 17%;
  height: 36%;
  background: rgba(170, 69, 42, 0.28);
  animation: closed-eye-lower-breathe 3.4s ease-in-out infinite alternate;
}

.landing-v44-about-field__center {
  top: 34%;
  left: 23% !important;
  width: 54% !important;
  height: 33%;
  background: rgba(48, 6, 13, 0.72);
  filter: blur(clamp(32px, 4.6vw, 82px)) !important;
  animation: closed-eye-center-breathe 2.9s ease-in-out infinite alternate;
}

.landing-v44-about-copy {
  position: absolute;
  inset: 22% 21% 20%;
  z-index: 2;
  display: grid;
  gap: clamp(8px, 1.2vh, 15px);
  align-content: center;
  color: #54251c;
  text-shadow: none;
  pointer-events: none;
}

.landing-v44-about-eyebrow {
  color: #54251c;
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
}

.landing-v44-about-copy h1 {
  max-width: 18ch;
  color: #54251c;
  font-family: var(--v44-font-main);
  font-size: clamp(20px, 2.05vw, 38px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: lowercase;
}

.landing-v44-about-location {
  color: #54251c;
  font-size: clamp(10px, 0.82vw, 15px);
  font-weight: 700;
}

.landing-v44-about-location span {
  display: inline-block;
  margin: 0 0.35em;
  color: #54251c;
}

.landing-v44-about-deck {
  max-width: 61ch;
  color: #54251c;
  font-size: clamp(9px, 0.74vw, 13px);
  font-weight: 600;
  line-height: 1.45;
}

.landing-v44-about-links {
  display: grid;
  padding-top: clamp(8px, 1.25vh, 15px);
  border-top: 1px solid rgba(84, 37, 28, 0.38);
  gap: clamp(9px, 1.4vw, 22px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) auto;
  align-items: end;
  font-size: clamp(8px, 0.62vw, 11px);
  line-height: 1.25;
}

.landing-v44-about-eyebrow,
.landing-v44-about-copy h1,
.landing-v44-about-location,
.landing-v44-about-deck,
.landing-v44-about-links {
  opacity: 0;
  transition:
    opacity 0.46s ease,
    transform 0.62s cubic-bezier(0.18, 1.34, 0.3, 1);
  will-change: opacity, transform;
}

.landing-v44-about-eyebrow {
  transform: translate3d(-9px, 2px, 0) rotate(-1.2deg);
}

.landing-v44-about-copy h1 {
  transform: translate3d(0, 7px, 0) scaleX(0.94) rotate(0.35deg);
  transform-origin: left center;
}

.landing-v44-about-location {
  transform: translate3d(9px, 1px, 0) rotate(0.5deg);
}

.landing-v44-about-deck {
  transform: translate3d(-5px, 7px, 0) rotate(-0.25deg);
}

.landing-v44-about-links {
  transform: translate3d(0, 9px, 0) rotate(0.2deg);
  transform-origin: left top;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-copy {
  pointer-events: auto;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-eyebrow,
.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-copy h1,
.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-location,
.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-deck,
.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-links {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1) rotate(0deg);
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-eyebrow {
  transition-delay: 0.02s;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-copy h1 {
  transition-delay: 0.08s;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-location {
  transition-delay: 0.14s;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-deck {
  transition-delay: 0.2s;
}

.landing-v4-4-page.is-v41-about-revealed .landing-v44-about-links {
  transition-delay: 0.27s;
}

.landing-v44-about-links > a {
  display: grid;
  gap: 3px;
  min-width: 0;
  transform-origin: left bottom;
}

.landing-v44-about-links span {
  color: #54251c;
}

.landing-v44-about-links strong,
.landing-v44-about-links a {
  color: #54251c;
  font-weight: 700;
}

.landing-v44-about-eyebrow,
.landing-v44-about-copy h1,
.landing-v44-about-location,
.landing-v44-about-deck,
.landing-v44-about-links > a > span,
.landing-v44-about-links > a > strong,
.landing-v44-about-socials > a {
  background-color: #54251c;
  background-image:
    radial-gradient(circle, rgba(119, 62, 48, 0.94) 0 0.55px, transparent 0.68px),
    radial-gradient(circle, rgba(39, 12, 8, 0.82) 0 0.48px, transparent 0.62px);
  background-repeat: repeat;
  background-position: 0 0, 1px 1px;
  background-size: 3px 3px, 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: landing-v44-about-text-grain 0.38s steps(3, end) infinite;
}

.landing-v44-about-links a {
  transition:
    filter 0.18s ease,
    opacity 0.18s ease,
    transform 0.28s cubic-bezier(0.18, 1.34, 0.3, 1);
}

.landing-v44-about-links a:hover,
.landing-v44-about-links a:focus-visible {
  filter: brightness(1.24);
}

.landing-v44-about-links > a:hover,
.landing-v44-about-links > a:focus-visible {
  transform: translate3d(0, -2px, 0) rotate(-0.55deg);
}

.landing-v44-about-links > a:nth-child(2):hover,
.landing-v44-about-links > a:nth-child(2):focus-visible,
.landing-v44-about-socials > a:nth-child(2):hover,
.landing-v44-about-socials > a:nth-child(2):focus-visible {
  transform: translate3d(0, -2px, 0) rotate(0.55deg);
}

.landing-v44-about-socials > a:hover,
.landing-v44-about-socials > a:focus-visible {
  transform: translate3d(2px, -2px, 0) rotate(-0.45deg);
}

.landing-v44-about-links a:focus-visible {
  outline: 1px solid #54251c;
  outline-offset: 3px;
}

.landing-v44-about-socials {
  display: flex;
  gap: clamp(7px, 0.75vw, 12px);
  justify-content: end;
  white-space: nowrap;
}

.landing-v4-4-page.is-v41-about-active .landing-v41-eye-hotspot {
  pointer-events: none;
}

@keyframes landing-v44-about-text-grain {
  0% {
    background-position: 0 0, 1px 1px;
  }
  33% {
    background-position: 2px -1px, -1px 2px;
  }
  66% {
    background-position: -1px 1px, 2px 0;
  }
  100% {
    background-position: 1px 2px, 0 -1px;
  }
}

@media (max-width: 860px) {
  .landing-v44-about-copy {
    inset: 19% 18% 17%;
    gap: 4px;
  }

  .landing-v44-about-eyebrow {
    font-size: clamp(7px, 2.1vw, 9px);
  }

  .landing-v44-about-copy h1 {
    font-size: clamp(17px, 5.2vw, 22px);
  }

  .landing-v44-about-location {
    font-size: clamp(8px, 2.55vw, 10.5px);
  }

  .landing-v44-about-deck {
    max-width: 46ch;
    font-size: clamp(7.5px, 2.2vw, 9.5px);
    line-height: 1.3;
  }

  .landing-v44-about-links {
    padding-top: 4px;
    gap: 6px;
    grid-template-columns: 1fr 1.25fr;
    font-size: clamp(7px, 2.05vw, 9px);
  }

  .landing-v44-about-socials {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-v44-about-field::before,
  .landing-v44-about-field::after,
  .landing-v44-about-field span,
  .landing-v44-about-eyebrow,
  .landing-v44-about-copy h1,
  .landing-v44-about-location,
  .landing-v44-about-deck,
  .landing-v44-about-links > a > span,
  .landing-v44-about-links > a > strong,
  .landing-v44-about-socials > a {
    animation: none;
  }

  .landing-v44-about-eyebrow,
  .landing-v44-about-copy h1,
  .landing-v44-about-location,
  .landing-v44-about-deck,
  .landing-v44-about-links,
  .landing-v44-about-links a {
    transition: none;
  }

  .landing-v44-about-links a:hover,
  .landing-v44-about-links a:focus-visible {
    transform: none;
  }
}

.landing-v3-logo-stage:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 7px;
}

.landing-v3-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.landing-v3-logo-letters {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 0.46s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.46s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v3-page .landing-v2-logo-heading.is-logo-lettered .landing-v3-logo-letters {
  opacity: 1;
  transform: translateY(0);
}

.landing-v3-page .landing-v2-logo-heading.is-on-dark .landing-v2-logo-mark {
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.1));
}

.landing-v3-page .landing-v2-brand-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  z-index: 1;
  display: flex;
  flex-direction: row;
  width: min(520px, calc(100vw - 36px));
  gap: clamp(8px, 1vw, 14px);
  align-items: baseline;
  justify-content: center;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.landing-v3-page .landing-v2-filter,
.landing-v3-page .landing-v2-filter-sep,
.landing-v3-page .landing-v2-brand-nav a {
  margin-left: 0;
  margin-right: 0;
}

.landing-v3-page .landing-v2-filter[data-v2-filter="edit"] {
  order: 1;
}

.landing-v3-page .landing-v2-filter-sep--edit-dir {
  order: 2;
}

.landing-v3-page .landing-v2-filter[data-v2-filter="dir"] {
  order: 3;
}

.landing-v3-page .landing-v2-filter-sep--dir-about {
  order: 4;
}

.landing-v3-page .landing-v2-brand-nav a {
  order: 5;
}

.landing-v3-page .landing-v2-filter[aria-pressed="true"] {
  color: var(--accent-hover);
  transform: none;
}

.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter-sep--edit-dir {
  display: none;
}

.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[aria-pressed="true"] {
  order: 0;
  margin-right: clamp(68px, 11vw, 180px);
}

.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[aria-pressed="false"] {
  order: 1;
}

.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter-sep--dir-about {
  order: 2;
}

.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-brand-nav a {
  order: 3;
}

.landing-v3-page .landing-v2-logo-heading.is-nav-revealed .landing-v2-brand-nav,
.landing-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-brand-nav {
  opacity: 1;
  transform: translate(-50%, 4px);
  pointer-events: auto;
}

.landing-v3-page .landing-v2-shell {
  min-height: 100vh;
  padding: 0 clamp(22px, 3vw, 54px);
}

.landing-v3-page .landing-v2-list {
  position: fixed;
  top: var(--landing-v3-list-top);
  left: 50%;
  z-index: 4;
  max-height: calc(100vh - var(--landing-v3-list-top) - var(--landing-v3-list-bottom));
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: clamp(18px, 5vh, 72px);
  scrollbar-width: none;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(100% - var(--landing-v3-list-feather)),
    rgba(0, 0, 0, 0.16) calc(100% - 12px),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(100% - var(--landing-v3-list-feather)),
    rgba(0, 0, 0, 0.16) calc(100% - 12px),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-overflow-scrolling: touch;
}

.landing-v3-page .landing-v2-list.is-scrolled {
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.18) 12px,
    #000 var(--landing-v3-list-feather),
    #000 calc(100% - var(--landing-v3-list-feather)),
    rgba(0, 0, 0, 0.16) calc(100% - 12px),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.18) 12px,
    #000 var(--landing-v3-list-feather),
    #000 calc(100% - var(--landing-v3-list-feather)),
    rgba(0, 0, 0, 0.16) calc(100% - 12px),
    rgba(0, 0, 0, 0) 100%
  );
}

.landing-v3-page .landing-v2-list::-webkit-scrollbar {
  display: none;
}

/* ---------- landing v4 (left rail + blinking eye stage) ---------------- */

.landing-v4-page {
  --landing-v3-list-top: auto;
  --landing-v3-list-bottom: clamp(22px, 4vh, 54px);
  --landing-v3-list-feather: clamp(24px, 4vh, 54px);
  background: #000;
  color: #edf1df;
}

.landing-v4-page::before {
  inset: 0;
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(237, 241, 223, 0.06),
    inset 0 0 80px rgba(0, 0, 0, 0.92);
}

.landing-v4-page .landing-v2-bg {
  display: none;
}

.landing-v4-page .landing-v2-brand {
  top: clamp(36px, 5.2vh, 72px);
  left: clamp(28px, 4.6vw, 78px);
  transform: none;
  z-index: 8;
  opacity: 0;
  animation: landing-v4-logo-in 2.4s cubic-bezier(0.2, 0.8, 0.18, 1) 0.7s forwards;
}

.landing-v4-page .landing-v2-logo-heading {
  margin: 0;
}

.landing-v4-page .landing-v2-logo-heading::after {
  left: 0;
  width: min(520px, 38vw);
  height: clamp(92px, 12vh, 150px);
  transform: none;
}

.landing-v4-page .landing-v3-logo-stage {
  width: clamp(128px, 10vw, 178px);
}

.landing-v4-page .landing-v3-logo-base,
.landing-v4-page .landing-v3-logo-letters {
  filter: invert(1) sepia(0.18) saturate(0.8) brightness(1.08);
}

.landing-v4-page .landing-v2-brand-nav {
  top: calc(100% + clamp(22px, 4vh, 48px));
  left: 0;
  width: min(520px, 38vw);
  justify-content: flex-start;
  color: rgba(237, 241, 223, 0.88);
  transform: translate(0, 6px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.18, 1);
}

.landing-v4-page .landing-v2-logo-heading.is-nav-revealed .landing-v2-brand-nav,
.landing-v4-page .landing-v2-logo-heading.has-active-filter .landing-v2-brand-nav,
.landing-v4-page .landing-v2-logo-heading:hover .landing-v2-brand-nav,
.landing-v4-page .landing-v2-logo-heading:focus-within .landing-v2-brand-nav {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.landing-v4-page .landing-v2-filter,
.landing-v4-page .landing-v2-filter-sep,
.landing-v4-page .landing-v2-brand-nav a {
  color: rgba(237, 241, 223, 0.74);
  text-shadow: 0.018em 0 rgba(237, 241, 223, 0.2);
}

.landing-v4-page .landing-v2-filter:hover,
.landing-v4-page .landing-v2-filter[aria-pressed="true"],
.landing-v4-page .landing-v2-brand-nav a:hover {
  color: #edf1df;
}

.landing-v4-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[aria-pressed="true"] {
  margin-right: clamp(44px, 5.8vw, 110px);
}

.landing-v4-page .landing-v2-shell {
  z-index: 6;
  padding: 0;
}

.landing-v4-page .landing-v2-list {
  top: 50%;
  left: clamp(28px, 4.6vw, 78px);
  right: auto;
  bottom: auto;
  z-index: 7;
  width: min(260px, 23vw);
  max-height: clamp(170px, 34vh, 360px);
  transform: translateY(-50%);
  color: rgba(237, 241, 223, 0.82);
}

.landing-v4-page .landing-v2-work {
  border-top: 1px solid rgba(237, 241, 223, 0.24);
  color: rgba(237, 241, 223, 0.78);
  gap: 2px 10px;
  padding: 10px 0 11px;
  font-size: clamp(11px, 0.8vw, 14px);
  text-shadow: 0.018em 0 rgba(237, 241, 223, 0.14);
}

.landing-v4-page .landing-v2-work:hover,
.landing-v4-page .landing-v2-work:focus-visible,
.landing-v4-page .landing-v2-work[aria-current="true"] {
  color: #edf1df;
  background: rgba(237, 241, 223, 0.045);
}

.landing-v4-page .landing-v4-eye-stage {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 2;
  width: min(48vw, 860px);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.landing-v4-eye {
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.landing-v4-eye::before,
.landing-v4-eye::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-v4-eye::before {
  display: none;
}

.landing-v4-eye::after {
  display: none;
}

.landing-v4-project-window {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 1;
  --v4-thumb-parallax-x: 0px;
  --v4-thumb-parallax-y: 0px;
  transform: scale(0.995);
}

.landing-v4-eye-stage:not(.is-eye-ready) .landing-v4-project-window {
  opacity: 0;
}

.landing-v4-project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.95) brightness(0.82) contrast(1.06);
  --v4-thumb-base-transform: scale(1.035);
  transform: translate3d(var(--v4-thumb-parallax-x), var(--v4-thumb-parallax-y), 0)
    var(--v4-thumb-base-transform);
  transition: opacity 0.05s linear;
  animation: landing-v4-thumb-drift 18s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.landing-v4-project-image.is-active {
  opacity: 1;
}

@keyframes landing-v4-thumb-drift {
  0% {
    transform: translate3d(
        calc(var(--v4-thumb-parallax-x) - 3px),
        calc(var(--v4-thumb-parallax-y) - 1px),
        0
      )
      var(--v4-thumb-base-transform);
  }

  48% {
    transform: translate3d(
        calc(var(--v4-thumb-parallax-x) + 4px),
        calc(var(--v4-thumb-parallax-y) - 3px),
        0
      )
      var(--v4-thumb-base-transform);
  }

  100% {
    transform: translate3d(
        calc(var(--v4-thumb-parallax-x) + 2px),
        calc(var(--v4-thumb-parallax-y) + 3px),
        0
      )
      var(--v4-thumb-base-transform);
  }
}

.landing-v4-eye-video {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.landing-v4-eye-video--blink {
  z-index: 5;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(0.22, 0.75, 0.22, 1);
}

.landing-v4-eye-video--play {
  z-index: 6;
  opacity: 0;
  transition: opacity 0.16s cubic-bezier(0.22, 0.75, 0.22, 1);
}

.landing-v4-eye-stage.is-blink-settling .landing-v4-eye-video--blink {
  transition-duration: 2s;
}

.landing-v4-eye-stage.is-blinking .landing-v4-eye-video--blink {
  opacity: 1;
}

.landing-v4-eye-stage.is-playing-out .landing-v4-eye-video--play {
  opacity: 1;
}

.landing-v4-4-page.is-v41-about-active .landing-v4-eye-video {
  opacity: 0;
}

/* Decode failure (unsupported codec): drop the video layers and approximate
   the eye window with a soft elliptical mask so the work stays visible. */
.landing-v4-eye-stage.is-video-error .landing-v4-eye-video {
  opacity: 0;
}

.landing-v4-eye-stage.is-video-error .landing-v4-project-window {
  -webkit-mask-image: radial-gradient(56% 40% at 50% 50%, #000 55%, transparent 76%);
  mask-image: radial-gradient(56% 40% at 50% 50%, #000 55%, transparent 76%);
}

.landing-v4-page .landing-v2-work__play {
  color: inherit;
}

@keyframes landing-v4-logo-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .landing-v4-page {
    overflow: auto;
  }

  .landing-v4-page .landing-v2-brand {
    left: 22px;
    top: 24px;
  }

  .landing-v4-page .landing-v2-brand-nav {
    width: calc(100vw - 44px);
  }

  .landing-v4-page .landing-v4-eye-stage {
    top: 212px;
    right: 18px;
    left: 18px;
    width: auto;
    transform: none;
  }

  .landing-v4-page .landing-v2-list {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100vw - 36px);
    max-height: none;
    margin: clamp(520px, 72vh, 640px) 18px 28px;
    transform: none;
  }
}

/* ---------- landing v4.1 (scroll-driven eye viewer) -------------------- */

.landing-v4-1-page {
  --v41-eye-half-w: min(26vw, 470px);
  --v41-eye-half-h: min(14.625vw, 264.375px);
  --v41-eye-left: calc(50% - var(--v41-eye-half-w));
  --v41-eye-right: calc(50% + var(--v41-eye-half-w));
  --v41-eye-top: calc(50% - var(--v41-eye-half-h));
  --v41-eye-bottom: calc(50% + var(--v41-eye-half-h));
  overflow: hidden;
  cursor: ns-resize;
}

.landing-v4-1-page::before {
  box-shadow:
    inset 0 0 0 1px rgba(237, 241, 223, 0.055),
    inset 0 0 96px rgba(0, 0, 0, 0.96);
}

.landing-v41-stage {
  position: fixed;
  inset: 0;
  min-height: 100vh;
}

.landing-v41-nav {
  position: fixed;
  top: clamp(154px, 28vh, 320px);
  left: clamp(32px, 5vw, 88px);
  z-index: 8;
  display: flex;
  gap: clamp(10px, 1.05vw, 18px);
  align-items: baseline;
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1;
  color: rgba(237, 241, 223, 0.66);
  text-shadow: 0.018em 0 rgba(237, 241, 223, 0.18);
}

.landing-v41-nav__item {
  color: rgba(237, 241, 223, 0.6);
  text-decoration: none;
  transition:
    color 0.24s ease,
    opacity 0.24s ease;
}

.landing-v41-nav__item:hover,
.landing-v41-nav__item:focus-visible,
.landing-v41-nav__item[aria-pressed="true"] {
  color: #edf1df;
}

.landing-v41-nav__sep {
  opacity: 0.6;
}

.landing-v4-1-page .landing-v4-eye-stage {
  width: min(52vw, 940px);
}

.landing-v4-1-page .landing-v4-project-image {
  filter: saturate(0.98) brightness(0.86) contrast(1.05);
}

.landing-v41-title,
.landing-v41-arc-wordmark,
.landing-v41-mark,
.landing-v41-role,
.landing-v41-count,
.landing-v41-hint {
  position: fixed;
  z-index: 7;
  margin: 0;
  color: rgba(237, 241, 223, 0.86);
  font-family: var(--font-mono);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0.018em 0 rgba(237, 241, 223, 0.18);
}

.landing-v41-title,
.landing-v41-role {
  font-size: clamp(13px, 0.9vw, 17px);
  transition:
    opacity 1.65s cubic-bezier(0.2, 0.82, 0.18, 1),
    color 0.24s ease,
    transform 0.34s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v41-title {
  top: calc(var(--v41-eye-bottom) + clamp(28px, 4.6vh, 58px));
  left: calc(var(--v41-eye-left) + clamp(6px, 1.2vw, 20px));
  max-width: min(33vw, 520px);
  font-size: clamp(12px, 0.82vw, 16px);
  text-align: left;
}

.landing-v41-arc-wordmark {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff4b4b;
  font: inherit;
  font-size: clamp(14px, 0.98vw, 18px);
  line-height: 1;
  pointer-events: none;
  appearance: none;
  transition:
    opacity 1.65s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.34s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v41-eye-stage .landing-v41-arc-wordmark {
  position: absolute;
  inset: 0;
  z-index: 7;
}

.landing-v41-arc-wordmark__letter {
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.88s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.64s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v41-arc-wordmark__letter:not(.landing-v41-arc-wordmark__letter--k) {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(3px);
}

.is-v41-about-hovered .landing-v41-arc-wordmark__letter,
.landing-v41-arc-wordmark:focus-visible .landing-v41-arc-wordmark__letter,
.is-v41-name-hovered .landing-v41-arc-wordmark__letter,
.is-v41-about-active .landing-v41-arc-wordmark__letter {
  opacity: 1;
  transition:
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.is-v41-about-hovered .landing-v41-arc-wordmark__letter:not(.landing-v41-arc-wordmark__letter--k),
.landing-v41-arc-wordmark:focus-visible .landing-v41-arc-wordmark__letter:not(.landing-v41-arc-wordmark__letter--k),
.is-v41-name-hovered .landing-v41-arc-wordmark__letter:not(.landing-v41-arc-wordmark__letter--k),
.is-v41-about-active .landing-v41-arc-wordmark__letter:not(.landing-v41-arc-wordmark__letter--k) {
  transform: translate(-50%, -50%);
}

.landing-v41-arc-wordmark__letter:nth-child(1) {
  left: 10.9%;
  top: 30.14%;
}

.landing-v41-arc-wordmark__letter:nth-child(2) {
  left: 15.62%;
  top: 22.23%;
}

.landing-v41-arc-wordmark__letter:nth-child(3) {
  left: 20.58%;
  top: 15.38%;
}

.landing-v41-arc-wordmark__letter:nth-child(4) {
  left: 26.44%;
  top: 8.12%;
}

.landing-v41-arc-wordmark__letter:nth-child(5) {
  left: 33.26%;
  top: 1.84%;
}

.landing-v41-arc-wordmark__letter--k {
  transform: translate(-50%, -50%) scaleX(-1);
  pointer-events: auto;
  cursor: pointer;
}

.is-v41-name-hovered .landing-v41-arc-wordmark__letter,
.is-v41-about-active .landing-v41-arc-wordmark__letter {
  pointer-events: auto;
}

.landing-v41-arc-wordmark:focus-visible .landing-v41-arc-wordmark__letter--k {
  color: #fff;
}

.has-kauai-arc-editor .landing-v41-eye-stage .landing-v41-arc-wordmark {
  pointer-events: none;
}

.has-kauai-arc-editor .landing-v41-arc-wordmark__letter {
  pointer-events: auto;
  cursor: grab;
  user-select: none;
}

.has-kauai-arc-editor .landing-v41-arc-wordmark__letter.is-dragging {
  color: #fff;
  cursor: grabbing;
}

.has-kauai-arc-editor .landing-v41-title,
.has-kauai-arc-editor .landing-v41-mode,
.has-kauai-arc-editor .landing-v41-count {
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.has-kauai-arc-editor .landing-v41-title.is-dragging,
.has-kauai-arc-editor .landing-v41-mode.is-dragging,
.has-kauai-arc-editor .landing-v41-count.is-dragging {
  color: #fff;
  cursor: grabbing;
}

.has-kauai-arc-editor .landing-v41-role {
  transform: none !important;
}

.has-kauai-arc-editor.is-v41-about-active .landing-v4-eye-stage {
  pointer-events: auto;
  cursor: move;
}

.has-kauai-arc-editor.is-v41-about-active .landing-v4-eye-stage.is-thumb-dragging {
  cursor: grabbing;
}

.kauai-arc-editor {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
  width: min(330px, calc(100vw - 36px));
  padding: 12px;
  color: rgba(237, 241, 223, 0.82);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(237, 241, 223, 0.18);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.35;
}

.kauai-arc-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kauai-arc-editor button {
  color: rgba(237, 241, 223, 0.9);
  border: 1px solid rgba(237, 241, 223, 0.24);
  padding: 5px 8px;
  font: inherit;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}

.kauai-arc-editor button:hover,
.kauai-arc-editor button:focus-visible,
.kauai-arc-editor button[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(255, 75, 75, 0.76);
  background: rgba(255, 75, 75, 0.12);
}

.kauai-arc-editor code {
  color: #ff6b6b;
  white-space: pre-wrap;
}

.landing-v41-mark {
  top: calc(50% + min(9vw, 150px));
  right: calc(50% - min(21vw, 360px) + clamp(38px, 3.2vw, 58px));
  left: auto;
}

.landing-v41-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12em;
  align-items: center;
  color: #ff4b4b;
  font-size: clamp(11px, 0.76vw, 14px);
  line-height: 1;
  letter-spacing: 0;
}

.landing-v41-wordmark__letter {
  display: inline-block;
}

.landing-v41-wordmark__letter--k {
  transform: scaleX(-1);
}

.landing-v41-role {
  top: 0;
  left: 0;
  right: auto;
  width: 0;
  height: 0;
  font-size: clamp(13px, 0.9vw, 17px);
}

.landing-v41-mode {
  position: fixed;
  color: rgba(237, 241, 223, 0.48);
  font-size: clamp(11px, 0.76vw, 14px);
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.24s ease;
}

.landing-v41-mode[data-v41-about] {
  top: calc(var(--v41-eye-bottom) + clamp(7px, 1.5vh, 22px));
  left: calc(var(--v41-eye-right) - clamp(112px, 6.9vw, 138px));
}

.landing-v41-mode[data-v41-filter="edit"] {
  top: calc(var(--v41-eye-bottom) + clamp(6px, 1.4vh, 20px));
  left: calc(var(--v41-eye-right) - clamp(76px, 4.7vw, 96px));
}

.landing-v41-mode[data-v41-filter="dir"] {
  top: calc(var(--v41-eye-bottom) + clamp(4px, 1.2vh, 18px));
  left: calc(var(--v41-eye-right) - clamp(40px, 2.5vw, 54px));
}

.landing-v41-mode:hover,
.landing-v41-mode:focus-visible,
.landing-v41-mode[aria-pressed="true"] {
  color: rgba(237, 241, 223, 0.9);
}

.landing-v41-mode-sep {
  display: none;
}

.landing-v41-title:hover,
.landing-v41-title:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.landing-v41-count {
  top: calc(var(--v41-eye-top) - clamp(14px, 2.4vh, 32px));
  left: calc(var(--v41-eye-right) - clamp(72px, 4vw, 92px));
  right: auto;
  font-size: clamp(10px, 0.68vw, 12px);
  color: rgba(237, 241, 223, 0.42);
  transition:
    opacity 1.65s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.72s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v41-hint {
  left: 50%;
  bottom: clamp(28px, 4.6vh, 56px);
  transform: translateX(-50%);
  font-size: clamp(10px, 0.7vw, 12px);
  color: rgba(237, 241, 223, 0.36);
}

.landing-v4-1-page .landing-v41-title,
.landing-v4-1-page .landing-v41-arc-wordmark,
.landing-v4-1-page .landing-v41-mark,
.landing-v4-1-page .landing-v41-role,
.landing-v4-1-page .landing-v41-count {
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
}

.landing-v4-1-page .landing-v41-role {
  transform: none;
}

.landing-v4-1-page.is-v4-intro-complete .landing-v41-title,
.landing-v4-1-page.is-v4-intro-complete .landing-v41-arc-wordmark,
.landing-v4-1-page.is-v4-intro-complete .landing-v41-mark,
.landing-v4-1-page.is-v4-intro-complete .landing-v41-role,
.landing-v4-1-page.is-v4-intro-complete .landing-v41-count {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.landing-v4-1-page.is-v4-intro-complete .landing-v41-role {
  transform: none;
}

.landing-v4-1-page.is-v4-intro-complete .landing-v41-arc-wordmark {
  pointer-events: none;
}

.landing-v4-1-page.is-v4-intro-complete .landing-v4-eye-stage {
  pointer-events: auto;
}

/* Click-to-play zone: an ellipse hugging the eye's transparent opening
   (measured from the blink video's alpha at its settled-open frame).
   Rounded corners clip hit-testing, so clicks in the black outside the
   ellipse fall through to the page instead of opening the player. */
.landing-v41-eye-hotspot {
  position: absolute;
  left: 17.1%;
  right: 15.4%;
  top: 12.8%;
  bottom: 16.7%;
  z-index: 6;
  border-radius: 50%;
  cursor: pointer;
}

.landing-v4-1-page.is-v41-about-active .landing-v41-eye-hotspot {
  cursor: default;
}

.landing-v4-1-page.has-kauai-arc-editor .landing-v41-eye-hotspot {
  pointer-events: none;
}

.landing-v4-1-page.is-v41-about-active .landing-v4-eye-stage,
.landing-v4-1-page.has-kauai-arc-editor .landing-v4-eye-stage {
  cursor: default;
}

.landing-v4-1-page.is-v41-playing-out .landing-v41-title,
.landing-v4-1-page.is-v41-playing-out .landing-v41-arc-wordmark,
.landing-v4-1-page.is-v41-playing-out .landing-v41-role,
.landing-v4-1-page.is-v41-playing-out .landing-v41-count {
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.44s;
}

.landing-v4-1-page.is-v4-intro-complete .landing-v41-title:hover,
.landing-v4-1-page.is-v4-intro-complete .landing-v41-title:focus-visible {
  transform: translateY(-2px);
}

.landing-v4-1-snap-page {
  overflow: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

html.has-v41-snap {
  overflow: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.landing-v4-1-snap-page .landing-v41-snap-rail {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow-y: auto;
  pointer-events: none;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.landing-v4-1-snap-page .landing-v41-snap-rail::-webkit-scrollbar {
  display: none;
}

.landing-v4-1-snap-page .landing-v41-snap-section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ---------- landing v4.2 (native scroll-snap navigation) --------------- */
/* The document itself scrolls through invisible full-height sections;
   the OS owns trackpad gesture physics (one flick = one snap), and the
   blink state machine follows the snapped index. */

html.has-v42-snap {
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

html.has-v42-snap::-webkit-scrollbar {
  display: none;
}

body.landing-v4-2-page {
  padding: 0;
  /* v4.1 sets overflow: hidden, which would make body its own scroll
     container and hide the snap sections from the html scroller. */
  overflow: visible;
}

.landing-v42-scroll-section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 860px) {
  .landing-v4-1-page {
    --v41-eye-half-w: min(44vw, 280px);
    --v41-eye-half-h: min(24.75vw, 157.5px);
  }

  .landing-v4-1-page {
    overflow: hidden;
  }

  .landing-v41-nav {
    top: 28px;
    left: 22px;
    right: 22px;
    justify-content: center;
  }

  .landing-v4-1-page .landing-v4-eye-stage {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(88vw, 560px);
    transform: translate(-50%, -50%);
  }

  .landing-v41-title,
  .landing-v41-role {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .landing-v41-title {
    top: calc(var(--v41-eye-bottom) + 24px);
    left: calc(var(--v41-eye-left) + 2px);
    max-width: 46vw;
  }

  .landing-v41-arc-wordmark {
    font-size: clamp(12px, 3.35vw, 15px);
  }

  .landing-v41-mark {
    top: calc(50% + 31vw);
    right: 64px;
    left: auto;
  }

  .landing-v41-mode[data-v41-about] {
    top: calc(var(--v41-eye-bottom) + 18px);
    left: calc(var(--v41-eye-right) - 92px);
  }

  .landing-v41-mode[data-v41-filter="edit"] {
    top: calc(var(--v41-eye-bottom) + 18px);
    left: calc(var(--v41-eye-right) - 62px);
  }

  .landing-v41-mode[data-v41-filter="dir"] {
    top: calc(var(--v41-eye-bottom) + 18px);
    left: calc(var(--v41-eye-right) - 32px);
  }

  .landing-v41-count {
    top: calc(var(--v41-eye-top) - 16px);
    left: calc(var(--v41-eye-right) - 58px);
    right: auto;
  }
}

/* ---------- landing v4.3 (centered grid eye) ---------------------------- */

.landing-v4-3-page {
  --v41-eye-half-w: min(34vw, 640px);
  --v41-eye-half-h: min(19.125vw, 360px);
  --v43-eye-center-y: 47.5%;
  --v41-eye-top: calc(var(--v43-eye-center-y) - var(--v41-eye-half-h));
  --v41-eye-bottom: calc(var(--v43-eye-center-y) + var(--v41-eye-half-h));
  --v43-grid-offset-y: clamp(22px, 3.2vh, 44px);
  --v43-text-color: rgba(220, 56, 58, 0.88);
  --v43-text-muted: rgba(220, 56, 58, 0.5);
  --v43-text-soft: rgba(220, 56, 58, 0.66);
  --v43-label-font: "Instrument Sans", var(--font-mono);
  --v43-text-hot: rgba(255, 77, 79, 0.96);
  background: #000;
}

.landing-v4-3-page .landing-v43-eye-stage {
  width: calc(var(--v41-eye-half-w) * 2);
}

.landing-v4-3-page .landing-v4-project-image {
  filter: saturate(0.98) brightness(0.9) contrast(1.04);
}

.landing-v4-3-page .landing-v43-wordmark,
.landing-v4-3-page .landing-v43-title,
.landing-v4-3-page .landing-v43-menu,
.landing-v4-3-page .landing-v43-count {
  color: var(--v43-text-color);
  font-family: var(--v43-label-font);
  text-transform: lowercase;
  letter-spacing: 0;
}

.landing-v4-3-page .landing-v43-wordmark {
  top: calc(var(--v41-eye-top) - var(--v43-grid-offset-y));
  left: var(--v41-eye-left);
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.landing-v4-3-page.is-v4-intro-complete .landing-v43-wordmark {
  pointer-events: auto;
}

.landing-v4-3-page .landing-v43-wordmark:hover,
.landing-v4-3-page .landing-v43-wordmark:focus-visible {
  color: var(--v43-text-hot);
}

.landing-v4-3-page .landing-v43-count {
  top: calc(var(--v41-eye-top) - var(--v43-grid-offset-y));
  left: auto;
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 500;
  color: var(--v43-text-muted);
  text-align: right;
}

.landing-v4-3-page .landing-v43-title {
  top: calc(var(--v41-eye-bottom) + var(--v43-grid-offset-y));
  left: var(--v41-eye-left);
  display: grid;
  gap: 0.26em;
  max-width: min(29vw, 420px);
  font-size: clamp(12px, 0.86vw, 16px);
  line-height: 1.08;
  text-align: left;
}

.landing-v4-3-page .landing-v43-title__brand {
  font-weight: 700;
  color: var(--v43-text-hot);
}

.landing-v4-3-page .landing-v43-title__name {
  font-weight: 500;
  color: var(--v43-text-soft);
}

.landing-v4-3-page .landing-v43-title__brand[hidden],
.landing-v4-3-page .landing-v43-title__name[hidden] {
  display: none;
}

.landing-v4-3-page .landing-v43-menu {
  top: calc(var(--v41-eye-bottom) + var(--v43-grid-offset-y) - clamp(15px, 1.2vw, 24px));
  left: auto;
  right: calc(100vw - var(--v41-eye-right));
  display: grid;
  width: auto;
  height: auto;
  gap: clamp(4px, 0.46vw, 8px);
  justify-items: end;
  justify-content: flex-end;
  font-size: clamp(12px, 0.86vw, 16px);
  font-weight: 600;
  line-height: 1.08;
}

.landing-v4-3-page .landing-v41-mode {
  position: static;
  color: var(--v43-text-muted);
  font-size: inherit;
  font-weight: inherit;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.landing-v4-3-page .landing-v41-mode-sep {
  display: none;
}

.landing-v4-3-page .landing-v41-mode:hover,
.landing-v4-3-page .landing-v41-mode:focus-visible,
.landing-v4-3-page .landing-v41-mode[aria-pressed="true"] {
  color: var(--v43-text-hot);
}

.landing-v4-3-page .landing-v41-eye-hotspot {
  z-index: 10;
}

@media (max-width: 860px) {
  .landing-v4-3-page {
    --v41-eye-half-w: min(45vw, 360px);
    --v41-eye-half-h: min(25.3125vw, 202.5px);
    --v43-grid-offset-y: 22px;
  }

  .landing-v4-3-page .landing-v43-eye-stage {
    width: calc(var(--v41-eye-half-w) * 2);
  }

  .landing-v4-3-page .landing-v43-wordmark,
  .landing-v4-3-page .landing-v43-count {
    top: calc(var(--v41-eye-top) - 26px);
  }

  .landing-v4-3-page .landing-v43-title {
    max-width: 44vw;
    font-size: clamp(11px, 3vw, 14px);
  }

  .landing-v4-3-page .landing-v43-menu {
    max-width: 44vw;
    gap: 8px;
    font-size: clamp(11px, 3vw, 14px);
  }

}

/* ---------- landing v4 typography lab ----------------------------------- */

.landing-v4-type-lab-page {
  --v41-eye-half-w: min(37vw, 700px);
  --v41-eye-half-h: min(20.8125vw, 393.75px);
  --v43-eye-center-y: 46.6%;
  --v44-red: rgba(223, 47, 54, 0.9);
  --v44-red-hot: rgba(255, 70, 76, 0.98);
  --v44-red-soft: rgba(223, 47, 54, 0.54);
  --v44-white: rgba(238, 240, 230, 0.82);
  --v44-white-soft: rgba(238, 240, 230, 0.5);
  --v44-font-main: "Instrument Sans", var(--font-mono);
  --v44-font-alt: "Archivo", "Instrument Sans", var(--font-mono);
  --v44-font-tight: "IBM Plex Sans Condensed", "Archivo", var(--font-mono);
  --v43-label-font: var(--v44-font-main);
  --v43-text-color: var(--v44-red);
  --v43-text-muted: var(--v44-red-soft);
  --v43-text-soft: var(--v44-red);
  --v43-text-hot: var(--v44-red-hot);
}

.landing-v4-type-lab-page .landing-v44-wordmark,
.landing-v4-type-lab-page .landing-v44-title,
.landing-v4-type-lab-page .landing-v44-menu,
.landing-v4-type-lab-page .landing-v44-count {
  transition:
    top 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    right 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    bottom 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    left 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    width 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    height 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    color 0.24s ease,
    opacity 1.65s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v4-type-lab-page .landing-v44-wordmark {
  color: var(--v44-red);
  font-family: var(--v44-font-main);
  text-shadow: none;
}

.landing-v4-type-lab-page .landing-v44-wordmark span {
  display: inline-block;
}

.landing-v4-type-lab-page .landing-v44-title {
  text-shadow: none;
}

.landing-v4-type-lab-page .landing-v43-title__brand {
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page .landing-v43-title__name {
  color: var(--v44-red);
}

.landing-v4-type-lab-page .landing-v44-menu {
  text-shadow: none;
}

.landing-v4-type-lab-page .landing-v41-mode {
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page .landing-v41-mode:hover,
.landing-v4-type-lab-page .landing-v41-mode:focus-visible,
.landing-v4-type-lab-page .landing-v41-mode[aria-pressed="true"] {
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page .landing-v44-count {
  color: var(--v44-red-soft);
}

.landing-v44-programs {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 2.4vh, 28px);
  z-index: 18;
  display: flex;
  gap: 9px;
  align-items: center;
  transform: translateX(-50%);
  opacity: 0.32;
  transition: opacity 0.24s ease;
}

.landing-v44-programs:hover,
.landing-v44-programs:focus-within {
  opacity: 1;
}

.landing-v44-programs button {
  padding: 5px 8px;
  border: 1px solid rgba(223, 47, 54, 0.26);
  color: var(--v44-red-soft);
  background: rgba(0, 0, 0, 0.5);
  font: 600 10px/1 var(--font-mono);
  text-transform: lowercase;
  cursor: pointer;
}

.landing-v44-programs button:hover,
.landing-v44-programs button:focus-visible,
.landing-v44-programs button[aria-pressed="true"] {
  border-color: var(--v44-red);
  color: var(--v44-red-hot);
}

.landing-v44-rule {
  position: fixed;
  z-index: 6;
  height: 1px;
  background: var(--v44-red-soft);
  opacity: 0;
  transform-origin: left center;
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v44-rule--top {
  top: calc(var(--v41-eye-top) - clamp(14px, 2vh, 28px));
  left: var(--v41-eye-left);
  width: calc(var(--v41-eye-half-w) * 2);
}

.landing-v44-rule--bottom {
  top: calc(var(--v41-eye-bottom) + clamp(14px, 2vh, 28px));
  left: var(--v41-eye-left);
  width: calc(var(--v41-eye-half-w) * 2);
}

.landing-v4-type-lab-page[data-type-program="register"] {
  --v44-font-main: "Instrument Sans", var(--font-mono);
}

.landing-v4-type-lab-page[data-type-program="register"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - clamp(52px, 6.4vh, 78px));
  left: var(--v41-eye-left);
  font-size: clamp(12px, 0.84vw, 15px);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="register"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(52px, 6.4vh, 78px));
  right: calc(100vw - var(--v41-eye-right));
}

.landing-v4-type-lab-page[data-type-program="register"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(48px, 6vh, 74px));
  left: var(--v41-eye-left);
  font-family: var(--v44-font-main);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 600;
}

.landing-v4-type-lab-page[data-type-program="register"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(48px, 6vh, 74px));
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--v44-font-main);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="permutation"] {
  --v44-font-main: var(--v44-font-tight);
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - clamp(5px, 0.6vh, 10px));
  left: calc(var(--v41-eye-left) - clamp(72px, 5.2vw, 104px));
  width: clamp(150px, 16vw, 260px);
  height: clamp(78px, 9vw, 146px);
  font-family: var(--v44-font-tight);
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span {
  position: absolute;
  transform: translate(-50%, -50%);
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span:nth-child(1) {
  left: 6%;
  top: 82%;
  transform: translate(-50%, -50%) scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span:nth-child(2) {
  left: 24%;
  top: 60%;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span:nth-child(3) {
  left: 44%;
  top: 41%;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span:nth-child(4) {
  left: 65%;
  top: 23%;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-wordmark span:nth-child(5) {
  left: 86%;
  top: 9%;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(8px, 1.1vh, 18px));
  right: calc(100vw - var(--v41-eye-right));
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(18px, 2.5vh, 36px));
  left: calc(var(--v41-eye-left) - clamp(34px, 2.7vw, 56px));
  font-family: var(--v44-font-tight);
  font-size: clamp(15px, 1.18vw, 22px);
  font-weight: 700;
  text-transform: lowercase;
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(18px, 2.5vh, 36px));
  right: calc(100vw - var(--v41-eye-right) - clamp(12px, 1vw, 18px));
  grid-template-columns: auto auto auto;
  gap: clamp(12px, 1.3vw, 24px);
  align-items: start;
  font-family: var(--v44-font-tight);
}

.landing-v4-type-lab-page[data-type-program="permutation"] .landing-v41-mode {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.landing-v4-type-lab-page[data-type-program="axis"] {
  --v44-font-main: var(--v44-font-alt);
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v44-rule {
  opacity: 0.72;
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - clamp(18px, 2.4vh, 34px));
  left: var(--v41-eye-left);
  font-family: var(--v44-font-alt);
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(18px, 2.4vh, 34px));
  right: calc(100vw - var(--v41-eye-right));
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(18px, 2.4vh, 34px));
  left: var(--v41-eye-left);
  width: calc(var(--v41-eye-half-w) * 0.72);
  font-family: var(--v44-font-alt);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(18px, 2.4vh, 34px));
  right: calc(100vw - var(--v41-eye-right));
  display: flex;
  gap: clamp(10px, 1vw, 18px);
  align-items: baseline;
  font-family: var(--v44-font-alt);
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="axis"] .landing-v41-mode-sep {
  display: inline;
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page[data-type-program="catalog"] {
  --v44-font-main: var(--v44-font-tight);
  --v43-eye-center-y: 48%;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v44-wordmark {
  top: 50%;
  left: calc(var(--v41-eye-left) - clamp(92px, 6.6vw, 132px));
  font-family: var(--v44-font-tight);
  font-size: clamp(36px, 4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0.22;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}

.landing-v4-type-lab-page.is-v4-intro-complete[data-type-program="catalog"] .landing-v44-wordmark {
  opacity: 0.22;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(20px, 2.8vh, 38px));
  left: calc(var(--v41-eye-left) + clamp(6px, 0.6vw, 12px));
  right: auto;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(32px, 4vh, 54px));
  left: calc(var(--v41-eye-left) + clamp(6px, 0.6vw, 12px));
  max-width: calc(var(--v41-eye-half-w) * 0.84);
  font-family: var(--v44-font-tight);
  font-size: clamp(18px, 1.7vw, 32px);
  font-weight: 700;
  line-height: 0.96;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v43-title__brand {
  display: inline;
  margin-right: 0.38em;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v43-title__name {
  display: inline;
  font-weight: 500;
}

.landing-v4-type-lab-page[data-type-program="catalog"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(32px, 4vh, 54px));
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--v44-font-tight);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
}

.landing-v4-type-lab-page .landing-v44-rule--left,
.landing-v4-type-lab-page .landing-v44-rule--right {
  width: 1px;
  height: calc(var(--v41-eye-half-h) * 2);
  transform-origin: top center;
}

.landing-v4-type-lab-page .landing-v44-rule--left {
  top: var(--v41-eye-top);
  left: var(--v41-eye-left);
}

.landing-v4-type-lab-page .landing-v44-rule--right {
  top: var(--v41-eye-top);
  left: var(--v41-eye-right);
}

.landing-v44-system,
.landing-v44-system-note {
  position: fixed;
  z-index: 7;
  color: var(--v44-red-soft);
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.32s ease,
    color 0.24s ease,
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v44-system {
  display: grid;
  gap: clamp(11px, 1.3vh, 18px);
}

.landing-v44-system--left {
  top: calc(var(--v41-eye-top) + clamp(8px, 1.4vh, 22px));
  left: calc(var(--v41-eye-left) - clamp(36px, 3vw, 58px));
}

.landing-v44-system--right {
  right: calc(100vw - var(--v41-eye-right) - clamp(40px, 3.4vw, 62px));
  bottom: calc(100vh - var(--v41-eye-bottom) + clamp(8px, 1.4vh, 22px));
}

.landing-v44-system-note {
  top: calc(var(--v41-eye-bottom) + clamp(18px, 2.7vh, 38px));
  left: 50%;
  transform: translateX(-50%);
}

.landing-v4-type-lab-page[data-type-program="modulator"] {
  --v44-font-main: "Archivo", "Instrument Sans", var(--font-mono);
  --v43-eye-center-y: 46%;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-rule {
  opacity: 0.46;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-rule--top {
  top: calc(var(--v41-eye-top) - clamp(28px, 4vh, 52px));
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-rule--bottom {
  top: calc(var(--v41-eye-bottom) + clamp(28px, 4vh, 52px));
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - clamp(61px, 7.8vh, 92px));
  left: var(--v41-eye-left);
  display: grid;
  grid-template-columns: repeat(5, min-content);
  gap: clamp(7px, 0.75vw, 14px);
  font-family: var(--v44-font-main);
  font-size: clamp(13px, 0.98vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark span:nth-child(1),
.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark span:nth-child(5) {
  font-weight: 500;
  transform: translateY(0.24em);
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark span:nth-child(2),
.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark span:nth-child(4) {
  font-weight: 700;
  transform: translateY(-0.08em);
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-wordmark span:nth-child(3) {
  font-size: 1.72em;
  font-weight: 800;
  line-height: 0.72;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(61px, 7.8vh, 92px));
  right: calc(100vw - var(--v41-eye-right));
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(47px, 6vh, 76px));
  left: var(--v41-eye-left);
  font-family: var(--v44-font-main);
  font-size: clamp(14px, 1.08vw, 20px);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v43-title__name {
  font-weight: 500;
}

.landing-v4-type-lab-page[data-type-program="modulator"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(47px, 6vh, 76px));
  right: calc(100vw - var(--v41-eye-right));
  display: grid;
  gap: clamp(3px, 0.38vw, 6px);
  font-family: var(--v44-font-main);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 800;
}

.landing-v4-type-lab-page[data-type-program="aperture"] {
  --v44-font-main: "IBM Plex Sans Condensed", "Archivo", var(--font-mono);
  --v43-eye-center-y: 46.8%;
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark {
  top: var(--v41-eye-top);
  left: var(--v41-eye-left);
  width: calc(var(--v41-eye-half-w) * 2);
  height: calc(var(--v41-eye-half-h) * 2);
  font-family: var(--v44-font-main);
  font-size: clamp(18px, 1.65vw, 31px);
  font-weight: 700;
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span {
  position: absolute;
  transform: translate(-50%, -50%);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span:nth-child(1) {
  left: 10%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-34deg) scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span:nth-child(2) {
  left: 22%;
  top: 31%;
  transform: translate(-50%, -50%) rotate(-26deg);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span:nth-child(3) {
  left: 39%;
  top: 16%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span:nth-child(4) {
  left: 58%;
  top: 11%;
  transform: translate(-50%, -50%) rotate(5deg);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-wordmark span:nth-child(5) {
  left: 77%;
  top: 20%;
  transform: translate(-50%, -50%) rotate(22deg);
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-count {
  top: calc(var(--v41-eye-top) + clamp(26px, 3.8vh, 52px));
  right: calc(100vw - var(--v41-eye-right) + clamp(16px, 1.3vw, 28px));
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(24px, 3.4vh, 48px));
  left: calc(var(--v41-eye-left) + calc(var(--v41-eye-half-w) * 0.09));
  font-family: var(--v44-font-main);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 700;
  line-height: 0.96;
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) - clamp(6px, 0.7vh, 12px));
  right: calc(100vw - var(--v41-eye-right) + clamp(20px, 1.7vw, 36px));
  display: flex;
  gap: clamp(9px, 1vw, 16px);
  align-items: baseline;
  font-family: var(--v44-font-main);
  font-size: clamp(14px, 1.05vw, 19px);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="aperture"] .landing-v41-mode-sep {
  display: inline;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] {
  --v44-font-main: var(--font-mono);
  --v43-eye-center-y: 47%;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-rule {
  opacity: 0.58;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-system,
.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-system-note {
  opacity: 1;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) + clamp(10px, 1.7vh, 24px));
  left: calc(var(--v41-eye-left) - clamp(78px, 6.1vw, 116px));
  display: grid;
  grid-template-columns: min-content min-content;
  gap: clamp(6px, 0.65vw, 12px) clamp(14px, 1.2vw, 22px);
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.82vw, 15px);
  font-weight: 800;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-wordmark span:nth-child(1) {
  transform: scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-wordmark span:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: end;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-count {
  top: calc(var(--v41-eye-top) + clamp(10px, 1.7vh, 24px));
  right: calc(100vw - var(--v41-eye-right) - clamp(4px, 0.4vw, 8px));
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(16px, 2.3vh, 32px));
  left: calc(var(--v41-eye-left) + clamp(3px, 0.3vw, 6px));
  max-width: calc(var(--v41-eye-half-w) * 0.72);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="coordinates"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(16px, 2.3vh, 32px));
  right: calc(100vw - var(--v41-eye-right));
  display: grid;
  grid-template-columns: repeat(3, min-content);
  gap: clamp(12px, 1.6vw, 28px);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="signal"] {
  --v44-font-main: "Archivo", "Instrument Sans", var(--font-mono);
  --v43-eye-center-y: 47.8%;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark {
  top: 50%;
  left: calc(var(--v41-eye-left) - clamp(120px, 8.4vw, 174px));
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 0.2vh, 3px);
  color: var(--v44-red);
  font-family: var(--v44-font-main);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark span:nth-child(1) {
  transform: scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark span:nth-child(2) {
  margin-left: 0.9em;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark span:nth-child(3) {
  margin-left: 1.8em;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark span:nth-child(4) {
  margin-left: 2.7em;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-wordmark span:nth-child(5) {
  margin-left: 3.6em;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - clamp(20px, 2.8vh, 38px));
  left: calc(var(--v41-eye-right) - clamp(28px, 2.2vw, 42px));
  right: auto;
  font-family: var(--v44-font-main);
  font-weight: 800;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + clamp(34px, 4.7vh, 62px));
  left: calc(var(--v41-eye-left) + calc(var(--v41-eye-half-w) * 0.12));
  font-family: var(--v44-font-main);
  font-size: clamp(15px, 1.18vw, 22px);
  font-weight: 800;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-title::before {
  content: "";
  position: absolute;
  top: -0.68em;
  left: 0;
  width: clamp(64px, 6vw, 118px);
  height: 2px;
  background: var(--v44-red);
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + clamp(34px, 4.7vh, 62px));
  right: calc(100vw - var(--v41-eye-right) + calc(var(--v41-eye-half-w) * 0.08));
  display: flex;
  gap: clamp(8px, 0.9vw, 14px);
  align-items: baseline;
  font-family: var(--v44-font-main);
  font-size: clamp(11px, 0.82vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="signal"] .landing-v41-mode-sep {
  display: inline;
  color: var(--v44-red-soft);
}

.landing-v44-matrix,
.landing-v44-operator {
  position: fixed;
  z-index: 7;
  color: var(--v44-red-soft);
  font-family: "Azeret Mono", var(--font-mono);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.32s ease,
    color 0.24s ease,
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v44-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.landing-v44-operator {
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="matrix"] {
  --v44-font-main: "Azeret Mono", var(--font-mono);
  --v43-eye-center-y: 46.4%;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-rule {
  opacity: 0.5;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-rule--top {
  top: calc(var(--v41-eye-top) - 42px);
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-rule--bottom {
  top: calc(var(--v41-eye-bottom) + 42px);
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 50px);
  left: calc(var(--v41-eye-left) - 78px);
  opacity: 1;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix span:nth-child(1),
.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix span:nth-child(7),
.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix span:nth-child(13),
.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix span:nth-child(19),
.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix span:nth-child(25) {
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 50px);
  left: calc(var(--v41-eye-left) + 92px);
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--v44-red-hot);
  font-family: var(--v44-font-main);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-wordmark span:nth-child(even) {
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 50px);
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--v44-font-main);
  font-size: 11px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 55px);
  left: var(--v41-eye-left);
  font-family: var(--v44-font-main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v43-title__name {
  display: block;
  color: var(--v44-red);
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 55px);
  right: calc(100vw - var(--v41-eye-right));
  display: grid;
  gap: 4px;
  font-family: var(--v44-font-main);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program="counterform"] {
  --v44-font-main: "Space Grotesk", "Instrument Sans", sans-serif;
  --v43-eye-center-y: 46.2%;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 30px);
  left: calc(var(--v41-eye-left) - 52px);
  width: calc(var(--v41-eye-half-w) * 1.2);
  height: calc(var(--v41-eye-half-h) * 0.7);
  color: var(--v44-red-hot);
  font-family: var(--v44-font-main);
  font-size: 23px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span {
  position: absolute;
  transform: translate(-50%, -50%);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span:nth-child(1) {
  left: 2%;
  top: 82%;
  transform: translate(-50%, -50%) rotate(-38deg) scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span:nth-child(2) {
  left: 17%;
  top: 55%;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span:nth-child(3) {
  left: 36%;
  top: 33%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span:nth-child(4) {
  left: 58%;
  top: 17%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-wordmark span:nth-child(5) {
  left: 82%;
  top: 10%;
  transform: translate(-50%, -50%) rotate(9deg);
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-count {
  top: calc(var(--v41-eye-top) + 10px);
  right: calc(100vw - var(--v41-eye-right) + 18px);
  font-family: var(--v44-font-main);
  font-size: 12px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 29px);
  left: calc(var(--v41-eye-left) - 8px);
  font-family: var(--v44-font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.02;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v43-title__brand {
  display: block;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v43-title__name {
  display: block;
  font-weight: 500;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 31px);
  right: calc(100vw - var(--v41-eye-right) + 8px);
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: var(--v44-font-main);
  font-size: 13px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="counterform"] .landing-v41-mode-sep {
  display: inline;
}

.landing-v4-type-lab-page[data-type-program="score"] {
  --v44-font-main: "IBM Plex Sans Condensed", "Archivo", sans-serif;
  --v43-eye-center-y: 47%;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-rule {
  opacity: 0.62;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-rule--top,
.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-rule--bottom {
  left: calc(var(--v41-eye-left) - 28px);
  width: calc(var(--v41-eye-half-w) * 2 + 56px);
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 35px);
  left: calc(var(--v41-eye-left) - 28px);
  width: calc(var(--v41-eye-half-w) * 2 + 56px);
  height: 24px;
  color: var(--v44-red-hot);
  font-family: var(--v44-font-main);
  font-size: 18px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span {
  position: absolute;
  top: 0;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span:nth-child(1) {
  left: 0;
  transform: scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span:nth-child(2) {
  left: 23%;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span:nth-child(3) {
  left: 50%;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span:nth-child(4) {
  left: 73%;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-wordmark span:nth-child(5) {
  right: 0;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 58px);
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--v44-font-main);
  font-size: 13px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 38px);
  left: calc(var(--v41-eye-left) - 28px);
  font-family: var(--v44-font-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v43-title__name {
  font-weight: 500;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 38px);
  right: calc(100vw - var(--v41-eye-right) - 28px);
  display: grid;
  grid-template-columns: repeat(3, min-content);
  gap: 18px;
  align-items: baseline;
  font-family: var(--v44-font-main);
  font-size: 14px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="score"] .landing-v41-mode-sep {
  display: none;
}

.landing-v4-type-lab-page[data-type-program="operator"] {
  --v44-font-main: "Azeret Mono", var(--font-mono);
  --v43-eye-center-y: 46.4%;
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-rule--top,
.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-rule--bottom {
  opacity: 0.44;
  left: calc(var(--v41-eye-left) + calc(var(--v41-eye-half-w) * 0.13));
  width: calc(var(--v41-eye-half-w) * 1.74);
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) + calc(var(--v41-eye-half-h) * 0.36));
  left: calc(var(--v41-eye-left) - 88px);
  display: grid;
  grid-template-columns: repeat(5, 12px);
  gap: 5px;
  color: var(--v44-red-hot);
  font-family: var(--v44-font-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-wordmark span:nth-child(1) {
  transform: scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-wordmark span:nth-child(2),
.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-wordmark span:nth-child(4) {
  transform: translateY(16px);
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-wordmark span:nth-child(3) {
  transform: translateY(32px);
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-operator {
  top: calc(var(--v41-eye-top) - 31px);
  left: calc(var(--v41-eye-left) + calc(var(--v41-eye-half-w) * 0.13));
  opacity: 1;
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 31px);
  right: calc(100vw - var(--v41-eye-right));
  font-family: var(--v44-font-main);
  font-size: 10px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 36px);
  left: calc(var(--v41-eye-left) + calc(var(--v41-eye-half-w) * 0.13));
  display: grid;
  grid-template-columns: 90px minmax(0, 260px);
  column-gap: 22px;
  font-family: var(--v44-font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v43-title__brand {
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page[data-type-program="operator"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 36px);
  right: calc(100vw - var(--v41-eye-right));
  display: grid;
  gap: 7px;
  font-family: var(--v44-font-main);
  font-size: 11px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="monogram"] {
  --v44-font-main: "Space Grotesk", "Instrument Sans", sans-serif;
  --v43-eye-center-y: 47%;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark {
  top: 50%;
  left: calc(var(--v41-eye-left) - 124px);
  display: grid;
  grid-template-columns: min-content min-content;
  grid-auto-rows: 0.74em;
  gap: 0 0.08em;
  color: rgba(223, 47, 54, 0.18);
  font-family: var(--v44-font-main);
  font-size: 118px;
  font-weight: 700;
  line-height: 0.72;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.landing-v4-type-lab-page.is-v4-intro-complete[data-type-program="monogram"] .landing-v44-wordmark {
  opacity: 0.62;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark span:nth-child(1) {
  grid-row: 1 / span 2;
  transform: scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark span:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark span:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark span:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-wordmark span:nth-child(5) {
  grid-column: 2;
  grid-row: 4;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 22px);
  right: calc(100vw - var(--v41-eye-right));
  color: var(--v44-red);
  font-family: var(--v44-font-main);
  font-size: 11px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 31px);
  left: calc(var(--v41-eye-left) - 2px);
  font-family: var(--v44-font-main);
  font-size: 15px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v43-title__name {
  display: block;
  color: var(--v44-red-soft);
  font-weight: 500;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 31px);
  right: calc(100vw - var(--v41-eye-right));
  display: flex;
  gap: 20px;
  font-family: var(--v44-font-main);
  font-size: 12px;
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program="monogram"] .landing-v41-mode-sep {
  display: inline;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] {
  --v44-font-main: "Azeret Mono", var(--font-mono);
  --v43-eye-center-y: 46.4%;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-rule {
  opacity: 0;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-system,
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-system-note,
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-operator {
  opacity: 0;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix {
  color: rgba(223, 47, 54, 0.54);
  font-family: var(--v44-font-main);
  font-weight: 800;
  opacity: 1;
  transition:
    top 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    right 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    bottom 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    left 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    gap 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    color 0.24s ease,
    font-size 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    letter-spacing 0.42s cubic-bezier(0.2, 0.82, 0.18, 1),
    opacity 0.3s ease,
    transform 0.42s cubic-bezier(0.2, 0.82, 0.18, 1);
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix span:nth-child(1),
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix span:nth-child(7),
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix span:nth-child(13),
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix span:nth-child(19),
.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-matrix span:nth-child(25) {
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-wordmark {
  color: var(--v44-red-hot);
  font-family: var(--v44-font-main);
  font-weight: 800;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-wordmark span {
  display: inline-block;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-count {
  color: rgba(223, 47, 54, 0.76);
  font-family: var(--v44-font-main);
  font-weight: 700;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-title {
  font-family: var(--v44-font-main);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v43-title__name {
  display: block;
  color: var(--v44-red);
  font-weight: 500;
  text-transform: lowercase;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v44-menu {
  display: grid;
  gap: 4px;
  color: var(--v44-red);
  font-family: var(--v44-font-main);
  font-weight: 800;
  text-transform: lowercase;
}

.landing-v4-type-lab-page[data-type-program^="matrix"] .landing-v41-mode-sep {
  display: none;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 63px);
  left: calc(var(--v41-eye-left) - 92px);
  gap: 7px 10px;
  font-size: 11px;
  transform: none;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 61px);
  left: var(--v41-eye-left);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-wordmark span:nth-child(even) {
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 61px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 55px);
  left: var(--v41-eye-left);
  font-size: 15px;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v43-title__name {
  font-size: 13px;
}

.landing-v4-type-lab-page[data-type-program="matrix"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 55px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 52px);
  left: calc(var(--v41-eye-left) - 96px);
  gap: 8px 12px;
  color: rgba(223, 47, 54, 0.46);
  font-size: 11px;
  transform: translate(8px, -2px);
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 42px);
  left: calc(var(--v41-eye-left) + 74px);
  display: flex;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-wordmark span:nth-child(1) {
  transform: translateY(10px) scaleX(-1);
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-wordmark span:nth-child(3) {
  transform: translateY(-7px);
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-wordmark span:nth-child(5) {
  transform: translateY(6px);
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 42px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 45px);
  left: calc(var(--v41-eye-left) - 38px);
  font-size: 15px;
}

.landing-v4-type-lab-page[data-type-program="matrix-offset"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 45px);
  right: calc(100vw - var(--v41-eye-right) - 14px);
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 52px);
  left: calc(var(--v41-eye-left) - 28px);
  grid-template-columns: repeat(5, min-content);
  gap: 5px 22px;
  color: rgba(223, 47, 54, 0.24);
  font-size: 9px;
  transform: none;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-matrix span:nth-child(n+6) {
  display: inline;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 48px);
  left: calc(var(--v41-eye-left) + 112px);
  display: grid;
  grid-template-columns: repeat(5, min-content);
  width: clamp(150px, 10vw, 210px);
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 48px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 10px;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 52px);
  left: var(--v41-eye-left);
  font-size: 13px;
}

.landing-v4-type-lab-page[data-type-program="matrix-header"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 52px);
  right: calc(100vw - var(--v41-eye-right));
  grid-template-columns: none;
  gap: 4px;
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 50px);
  left: calc(var(--v41-eye-left) - 62px);
  gap: 9px 14px;
  color: rgba(223, 47, 54, 0.2);
  font-size: 12px;
  transform: rotate(-7deg);
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix span:nth-child(2),
.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix span:nth-child(6),
.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix span:nth-child(12),
.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix span:nth-child(18),
.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-matrix span:nth-child(24) {
  color: var(--v44-red-hot);
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 46px);
  left: calc(var(--v41-eye-left) + 116px);
  display: flex;
  gap: 10px;
  font-size: 10px;
  opacity: 0.62;
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 46px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 10px;
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 50px);
  left: calc(var(--v41-eye-left) + 36px);
  font-size: 12px;
  opacity: 0.82;
}

.landing-v4-type-lab-page[data-type-program="matrix-cipher"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 50px);
  right: calc(100vw - var(--v41-eye-right) + 34px);
  grid-template-columns: repeat(3, min-content);
  gap: 12px;
  font-size: 10px;
  opacity: 0.82;
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 91px);
  left: calc(var(--v41-eye-left) - 132px);
  gap: 10px 16px;
  color: rgba(223, 47, 54, 0.18);
  font-size: 16px;
  transform: scale(1.08);
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-matrix span:nth-child(1),
.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-matrix span:nth-child(5),
.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-matrix span:nth-child(21),
.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-matrix span:nth-child(25) {
  color: rgba(223, 47, 54, 0.72);
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 54px);
  left: calc(var(--v41-eye-left) + 82px);
  display: flex;
  gap: 14px;
  color: rgba(223, 47, 54, 0.66);
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 48px);
  right: calc(100vw - var(--v41-eye-right) + 4px);
  color: rgba(223, 47, 54, 0.46);
  font-size: 10px;
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 42px);
  left: calc(var(--v41-eye-left) - 2px);
  color: rgba(223, 47, 54, 0.74);
  font-size: 14px;
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v43-title__name {
  color: rgba(223, 47, 54, 0.58);
}

.landing-v4-type-lab-page[data-type-program="matrix-crop"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 42px);
  right: calc(100vw - var(--v41-eye-right));
  color: rgba(223, 47, 54, 0.66);
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 63px);
  left: var(--v41-eye-left);
  gap: 7px 10px;
  color: rgba(223, 47, 54, 0.56);
  font-size: 11px;
  transform: none;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 61px);
  left: var(--v41-eye-left);
  display: flex;
  gap: 14px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 61px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 55px);
  left: var(--v41-eye-left);
  font-size: 15px;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v43-title__name {
  font-size: 13px;
}

.landing-v4-type-lab-page[data-type-program="matrix-blockmark"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 55px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-matrix {
  top: calc(var(--v41-eye-top) - 63px);
  left: calc(var(--v41-eye-left) - 92px);
  gap: 7px 10px;
  font-size: 11px;
  opacity: 0;
  transform: none;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-wordmark {
  top: calc(var(--v41-eye-top) - 28px);
  left: var(--v41-eye-left);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 12px;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-wordmark span:nth-child(even) {
  color: var(--v44-red-soft);
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-count {
  top: calc(var(--v41-eye-top) - 28px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 11px;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-title {
  top: calc(var(--v41-eye-bottom) + 55px);
  left: var(--v41-eye-left);
  font-size: 15px;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v43-title__name {
  font-size: 13px;
}

.landing-v4-type-lab-page[data-type-program="matrix-noblock"] .landing-v44-menu {
  top: calc(var(--v41-eye-bottom) + 55px);
  right: calc(100vw - var(--v41-eye-right));
  font-size: 12px;
}

@media (max-width: 860px) {
  .landing-v4-type-lab-page {
    --v41-eye-half-w: min(45vw, 370px);
    --v41-eye-half-h: min(25.3125vw, 208px);
    --v43-eye-center-y: 46%;
  }

  .landing-v44-programs {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
    transform: none;
  }
}

/* ---------- landing v4.4: through-eye project transition ---------------- */

.landing-v4-4-page.is-v41-playing-out .landing-v41-title,
.landing-v4-4-page.is-v41-playing-out .landing-v41-arc-wordmark,
.landing-v4-4-page.is-v41-playing-out .landing-v41-role,
.landing-v4-4-page.is-v41-playing-out .landing-v41-count,
.landing-v4-4-page.is-v41-playing-out .landing-v44-matrix,
.landing-v4-4-page.is-v41-playing-out .landing-v44-rule,
.landing-v4-4-page.is-v41-playing-out .landing-v44-system,
.landing-v4-4-page.is-v41-playing-out .landing-v44-system-note,
.landing-v4-4-page.is-v41-playing-out .landing-v44-operator {
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.58s;
}

.landing-v4-4-page.is-v44-eye-entering .landing-v4-eye-stage {
  opacity: 1;
  transition: none;
}

.landing-v44-portal {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s linear,
    visibility 0s linear 0.22s;
}

.landing-v44-portal.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.landing-v44-portal.is-handing-off {
  opacity: 0;
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.48s;
}

.landing-v44-portal__shade,
.landing-v44-portal__aperture,
.landing-v44-portal__blackout {
  position: absolute;
  inset: -2px;
  pointer-events: none;
}

.landing-v44-portal__shade {
  z-index: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.24s linear;
}

.landing-v44-portal.is-active .landing-v44-portal__shade {
  opacity: 0;
}

.landing-v44-portal__blackout {
  z-index: 6;
  background: #000;
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.45, 0, 0.55, 1);
}

.landing-v44-portal.is-black .landing-v44-portal__blackout {
  opacity: 1;
}

.landing-v44-portal__field {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 0;
  height: 0;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}

.landing-v4-4-page .landing-v44-portal__field {
  display: none;
}

.landing-v44-portal__aperture {
  z-index: 3;
  inset: auto;
  width: 0;
  height: 0;
  border-radius: 9999px;
  background: transparent;
  box-shadow:
    0 0 34px 18px rgba(0, 0, 0, 0.72),
    0 0 0 220vmax #000;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}

.landing-v44-portal__image,
.landing-v44-portal__rim,
.landing-v44-portal__eye {
  position: absolute;
  max-width: none;
}

.landing-v44-portal__image {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: var(--v44-portal-base-transform, scale(1.035));
  transform-origin: 50% 50%;
  will-change: transform, filter, opacity;
}

.landing-v44-portal__rim {
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: opacity, filter, transform;
}

.landing-v44-portal__eye {
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, filter;
}

.landing-v4-4-page .lightbox__frame {
  width: min(
    calc(100vw - 12vw),
    calc((100vh - 12vh) * var(--aspect-ratio))
  );
  background: #000;
  box-shadow: none;
}

.landing-v4-4-page .lightbox,
.landing-v4-4-page .lightbox.is-open {
  background: #000;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  cursor: zoom-out;
}

.landing-v4-4-page .lightbox::before,
.landing-v4-4-page .lightbox::after,
.landing-v4-4-page .lightbox__frame::after {
  display: none;
}

.landing-v4-4-page .lightbox__frame iframe,
.landing-v4-4-page .lightbox__poster {
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.landing-v4-4-page .lightbox__frame {
  cursor: default;
}

.landing-v4-4-page .lightbox__close {
  display: grid;
  top: clamp(8px, 1.5vh, 18px);
  right: clamp(8px, 1.5vw, 18px);
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

/* ---------- about v3 ---------------------------------------------------- */

.about-v3-page .landing-v2-bg::before {
  background:
    radial-gradient(circle at 13% 22%, rgba(0, 0, 0, 0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 44%, rgba(0, 0, 0, 0.025) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 71%, rgba(0, 0, 0, 0.03) 0 1px, transparent 2px),
    linear-gradient(var(--bg-screen), var(--bg-screen));
  background-size: 19px 23px, 31px 29px, 43px 37px, auto;
  mix-blend-mode: normal;
}

.about-v3-page .landing-v2-bg__image {
  display: none;
}

.about-v3-page .landing-v3-logo-letters {
  opacity: 0;
  z-index: 2;
}

.about-v3-logo-letter {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  clip-path: var(--letter-clip);
  transform: translateY(5px) scale(0.985);
  transition:
    opacity 0.74s cubic-bezier(0.2, 0.82, 0.18, 1),
    transform 0.82s cubic-bezier(0.2, 0.82, 0.18, 1);
  transition-delay: var(--letter-delay);
}

.about-v3-page .landing-v3-logo-stage.is-about-lettered .about-v3-logo-letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-v3-page .about-v3-nav {
  opacity: 1;
  transform: translate(-50%, 4px);
  pointer-events: auto;
}

.about-v3-page .about-v3-nav .landing-v2-filter[data-v2-filter="edit"] {
  order: 1;
}

.about-v3-page .about-v3-nav .landing-v2-filter-sep--edit-dir {
  order: 2;
}

.about-v3-page .about-v3-nav .landing-v2-filter[data-v2-filter="dir"] {
  order: 3;
}

.about-v3-page .about-v3-nav .landing-v2-filter-sep--dir-about {
  order: 4;
}

.about-v3-page .about-v3-nav .about-v3-current-filter {
  color: var(--accent-hover);
  opacity: 1;
}

.about-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter-sep--edit-dir {
  display: inline;
  order: 2;
}

.about-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter-sep--dir-about {
  display: none;
}

.about-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[aria-pressed="true"] {
  order: 0;
  margin-right: clamp(68px, 11vw, 180px);
  animation: about-v3-active-filter-in 0.42s cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.about-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[data-v2-filter="edit"] {
  order: 1;
}

.about-v3-page .landing-v2-logo-heading.has-active-filter .landing-v2-filter[data-v2-filter="dir"] {
  order: 3;
}

.about-v3-contact-list {
  width: min(520px, calc(100vw - 36px));
}

.about-v3-contact-row {
  color: rgba(0, 0, 0, 0.88);
}

.about-v3-contact-row .landing-v2-work__play {
  max-width: 280px;
  overflow-wrap: anywhere;
  text-align: right;
}

.about-v3-contact-row--bio {
  cursor: default;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 4px 18px;
  padding: 13px 0 16px;
}

.about-v3-contact-row--bio:hover,
.about-v3-contact-row--bio:focus-visible {
  padding-left: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.88);
}

.about-v3-contact-row--bio .landing-v2-work__meta,
.about-v3-contact-row--bio .landing-v2-work__title {
  grid-column: auto;
}

.about-v3-contact-row--bio .landing-v2-work__meta {
  grid-column: 1 / -1;
}

.about-v3-bio-text {
  justify-self: end;
  max-width: 18rem;
  font-size: clamp(11px, 0.72vw, 13px);
  line-height: 1.45;
  text-align: right;
}

/* ---------- about v4.4 -------------------------------------------------- */

.about-v44-page {
  --about-red: rgba(223, 47, 54, 0.9);
  --about-red-hot: rgba(255, 70, 76, 0.98);
  --about-red-soft: rgba(223, 47, 54, 0.54);
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--about-red);
  font-family: "Azeret Mono", var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: none;
}

.about-v44-page a:focus-visible {
  outline: 1px solid var(--about-red-hot);
  outline-offset: 5px;
}

.about-v44 {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(28px, 4.6vh, 56px) clamp(24px, 5vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(40px, 7vw, 128px);
  isolation: isolate;
}

.about-v44::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 46%, rgba(86, 10, 16, 0.16), transparent 54%),
    radial-gradient(ellipse at 77% 68%, rgba(70, 4, 10, 0.12), transparent 42%),
    #000;
}

.about-v44::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(223, 47, 54, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 47, 54, 0.018) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 78%);
  pointer-events: none;
}

.about-v44-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.about-v44-wordmark {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--about-red-hot);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-v44-wordmark span:nth-child(even) {
  color: var(--about-red-soft);
}

.about-v44-wordmark:hover span,
.about-v44-wordmark:focus-visible span {
  color: var(--about-red-hot);
}

.about-v44-nav {
  display: grid;
  gap: 5px;
  justify-items: end;
  color: var(--about-red-soft);
  text-transform: lowercase;
}

.about-v44-nav a,
.about-v44-nav span {
  transition: color 0.18s ease;
}

.about-v44-nav a:hover,
.about-v44-nav a:focus-visible,
.about-v44-nav [aria-current="page"] {
  color: var(--about-red-hot);
}

.about-v44-rule {
  position: absolute;
  background: var(--about-red);
  opacity: 0.18;
  pointer-events: none;
}

.about-v44-rule--top,
.about-v44-rule--bottom {
  right: clamp(24px, 5vw, 92px);
  left: clamp(24px, 5vw, 92px);
  height: 1px;
}

.about-v44-rule--top {
  top: clamp(78px, 10vh, 112px);
}

.about-v44-rule--bottom {
  bottom: clamp(72px, 10vh, 108px);
}

.about-v44-rule--left,
.about-v44-rule--right {
  top: clamp(78px, 10vh, 112px);
  bottom: clamp(72px, 10vh, 108px);
  width: 1px;
}

.about-v44-rule--left {
  left: clamp(24px, 5vw, 92px);
}

.about-v44-rule--right {
  right: clamp(24px, 5vw, 92px);
}

.about-v44-matrix {
  position: absolute;
  top: clamp(105px, 16vh, 170px);
  left: clamp(26px, 5.25vw, 96px);
  display: grid;
  grid-template-columns: repeat(5, min-content);
  gap: 7px 10px;
  color: rgba(223, 47, 54, 0.17);
  font-size: 10px;
  opacity: 0.85;
  pointer-events: none;
}

.about-v44-matrix span:nth-child(1),
.about-v44-matrix span:nth-child(7),
.about-v44-matrix span:nth-child(13),
.about-v44-matrix span:nth-child(19),
.about-v44-matrix span:nth-child(25) {
  color: rgba(255, 70, 76, 0.54);
}

.about-v44-intro {
  align-self: center;
  padding: clamp(116px, 17vh, 190px) 0 clamp(68px, 10vh, 104px);
}

.about-v44-kicker {
  margin-bottom: clamp(22px, 3.5vh, 40px);
  color: var(--about-red-soft);
  font-size: 10px;
  text-transform: uppercase;
}

.about-v44-intro h1 {
  max-width: 17ch;
  color: var(--about-red-hot);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(36px, 5.15vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-v44-deck {
  max-width: 55ch;
  margin-top: clamp(30px, 4.5vh, 52px);
  color: var(--about-red);
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 600;
  line-height: 1.55;
}

.about-v44-links {
  align-self: end;
  padding-bottom: clamp(68px, 10vh, 104px);
}

.about-v44-link-row {
  display: grid;
  padding: 15px 0 18px;
  border-top: 1px solid rgba(223, 47, 54, 0.2);
  gap: 18px;
  grid-template-columns: minmax(110px, 0.7fr) minmax(180px, 1fr);
}

.about-v44-link-row > p {
  color: var(--about-red-soft);
  font-size: 10px;
  text-transform: lowercase;
}

.about-v44-link-row > a {
  display: grid;
  gap: 4px;
}

.about-v44-link-row > a span:first-child {
  color: var(--about-red-hot);
}

.about-v44-link-row > a span:last-child {
  color: var(--about-red-soft);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.about-v44-link-row a {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.about-v44-link-row a:hover,
.about-v44-link-row a:focus-visible {
  color: var(--about-red-hot);
}

.about-v44-link-row--social > div {
  display: flex;
  gap: 22px;
  color: var(--about-red-hot);
}

.about-v44-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--about-red-soft);
  font-size: 10px;
  text-transform: lowercase;
}

.about-v44-footer a {
  color: var(--about-red-hot);
}

@media (max-width: 860px) {
  .about-v44 {
    min-height: 100svh;
    padding: 24px 20px 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
  }

  .about-v44-nav {
    gap: 7px;
  }

  .about-v44-rule--top,
  .about-v44-rule--bottom {
    right: 20px;
    left: 20px;
  }

  .about-v44-rule--top {
    top: 88px;
  }

  .about-v44-rule--bottom {
    display: none;
  }

  .about-v44-rule--left,
  .about-v44-rule--right {
    display: none;
  }

  .about-v44-matrix {
    top: 112px;
    left: 20px;
    gap: 5px 8px;
    font-size: 8px;
  }

  .about-v44-intro {
    padding: 154px 0 72px;
  }

  .about-v44-intro h1 {
    max-width: 14ch;
    font-size: clamp(42px, 13vw, 72px);
  }

  .about-v44-deck {
    max-width: 48ch;
  }

  .about-v44-links {
    padding-bottom: 64px;
  }

  .about-v44-link-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-v44-footer {
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .about-v44-intro {
    padding-top: 142px;
  }

  .about-v44-intro h1 {
    font-size: clamp(38px, 12.4vw, 56px);
  }

  .about-v44-footer span {
    max-width: 17ch;
    text-align: right;
  }
}

@keyframes about-v3-active-filter-in {
  from {
    transform: translateX(clamp(68px, 11vw, 180px));
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 720px) {
  .landing-v3-page {
    --landing-v3-list-top: clamp(238px, 38vh, 312px);
    --landing-v3-list-bottom: 18px;
    --landing-v3-list-feather: 46px;
  }

  .landing-v3-logo-stage {
    width: clamp(140px, 44vw, 200px);
  }

  .landing-v3-page .landing-v2-shell {
    padding: 0 18px;
  }

  .about-v3-contact-row .landing-v2-work__play {
    max-width: 44vw;
  }

  .about-v3-contact-row--bio {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.9fr);
  }

  .about-v3-bio-text {
    max-width: 48vw;
  }
}

/* ---------- reduce motion ---------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- print (just-in-case) -------------------------------------- */

@media print {
  body, .frame { background: #fff; color: #000; }
  .frame::before, .frame::after { display: none; }
}
