@font-face {
  font-family: Bluescreens;
  src: url("../fonts/bluescreens-eb-italic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Firs;
  src: url("../fonts/firs-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Firs;
  src: url("../fonts/firs-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #171717;
  --paper: #f0efea;
  --purple: #9275ff;
  --line: #ffffff30;
  --head: Bluescreens, "Arial Narrow", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font:
    16px/1.5 Firs,
    Arial,
    sans-serif;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select,
textarea {
  font: inherit;
}
button,
a,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d3ff82;
  outline-offset: 5px;
}
::selection {
  background: var(--purple);
  color: var(--ink);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
.logo,
.footer-brand {
  font-family: var(--head);
  font-style: italic;
  font-weight: 800;
  line-height: 0.9;
}
em {
  font-style: inherit;
  color: var(--purple);
}
.skip {
  position: fixed;
  top: -100px;
  z-index: 10;
  background: white;
  color: black;
  padding: 12px;
}
.skip:focus {
  top: 0;
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo img {
  width: 15px;
  height: 23px;
  object-fit: contain;
}
.logo span {
  font:
    10px/1.1 Firs,
    sans-serif;
  margin-left: 14px;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.nav-cta {
  font-size: 13px;
  border-bottom: 1px solid var(--purple);
  padding: 10px 0;
}
.nav-cta span {
  margin-left: 25px;
  color: var(--purple);
}
.hero {
  padding: 27px 4% 0;
}
.hero-meta,
.section-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.4px;
}
.hero-title {
  position: relative;
  padding: 35px 0 29px;
}
.hero h1 {
  font-size: clamp(90px, 12.2vw, 188px);
  letter-spacing: -0.025em;
  line-height: 0.78;
}
.hero h1 span {
  display: block;
}
.hero h1 .purple {
  color: var(--purple);
  margin-left: 22%;
}
.hero-label {
  position: absolute;
  right: 2%;
  top: 32px;
  font-size: 12px;
  line-height: 1.2;
  border-left: 2px solid var(--purple);
  padding-left: 12px;
}
.hero-scene {
  height: 270px;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-scene:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000b, transparent 80%);
}
.hero-caption {
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.hero-caption p {
  font-size: 23px;
  line-height: 1.35;
}
.scene-tag {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 9px;
  z-index: 1;
  letter-spacing: 1px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  padding: 17px 23px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.light {
  background: var(--paper);
  color: var(--ink);
}
.purple-button {
  background: var(--purple);
  color: var(--ink);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 30px;
  font-size: 11px;
  color: #bdbdbd;
}
.ticker {
  background: var(--purple);
  color: var(--ink);
  overflow: hidden;
  font: italic 800 34px/1.3 var(--head);
  padding: 10px 0;
}
.ticker > div {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.ticker span {
  white-space: nowrap;
}
.ticker:hover > div {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 52px 4% 65px;
  scroll-margin-top: 0;
}
.section-meta {
  padding-bottom: 36px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #bcbcbc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10%;
  align-items: center;
}
h2 {
  font-size: clamp(64px, 7.2vw, 108px);
  letter-spacing: -0.015em;
}
.intro {
  font-size: 19px;
  max-width: 540px;
  margin-top: 28px;
  color: #c9c9c9;
  line-height: 1.6;
}
.principles {
  margin-top: 32px;
}
.principles article {
  display: flex;
  gap: 25px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.principles article > span {
  font-size: 10px;
  color: var(--purple);
  padding-top: 6px;
}
.principles h3 {
  font:
    700 15px/1.5 Firs,
    sans-serif;
}
.principles p {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}
.team-photo {
  position: relative;
  height: 510px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.team-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, #000b);
}
.team-photo figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  font: italic 800 44px/0.95 var(--head);
  color: var(--paper);
}
.products {
  background: var(--paper);
  color: var(--ink);
}
.products .section-meta {
  border-color: #17171740;
  color: #60605d;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 30px;
}
.section-heading em {
  color: #7551dc;
}
.section-heading p {
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 8px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-card {
  padding: 26px 30px 20px;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px #0002;
}
.card-mobile {
  background: #987bff;
}
.card-constructor {
  background: #dedcd4;
}
.card-studio {
  background: #242424;
  color: var(--paper);
}
.card-universe {
  background: #cfbfff;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 9px;
  letter-spacing: 1px;
}
.card-top > span:first-child {
  font-size: 14px;
}
.card-arrow {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
}
.product-card h3 {
  font-size: clamp(44px, 4.5vw, 68px);
  margin: 23px 0 15px;
}
.product-card p {
  font-size: 13px;
  line-height: 1.55;
}
.card-bottom {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  gap: 12px;
}
.card-bottom span:last-child {
  font-weight: 700;
}
.catalog-note {
  font-size: 11px;
  margin-top: 20px;
  color: #65655d;
}
.contact {
  padding-top: 56px;
  padding-bottom: 85px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.direct-contact {
  display: inline-block;
  margin-top: 35px;
  font-size: 14px;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 12px;
}
.direct-contact span {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 8px;
}
.clapper {
  border: 1px solid #5f5f5f;
  background: #202020;
  margin-top: 25px;
}
.clapper-top {
  height: 32px;
  background: repeating-linear-gradient(
    130deg,
    var(--paper) 0 35px,
    #252525 35px 70px
  );
  border-bottom: 6px solid #171717;
  transform-origin: 0 100%;
}
.clapper.clap .clapper-top {
  animation: clap 0.45s ease-out;
}
@keyframes clap {
  0% {
    transform: rotate(-8deg);
  }
  65% {
    transform: rotate(0);
  }
  80% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
#brief-form,
.brief-result {
  padding: 26px 28px;
}
.slate-meta {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.clapper h3 {
  font-size: 38px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: block;
  font-size: 11px;
  color: #ccc;
}
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #666;
  border-radius: 0;
  background: #202020;
  color: var(--paper);
  padding: 12px 10px;
  margin: 8px 0 19px;
  font-size: 12px;
}
textarea {
  resize: vertical;
  line-height: 1.5;
}
select {
  min-height: 44px;
}
.optional {
  font-size: 9px;
  color: #aaa;
}
#brief-form > .button {
  width: 100%;
}
.form-hint {
  font-size: 10px;
  color: #b2b2b2;
  margin-top: 12px;
  text-align: center;
}
.brief-result > label {
  font: italic 800 38px/1 var(--head);
  color: var(--paper);
}
.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.result-actions .button {
  font-size: 11px;
  padding: 14px;
}
#copy-status {
  font-size: 12px;
  margin: 16px 0;
  color: #c6c6c6;
}
.text-button {
  background: none;
  border: 0;
  color: var(--paper);
  padding: 8px 0;
  font-size: 12px;
}
footer {
  padding: 36px 4% 22px;
  background: var(--purple);
  color: var(--ink);
}
.footer-brand {
  font-size: clamp(70px, 12vw, 180px);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.footer-brand span {
  font:
    11px Firs,
    sans-serif;
  letter-spacing: 2px;
}
footer > div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #17171750;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 10px;
}
dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  width: calc(100% - 64px);
  max-width: 1500px;
  height: calc(100dvh - 48px);
  max-height: none;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #000c;
}
.panel-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 16px 4%;
  background: var(--paper);
  border-bottom: 1px solid #17171730;
}
.panel-brand {
  font-size: 11px;
  letter-spacing: 1px;
}
.close-button {
  background: var(--ink);
  color: white;
  border: 0;
  padding: 12px 18px;
  font-size: 12px;
  min-height: 44px;
}
.panel-intro {
  padding: 40px 4%;
}
.panel-number {
  color: #6841c7;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.panel-intro h2 {
  font-size: clamp(55px, 7vw, 100px);
  max-width: 1000px;
}
.panel-overview {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  margin-top: 30px;
}
.panel-copy p {
  font-size: 17px;
  margin-bottom: 16px;
}
.panel-process {
  border-left: 1px solid #17171740;
  padding-left: 30px;
}
.panel-process h3 {
  font:
    700 12px Firs,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.panel-process li {
  font-size: 13px;
  margin: 12px 0;
}
.panel-process ul {
  padding-left: 18px;
}
.panel-process p {
  font-size: 12px;
}
.format-ticker {
  background: var(--purple);
  font: italic 800 38px/1.1 var(--head);
  padding: 16px 4%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.format-ticker span:last-child {
  opacity: 0.6;
}
.format {
  padding: 35px 4%;
  border-bottom: 1px solid #17171730;
}
.format-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.format h3 {
  font-size: 48px;
}
.term {
  font-size: 11px;
  white-space: nowrap;
}
.format-description {
  font-size: 15px;
  margin: 20px 0;
  max-width: 100%;
  columns: 2;
  column-gap: 6%;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tag {
  border: 1px solid #17171750;
  padding: 5px 9px;
  font-size: 10px;
}
.case-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  padding-bottom: 15px;
}
.case {
  margin: 0;
  flex: 0 0 185px;
  scroll-snap-align: start;
  min-width: 0;
}
.case.wide {
  flex-basis: 390px;
}
.case.round {
  flex-basis: 230px;
}
.case-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #d6d3ca;
}
.wide .case-media {
  height: 220px;
}
.round .case-media {
  height: 230px;
  width: 230px;
  border-radius: 50%;
  aspect-ratio: 1;
}
.case img,
.case video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case video {
  position: absolute;
  inset: 0;
}
.case figcaption {
  font-size: 11px;
  margin-top: 10px;
}
.play-case {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  color: white;
}
.play-case span {
  display: inline-block;
  padding: 12px 18px;
  background: #171717df;
}
.track-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}
.track-controls button {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #17171750;
  color: var(--ink);
  font-size: 20px;
}
.track-controls button:disabled {
  opacity: 0.25;
  cursor: default;
}
.panel-end {
  padding: 35px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.panel-end p {
  font-size: 15px;
}
.universe-note {
  padding: 40px 4%;
  font-size: 19px;
  max-width: 850px;
}
.panel-bar h2 {
  font:
    700 15px Firs,
    sans-serif;
}
#video-dialog {
  height: auto;
  background: var(--ink);
  color: white;
  max-width: 1100px;
}
#video-dialog .panel-bar {
  background: var(--ink);
}
#full-video {
  display: block;
  width: 100%;
  max-height: 75dvh;
}
#video-error {
  padding: 20px;
}
.noscript-note {
  padding: 20px;
}
.noscript-note a {
  text-decoration: underline;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .hero,
  .section,
  .nav,
  footer {
    padding-left: max(4%, calc((100vw - 1500px) / 2));
    padding-right: max(4%, calc((100vw - 1500px) / 2));
  }
}
@media (max-width: 900px) {
  .hero-label {
    display: none;
  }
  .hero h1 {
    font-size: 14vw;
  }
  .hero-caption p {
    font-size: 18px;
  }
  .about-grid {
    gap: 5%;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .team-photo {
    height: 440px;
  }
  .contact-grid {
    gap: 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-heading p {
    max-width: 250px;
  }
  .product-card {
    padding: 23px;
    min-height: 320px;
  }
  .card-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .footer-brand {
    font-size: 12vw;
  }
  .panel-overview {
    gap: 5%;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 20px;
  }
  .nav {
    height: 68px;
    padding: 0 6%;
  }
  .nav-links,
  .logo span {
    display: none;
  }
  .logo {
    font-size: 24px;
  }
  .nav-cta {
    font-size: 11px;
  }
  .nav-cta span {
    margin-left: 9px;
  }
  .hero {
    padding: 24px 6% 0;
  }
  .hero-meta {
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .hero-meta span:last-child {
    display: none;
  }
  .hero-title {
    padding: 32px 0 25px;
  }
  .hero h1 {
    font-size: 17vw;
    line-height: 0.85;
  }
  .hero h1 .purple {
    margin-left: 9%;
  }
  .hero-scene {
    height: 300px;
  }
  .hero-photo {
    object-position: 62% center;
  }
  .hero-caption {
    left: 18px;
    bottom: 20px;
    right: 18px;
    display: block;
  }
  .hero-caption p {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .hero-caption .button {
    font-size: 11px;
    padding: 14px 18px;
  }
  .scene-tag {
    font-size: 7px;
    left: 18px;
    right: auto;
  }
  .hero-bottom {
    font-size: 9px;
    padding: 17px 0 22px;
  }
  .hero-bottom > a {
    display: none;
  }
  .ticker {
    font-size: 28px;
    padding: 8px 0;
  }
  .section {
    padding: 34px 6% 42px;
  }
  .section-meta {
    font-size: 8px;
    letter-spacing: 0.7px;
    padding-top: 16px;
    padding-bottom: 26px;
  }
  .section-meta span:last-child {
    max-width: 48%;
    text-align: right;
  }
  .about-grid {
    display: block;
  }
  h2 {
    font-size: 64px;
  }
  .intro {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 24px;
  }
  .team-photo {
    height: 250px;
    margin-top: 26px;
  }
  .team-photo img {
    object-position: center 40%;
  }
  .team-photo figcaption {
    font-size: 33px;
    left: 20px;
    bottom: 20px;
  }
  .principles {
    margin-top: 26px;
  }
  .principles article {
    gap: 18px;
  }
  .principles h3 {
    font-size: 14px;
  }
  .principles p {
    font-size: 11px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading p {
    font-size: 12px;
    max-width: none;
    margin-top: 22px;
  }
  .section-heading p br {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-card {
    min-height: 285px;
    padding: 23px;
  }
  .product-card h3 {
    font-size: 55px;
    margin: 20px 0 15px;
  }
  .product-card p {
    font-size: 12px;
  }
  .card-bottom {
    flex-direction: row;
    padding-top: 24px;
    align-items: end;
    font-size: 8px;
  }
  .card-bottom span {
    max-width: 55%;
  }
  .catalog-note {
    font-size: 10px;
  }
  .contact-grid {
    display: block;
  }
  .contact h2 {
    font-size: 70px;
  }
  .direct-contact {
    margin-top: 24px;
    font-size: 13px;
  }
  .clapper {
    margin-top: 45px;
  }
  #brief-form,
  .brief-result {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact {
    padding-bottom: 45px;
  }
  .footer-brand {
    font-size: 17vw;
    display: block;
  }
  .footer-brand span {
    display: block;
    font-size: 9px;
    margin: 12px 0 20px;
  }
  footer {
    padding: 28px 6% 22px;
  }
  footer > div {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 9px;
  }
  footer > div > a:last-child {
    margin-left: auto;
  }
  dialog {
    width: 100%;
    height: 100dvh;
    margin: 0;
    max-width: none;
  }
  .panel-bar {
    padding: 12px 6%;
    gap: 10px;
  }
  .panel-brand {
    font-size: 9px;
  }
  .close-button {
    padding: 12px;
    font-size: 11px;
  }
  .panel-intro {
    padding: 30px 6%;
  }
  .panel-intro h2 {
    font-size: 56px;
    overflow-wrap: anywhere;
  }
  .panel-overview {
    display: block;
    margin-top: 25px;
  }
  .panel-copy p {
    font-size: 15px;
  }
  .panel-process {
    border-left: 0;
    border-top: 1px solid #17171740;
    padding: 20px 0 0;
    margin-top: 25px;
  }
  .format-ticker {
    font-size: 29px;
    padding: 15px 6%;
  }
  .format-ticker span:last-child {
    display: none;
  }
  .format {
    padding: 28px 6%;
  }
  .format-heading {
    display: block;
  }
  .format h3 {
    font-size: 42px;
  }
  .term {
    display: block;
    margin-top: 12px;
  }
  .format-description {
    columns: 1;
    font-size: 13px;
    margin: 17px 0;
  }
  .tag {
    font-size: 9px;
  }
  .case {
    flex-basis: 160px;
  }
  .case-media {
    height: 260px;
  }
  .case.wide {
    flex-basis: 280px;
  }
  .wide .case-media {
    height: 158px;
  }
  .case.round {
    flex-basis: 210px;
  }
  .round .case-media {
    width: 210px;
    height: 210px;
  }
  .panel-end {
    padding: 28px 6%;
    display: block;
  }
  .panel-end .button {
    margin-top: 18px;
  }
  .universe-note {
    font-size: 16px;
    padding: 30px 6%;
  }
  #video-dialog {
    margin: auto 0;
  }
  #video-dialog .panel-bar h2 {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
  height: 100px;
  overflow: hidden;
}
.filmstrip img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center 35%;
}
@media (max-width: 600px) {
  .filmstrip {
    height: 70px;
    gap: 5px;
  }
  .filmstrip img {
    height: 70px;
  }
}
/* Editorial motion and composition */
.hero {
  position: relative;
}
.hero-title {
  padding: 42px 0 28px;
}
.hero h1 {
  font-size: clamp(105px, 17.8vw, 258px);
  line-height: 0.77;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero h1 > span {
  width: max-content;
  max-width: 100%;
  animation: title-arrive 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 > .purple {
  margin-left: 24%;
  animation-delay: 0.16s;
}
.hero-label {
  font: italic 800 30px/0.95 var(--head);
  text-transform: uppercase;
  top: 48px;
  right: 0;
  transform: rotate(5deg);
  background: var(--purple);
  color: var(--ink);
  padding: 12px 20px;
  border: 0;
  animation: label-arrive 1s 0.55s both;
}
.hero-scene {
  height: 300px;
  animation: photo-arrive 1.1s 0.2s both;
}
.hero-photo {
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-scene:hover .hero-photo {
  transform: scale(1.04);
}
.hero-caption p {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.45;
}
.hero-caption {
  gap: 30px;
}
.hero-bottom {
  padding-bottom: 25px;
}
.filmstrip {
  height: 115px;
}
.filmstrip img {
  height: 115px;
  transition:
    filter 0.4s,
    transform 0.6s;
}
.filmstrip img:hover {
  filter: saturate(1.3);
  transform: scale(1.04);
}
.ticker span {
  min-width: 100vw;
  text-align: center;
}
.ticker {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.section-heading h2,
.about h2,
.contact h2 {
  text-transform: uppercase;
}
.about h2 {
  font-size: clamp(78px, 10vw, 144px);
}
.about .intro strong {
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.3;
  color: var(--paper);
  font-weight: 400;
}
.about-purpose {
  display: block;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 20px;
}
.about-range {
  display: block;
  font-size: 12px;
  margin-top: 18px;
  color: var(--purple);
}
.about .team-photo {
  height: 570px;
  transform: rotate(2deg);
}
.team-photo img {
  transition:
    filter 0.8s,
    transform 1.2s;
}
.team-photo:hover img {
  filter: grayscale(0);
  transform: scale(1.035);
}
.team-photo figcaption {
  font-size: clamp(45px, 6vw, 82px);
  text-transform: uppercase;
  transform: rotate(-6deg);
  bottom: 35px;
  left: 20px;
}
.principles {
  margin-top: 28px;
}
.principles article {
  transition:
    padding-left 0.3s,
    background 0.3s;
}
.principles article:hover {
  padding-left: 12px;
  background: #ffffff04;
}
.section-heading h2 {
  font-size: clamp(80px, 9vw, 128px);
}
.section-heading p {
  max-width: 470px;
  font-size: 16px;
}
.product-card {
  min-height: 350px;
  isolation: isolate;
  border: 1px solid #17171715;
}
.product-card h3 {
  text-transform: uppercase;
  max-width: 73%;
  font-size: clamp(45px, 4.6vw, 68px);
  line-height: 0.92;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  z-index: 1;
}
.product-card:hover h3 {
  transform: translateX(8px);
}
.product-card .card-top {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  gap: 16px;
}
.card-top > span:nth-child(2) {
  max-width: 72%;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0;
  min-height: 30px;
}
.card-arrow {
  transition: transform 0.35s;
}
.product-card:hover .card-arrow {
  transform: rotate(45deg);
}
.product-card > p {
  position: relative;
  z-index: 1;
  max-width: 65%;
  font-size: 14px;
}
.card-photo {
  position: absolute;
  right: -25px;
  top: 25%;
  width: 38%;
  height: 82%;
  z-index: -1;
  transform: rotate(9deg) translateY(35px);
  opacity: 0.22;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.5s;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.product-card:hover .card-photo,
.product-card:focus-visible .card-photo {
  opacity: 0.8;
  transform: rotate(3deg) translateY(5px) scale(1.03);
}
.product-card:hover .card-photo img {
  filter: grayscale(0);
}
.card-constructor .card-photo {
  transform: rotate(-8deg) translateY(35px);
}
.card-bottom {
  position: relative;
  z-index: 1;
}
.card-bottom span:last-child {
  font-size: 11px;
  background: inherit;
}
.contact h2 {
  font-size: clamp(80px, 8vw, 118px);
}
.clapper {
  box-shadow: 16px 18px 0 #0005;
  transition: transform 0.6s;
}
.clapper:hover {
  transform: translateY(-4px);
}
.nav a {
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--purple);
}
.button {
  position: relative;
  overflow: hidden;
}
.button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff24;
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.button:hover:after {
  transform: translateX(0) skewX(-15deg);
}
.footer-brand {
  transition: letter-spacing 0.7s;
  line-height: 0.8;
}
.footer-brand:hover {
  letter-spacing: 0;
}
.format h3,
.panel-intro h2 {
  text-transform: uppercase;
}
.format-ticker {
  overflow: hidden;
}
.format-ticker span {
  white-space: nowrap;
}
.case-media img {
  transition: transform 0.6s;
}
.case-media:hover img {
  transform: scale(1.035);
}
@keyframes title-arrive {
  from {
    transform: translateY(80px) rotate(2deg);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    transform: translateY(0) rotate(0);
    clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes label-arrive {
  from {
    opacity: 0;
    transform: translateY(25px) rotate(-8deg) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(5deg) scale(1);
  }
}
@keyframes photo-arrive {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 18vw;
  }
  .hero h1 > .purple {
    margin-left: 18%;
  }
  .product-card h3 {
    max-width: 85%;
    font-size: 50px;
  }
  .product-card > p {
    max-width: 80%;
  }
  .about .team-photo {
    height: 520px;
  }
  .section-heading p {
    max-width: 330px;
  }
}
@media (max-width: 600px) {
  .hero-title {
    padding: 36px 0 30px;
  }
  .hero h1 {
    font-size: 22vw;
    line-height: 0.8;
  }
  .hero h1 > .purple {
    margin-left: 7%;
  }
  .hero-scene {
    height: 330px;
  }
  .hero-caption p {
    font-size: 17px;
    max-width: 100%;
    line-height: 1.5;
  }
  .hero-caption p b {
    display: block;
    margin-bottom: 3px;
  }
  .hero-caption {
    left: 20px;
    right: 20px;
    bottom: 23px;
  }
  .filmstrip,
  .filmstrip img {
    height: 76px;
  }
  .ticker {
    font-size: 32px;
  }
  .about h2 {
    font-size: 78px;
  }
  .about .intro strong {
    font-size: 22px;
  }
  .about-purpose {
    font-size: 15px;
  }
  .about-range {
    font-size: 11px;
  }
  .about .team-photo {
    height: 280px;
    transform: rotate(1deg);
    margin-top: 32px;
  }
  .team-photo figcaption {
    font-size: 64px;
    bottom: 22px;
  }
  .principles h3 {
    font-size: 13px;
  }
  .principles p {
    font-size: 12px;
  }
  .section-heading h2 {
    font-size: 80px;
  }
  .section-heading p {
    font-size: 14px;
    max-width: none;
  }
  .product-card {
    min-height: 310px;
  }
  .product-card h3 {
    font-size: 53px;
    max-width: 92%;
  }
  .product-card > p {
    font-size: 13px;
    max-width: 78%;
  }
  .card-top > span:nth-child(2) {
    font-size: 9px;
  }
  .card-photo {
    width: 42%;
    opacity: 0.3;
  }
  .card-bottom span:last-child {
    font-size: 10px;
    max-width: none;
  }
  .contact h2 {
    font-size: 83px;
  }
  .clapper {
    box-shadow: 8px 10px 0 #0005;
  }
  .format-ticker span:first-child {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 > span,
  .hero-label,
  .hero-scene {
    animation: none;
  }
  .product-card:hover,
  .clapper:hover,
  .product-card:hover h3,
  .hero-scene:hover .hero-photo,
  .team-photo:hover img {
    transform: none;
  }
  .ticker > div {
    animation: none;
  }
}
.case-group-title {
  font:
    700 14px/1.4 Firs,
    sans-serif;
  margin: 30px 0 15px;
}
.panel-copy blockquote {
  margin: 20px 0 0;
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  font-size: 17px;
}
.play-case {
  opacity: 0;
  transition: opacity 0.25s;
}
.case-media:hover .play-case,
.play-case:focus-visible {
  opacity: 1;
}
@media (hover: none) {
  .play-case {
    opacity: 1;
  }
  .play-case span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    padding: 8px 12px;
  }
  .round .play-case span {
    bottom: 30px;
    right: 30px;
  }
}
.play-case {
  opacity: 1;
}
.play-case span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.3px;
  padding: 9px 13px;
  background: #171717c9;
  transition:
    background 0.25s,
    transform 0.25s;
}
.play-case:hover span {
  background: var(--purple);
  color: var(--ink);
  transform: translateY(-3px);
}
.round .play-case span {
  right: 30px;
  bottom: 24px;
}
.filmstrip:has(.film-track) {
  display: block;
}
.film-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.film-track img {
  flex: 0 0 calc(18.4vw - 7px);
  width: calc(18.4vw - 7px);
}
.filmstrip:hover .film-track {
  animation-play-state: paused;
}
.format-ticker {
  display: block;
  padding: 14px 0;
}
.format-ticker > div {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.format-ticker span,
.format-ticker span:last-child {
  display: block;
  opacity: 1;
  min-width: 90vw;
  font-size: 38px;
  white-space: nowrap;
}
.format-ticker:hover > div {
  animation-play-state: paused;
}
@media (max-width: 600px) {
  .film-track img {
    flex-basis: 105px;
    width: 105px;
  }
  .format-ticker span,
  .format-ticker span:first-child,
  .format-ticker span:last-child {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .film-track,
  .format-ticker > div {
    animation: none;
  }
}
/* Navigation belongs to the photo rail, without boxed controls. */
.track-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  padding: 8px 0 0;
}
.track-position {
  font-size: 10px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #67645f;
}
.track-progress {
  height: 1px;
  background: #17171720;
  flex: 1;
  overflow: hidden;
}
.track-progress i {
  display: block;
  height: 1px;
  width: 100%;
  background: #6f4bce;
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform 0.3s;
}
.track-controls button {
  width: auto;
  height: auto;
  min-height: 44px;
  border: 0;
  background: none;
  padding: 8px 0;
  color: var(--ink);
  font:
    700 11px/1.2 Firs,
    sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.track-controls button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s;
}
.track-controls button:hover:not(:disabled) {
  color: #6f4bce;
}
.track-controls button:hover:not(:disabled) span {
  transform: translateX(4px);
}
.track-controls button[data-direction="-1"]:hover:not(:disabled) span {
  transform: translateX(-4px);
}
.track-controls button:disabled {
  opacity: 0.28;
}
.case-track {
  scrollbar-width: none;
}
.case-track::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .track-controls {
    gap: 16px;
  }
  .track-controls button {
    font-size: 10px;
    gap: 6px;
  }
  .track-position {
    font-size: 9px;
  }
}
/* A single familiar player affordance; no text labels over the artwork. */
.play-case {
  display: grid;
  place-items: center;
  background: linear-gradient(transparent, #00000012);
  opacity: 1;
  transition: background 0.3s;
}
.play-case .play-glyph,
.round .play-case .play-glyph {
  position: static;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #ffffff60;
  border-radius: 50%;
  background: #10101026;
  box-shadow: none;
  transform: none;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.3s,
    border-color 0.3s;
}
.play-case .play-glyph img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(1);
  transform: translateX(2px);
  transition: none;
}
.play-case:hover,
.play-case:focus-visible {
  background: #00000026;
}
.play-case:hover .play-glyph,
.play-case:focus-visible .play-glyph {
  background: #17171770;
  border-color: #ffffffa0;
  transform: scale(1.08);
}
.case-media:hover .play-glyph img {
  transform: translateX(2px);
}
@media (max-width: 600px) {
  .play-case .play-glyph,
  .round .play-case .play-glyph {
    width: 48px;
    height: 48px;
  }
  .play-case .play-glyph img {
    width: 21px;
    height: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .play-case:hover .play-glyph {
    transform: none;
  }
}
/* Cinema contact sheets: the imagery is the format, not decoration. */
#product-dialog {
  background: #eeeae2;
  color: #171717;
  scrollbar-color: #83736c #e7e2d9;
}
#product-dialog .panel-bar {
  background: #151515;
  color: #eeeae2;
  border-color: #ffffff1c;
  padding-top: 12px;
  padding-bottom: 12px;
}
#product-dialog .close-button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff50;
  border-radius: 0;
  padding: 8px 0;
  font-weight: 400;
  min-width: 75px;
  text-align: right;
}
#product-dialog .panel-brand {
  font-size: 10px;
  color: #b0a9a3;
  letter-spacing: 1.5px;
}
.panel-intro {
  background: #151515;
  color: #eeeae2;
  padding: 48px 5% 56px;
  position: relative;
}
.panel-number {
  font-size: 10px;
  letter-spacing: 2px;
  color: #ac90ff;
  margin-bottom: 32px;
}
.panel-intro h2 {
  font-size: clamp(70px, 9.5vw, 144px);
  max-width: 1100px;
  line-height: 0.86;
  letter-spacing: -0.02em;
}
.panel-intro h2:focus {
  outline: none;
}
.panel-overview {
  margin-top: 38px;
  gap: 9%;
  grid-template-columns: 1.1fr 1fr;
}
.panel-copy p {
  font-size: 18px;
  line-height: 1.5;
  color: #e1ddd6;
}
.panel-copy p + p {
  font-size: 15px;
  color: #a7a19c;
}
.panel-process {
  border-color: #ffffff25;
  padding-left: 32px;
}
.panel-process h3 {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #ad91ff;
}
.panel-process li {
  font-size: 13px;
  color: #c3bdb7;
  line-height: 1.6;
}
.panel-process p {
  color: #99928c;
  line-height: 1.65;
}
.format-ticker {
  border: 0;
  background: #9275ff;
  color: #171717;
  padding: 12px 0;
}
.format-ticker span,
.format-ticker span:first-child,
.format-ticker span:last-child {
  font-size: 34px;
}
.format {
  padding: 45px 5% 42px;
  border-color: #17171725;
}
.format-heading {
  align-items: baseline;
  gap: 22px;
}
.format-index {
  font:
    400 11px/1 Firs,
    sans-serif;
  color: #746c64;
  letter-spacing: 1px;
}
.format-heading h3 {
  font-size: clamp(46px, 4.7vw, 72px);
  flex: 1;
  letter-spacing: -0.01em;
}
.term {
  font-size: 10px;
  color: #756c65;
}
.term b {
  display: block;
  color: #171717;
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
}
.format-description {
  font-size: 15px;
  line-height: 1.65;
  margin: 22px 0 24px;
  columns: initial;
  max-width: 1050px;
}
.case-group-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 30px 0 15px;
}
.tags {
  gap: 10px 22px;
  margin-bottom: 22px;
}
.tag {
  border: 0;
  padding: 0;
  font-size: 11px;
  color: #74665d;
  position: relative;
}
.tag:not(:last-child):after {
  content: "/";
  position: absolute;
  right: -14px;
  color: #bcb3a7;
}
.film-reel {
  position: relative;
  background: #191817;
  color: #ebe5da;
  margin: 0 -5.56% 12px;
  padding: 19px 0 15px;
  isolation: isolate;
  box-shadow: 0 12px 20px #17171712;
}
.film-reel:before,
.film-reel:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 11px,
    #eeeae2 11px 25px,
    transparent 25px 37px
  );
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}
.film-reel:before {
  top: 51px;
}
.film-reel:after {
  bottom: 74px;
}
.reel-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 19px;
  font-size: 8px;
  letter-spacing: 2px;
  color: #bba681;
}
.case-track {
  position: relative;
  gap: 18px;
  padding: 20px 5% 29px;
  scroll-padding-left: 5%;
  align-items: start;
  scrollbar-width: none;
  cursor: grab;
}
.case-track:active {
  cursor: grabbing;
}
.case {
  flex-basis: 202px;
  position: relative;
}
.case.wide {
  flex-basis: 580px;
}
.case.round {
  flex-basis: 340px;
}
.frame-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #a9926c;
  letter-spacing: 2px;
  height: 23px;
  align-items: start;
}
.case-media {
  height: 340px;
  border-radius: 0;
  background: #0e0e0e;
  outline: 1px solid #ffffff09;
}
.wide .case-media {
  height: 340px;
}
.round .case-media {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  outline: none;
}
.case-media > img,
.case-media > video {
  object-fit: cover;
}
.wide .case-media > img,
.wide .case-media > video {
  object-fit: contain;
}
.case figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 0;
  min-height: 36px;
  font-size: 11px;
  line-height: 1.35;
  color: #dfd6c9;
}
.frame-index {
  font-size: 8px;
  color: #a9926c;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.film-reel .track-controls {
  margin: 0 5%;
  padding: 11px 0 0;
  gap: 24px;
  min-height: 49px;
}
.film-reel .track-position {
  color: #a9926c;
  font-size: 9px;
}
.film-reel .track-progress {
  background: #ffffff1c;
}
.film-reel .track-progress i {
  background: #b298ff;
}
.film-reel .track-controls button {
  color: #e5dccf;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.film-reel .track-controls button:hover:not(:disabled) {
  color: #bca5ff;
}
.film-reel .track-controls[hidden] {
  display: flex !important;
}
.film-reel .track-controls button:disabled {
  opacity: 0.22;
}
.film-reel .play-glyph {
  border-color: #ffffff55;
  background: #08080820;
}
.film-reel .play-case:hover .play-glyph {
  border-color: #fff;
  background: #08080870;
  transform: scale(1.1);
}
.panel-end {
  background: #9275ff;
  color: #171717;
  padding: 35px 5%;
}
.panel-end p {
  font-size: 17px;
}
.panel-end .button {
  background: #171717;
  color: #eeeae2;
}
@media (min-width: 1600px) {
  .case {
    flex-basis: 220px;
  }
  .case-media,
  .wide .case-media {
    height: 370px;
  }
  .case.wide {
    flex-basis: 660px;
  }
  .case.round {
    flex-basis: 370px;
  }
  .round .case-media {
    width: 370px;
    height: 370px;
  }
}
@media (max-width: 600px) {
  .panel-intro {
    padding: 28px 6% 36px;
  }
  .panel-intro h2 {
    font-size: 61px;
    line-height: 0.89;
  }
  .panel-number {
    margin-bottom: 25px;
    font-size: 9px;
  }
  .panel-overview {
    margin-top: 27px;
  }
  .panel-copy p {
    font-size: 16px;
  }
  .panel-copy p + p {
    font-size: 14px;
  }
  .panel-process {
    padding: 21px 0 0;
  }
  .panel-process li {
    font-size: 12px;
  }
  .format {
    padding: 32px 6% 30px;
  }
  .format-heading {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
  }
  .format-index {
    padding-top: 6px;
    font-size: 9px;
  }
  .format-heading h3 {
    font-size: 46px;
    line-height: 0.94;
  }
  .term {
    grid-column: 2;
    font-size: 9px;
    margin-top: 4px;
  }
  .term b {
    display: inline;
    margin-left: 5px;
    font-size: 11px;
  }
  .format-description {
    font-size: 13px;
    margin: 20px 0;
    line-height: 1.6;
  }
  .tag {
    font-size: 10px;
  }
  .tags {
    gap: 8px 20px;
  }
  .case-group-title {
    font-size: 10px;
    line-height: 1.5;
  }
  .film-reel {
    margin-left: -6.82%;
    margin-right: -6.82%;
    padding-top: 17px;
  }
  .film-reel:before {
    top: 47px;
    height: 7px;
  }
  .film-reel:after {
    bottom: 69px;
    height: 7px;
  }
  .reel-meta {
    font-size: 7px;
    letter-spacing: 1.3px;
    padding: 0 6% 18px;
  }
  .case-track {
    padding: 19px 6% 24px;
    gap: 14px;
    scroll-padding-left: 6%;
  }
  .case {
    flex-basis: 164px;
  }
  .case.wide {
    flex-basis: 310px;
  }
  .case.round {
    flex-basis: 276px;
  }
  .case-media,
  .wide .case-media {
    height: 276px;
  }
  .round .case-media {
    width: 276px;
    height: 276px;
  }
  .frame-head {
    font-size: 7px;
    height: 20px;
  }
  .case figcaption {
    font-size: 10px;
    gap: 8px;
    min-height: 31px;
  }
  .film-reel .track-controls {
    margin: 0 6%;
    gap: 16px;
    padding-top: 9px;
    min-height: 45px;
  }
  .film-reel .track-controls button {
    font-size: 10px;
  }
  .panel-end {
    padding: 28px 6%;
  }
  .panel-end p {
    font-size: 15px;
  }
}
.film-reel .case:not(.round) {
  flex-grow: 1;
}
.film-reel .track-controls button:disabled {
  visibility: hidden;
}

/* Brief: choices stay visible, with no decorative slate labels. */
.clapper,
.clapper:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
  margin-top: 0;
}
#brief-form,
.brief-result {
  padding: 0;
}
.clapper h3 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 32px;
}
.brief-options {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
  min-width: 0;
}
.brief-options legend {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}
.brief-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brief-choice {
  position: relative;
  cursor: pointer;
}
.brief-choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.brief-choice span {
  display: block;
  border: 1px solid #555;
  border-radius: 30px;
  padding: 12px 17px;
  color: #d4d1d8;
  font-size: 13px;
  line-height: 1.35;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.brief-choice:hover span {
  border-color: #a796db;
  color: white;
}
.brief-choice input:checked + span {
  background: #d7caff;
  border-color: #d7caff;
  color: #211731;
}
.brief-choice input:focus-visible + span {
  outline: 2px solid #d7caff;
  outline-offset: 4px;
}
#brief-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #666;
  padding: 14px 0;
  margin: 4px 0 24px;
  font-size: 15px;
  min-height: 85px;
}
#brief-form > label {
  font-size: 13px;
}
#brief-form > .button {
  width: auto;
  border-radius: 32px;
  padding: 17px 28px;
  font-size: 15px;
  min-height: 52px;
  background: #d7caff;
}
#brief-form > .button::before {
  display: none;
}
#brief-form > .button:hover {
  background: #e6ddff;
}
@media (max-width: 600px) {
  .brief-choice span {
    font-size: 12px;
    padding: 11px 14px;
  }
  .brief-options {
    margin-bottom: 24px;
  }
}

/* A working slate: hinged sticks above a ruled writing surface. */
.clapper,
.clapper:hover {
  position: relative;
  background: #eeece5;
  color: #202020;
  border: 1px solid #bbb9b2;
  border-radius: 3px 3px 8px 8px;
  margin-top: 72px;
  box-shadow: 0 18px 36px #0003;
  transform: none;
}
.slate-sticks {
  position: relative;
  height: 66px;
  margin: -1px -1px 0;
  background: #161616;
  border-radius: 3px 3px 0 0;
}
.slate-stick {
  position: absolute;
  left: 0;
  width: 100%;
  height: 31px;
  background: repeating-linear-gradient(
    132deg,
    #202020 0 42px,
    #edece5 43px 82px
  );
  border: 1px solid #343434;
  box-shadow: inset 0 -2px 0 #0003;
}
.slate-upper {
  top: 0;
  transform-origin: 17px 100%;
  transform: rotate(-6deg);
  border-radius: 3px 4px 0 0;
  z-index: 2;
}
.slate-lower {
  bottom: 0;
  background-position: 42px 0;
}
.slate-hinge {
  position: absolute;
  left: 5px;
  top: 19px;
  width: 23px;
  height: 40px;
  border-radius: 4px;
  background: #333;
  z-index: 3;
  border: 1px solid #666;
}
.slate-hinge::before,
.slate-hinge::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aaa;
  left: 7px;
  box-shadow: inset 0 0 0 2px #777;
}
.slate-hinge::before {
  top: 5px;
}
.slate-hinge::after {
  bottom: 5px;
}
.clapper #brief-form,
.clapper .brief-result {
  padding: 25px 28px 28px;
}
.clapper h3 {
  font-size: 40px;
  border-bottom: 2px solid #272727;
  padding-bottom: 17px;
  margin-bottom: 20px;
}
.clapper .brief-options {
  border-bottom: 1px solid #b5b3ac;
  padding-bottom: 19px;
  margin-bottom: 19px;
}
.clapper .brief-options legend {
  color: #55534e;
  font-size: 12px;
  margin-bottom: 12px;
}
.clapper .brief-choices {
  gap: 6px 15px;
}
.clapper .brief-choice span {
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #35332f;
  padding: 9px 3px 9px 23px;
  font-size: 13px;
  position: relative;
}
.clapper .brief-choice span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 11px;
  height: 11px;
  border: 1px solid #8e8b83;
  border-radius: 50%;
}
.clapper .brief-choice input:checked + span {
  color: #5032a1;
  background: transparent;
}
.clapper .brief-choice input:checked + span::before {
  background: #6947c0;
  border-color: #6947c0;
  box-shadow: inset 0 0 0 2px #eeece5;
}
.clapper .brief-choice:hover span {
  color: #6947c0;
}
.clapper .brief-choice input:focus-visible + span {
  outline: 2px solid #6947c0;
  outline-offset: 1px;
}
.clapper #brief-form > label,
.clapper .optional {
  color: #55534e;
}
.clapper #brief-form textarea,
.clapper #brief-text {
  color: #202020;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b5b3ac;
  border-radius: 0;
  font-size: 14px;
}
.clapper textarea::placeholder {
  color: #79766f;
}
.clapper #brief-form > .button {
  background: #202020;
  color: #f4f0ff;
  border-radius: 4px;
  width: 100%;
  min-height: 49px;
  padding: 14px 20px;
}
.clapper #brief-form > .button:hover {
  background: #6847ba;
}
.clapper .brief-result > label {
  color: #202020;
  font-size: 38px;
}
.clapper #copy-status,
.clapper #edit-brief {
  color: #55534e;
}
.clapper .result-actions {
  flex-wrap: wrap;
  gap: 8px;
}
.clapper .result-actions .button {
  font-size: 12px;
  padding: 13px 16px;
  min-height: 44px;
  border-radius: 4px;
}
.clapper.clap .slate-upper {
  animation: slate-close 0.48s cubic-bezier(0.65, 0, 0.8, 0.4) forwards;
}
@keyframes slate-close {
  0% {
    transform: rotate(-6deg);
  }
  58% {
    transform: rotate(0);
  }
  74% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@media (max-width: 600px) {
  .clapper #brief-form,
  .clapper .brief-result {
    padding: 20px 18px;
  }
  .clapper h3 {
    font-size: 36px;
  }
  .clapper .brief-choices {
    gap: 3px 10px;
  }
  .clapper .brief-choice span {
    font-size: 12px;
  }
  .slate-sticks {
    height: 58px;
  }
  .slate-stick {
    height: 27px;
  }
  .clapper {
    margin-top: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slate-upper {
    transform: none;
  }
  .clapper.clap .slate-upper {
    animation: none;
  }
}

/* Motion follows the hinge and the user's action. */
.slate-upper {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.clapper:not(.clap):focus-within .slate-upper {
  transform: rotate(-9deg);
}
.clapper .brief-choice span::before {
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.clapper #brief-form > .button {
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
}
.clapper #brief-form > .button:hover {
  box-shadow: 0 5px 16px #51328c25;
  transform: translateY(-2px);
}
.clapper #brief-form > .button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: none;
}
.clapper #brief-form > .button:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}
.clapper textarea {
  transition: border-color 0.25s;
}
.clapper textarea:focus {
  outline: 0;
  border-bottom-color: #6947c0 !important;
  box-shadow: 0 1px 0 #6947c0;
}
.clapper.clap .slate-upper {
  animation: slate-close 0.48s cubic-bezier(0.65, 0, 0.8, 0.4) forwards;
}
@keyframes slate-close {
  0% {
    transform: rotate(-9deg);
  }
  58% {
    transform: rotate(0);
  }
  74% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slate-upper,
  .clapper:not(.clap):focus-within .slate-upper {
    transform: none;
    transition: none;
  }
  .clapper.clap .slate-upper {
    animation: none;
  }
  .clapper #brief-form > .button:hover {
    transform: none;
  }
}

.case-client,
.case-description {
  display: block;
  font-family: Firs, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 8px;
  color: #c9c4cc;
  text-transform: none;
  white-space: normal;
}
.case-description {
  max-width: 60ch;
}
