.case-page {
  overflow-x: hidden;
  background: #000;
  color: var(--black);
}

.case-header {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.case-header nav {
  display: flex;
  gap: 42px;
}

.case-intro {
  display: flex;
  min-height: calc(100vh - 78px);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
}

.case-kicker {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.case-intro h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 156px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.case-details {
  display: grid;
  margin-top: 72px;
  grid-template-columns: calc(50vw - var(--page-gutter)) 1fr auto;
  gap: 24px;
}

.case-lead {
  max-width: 640px;
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.case-meta {
  display: grid;
  align-self: end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-meta dl,
.case-meta dd {
  margin: 0;
}

.case-meta dt,
.case-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.case-meta dd {
  font-size: 15px;
  letter-spacing: var(--tracking-copy);
  line-height: 1.35;
}

.case-media {
  display: grid;
  min-height: 80vh;
  overflow: hidden;
  place-items: center;
  background: #eeeeec;
}

.case-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  object-fit: cover;
}

.case-media-dark {
  background: #000;
}

.case-placeholder {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}

.case-section {
  display: grid;
  min-height: 620px;
  align-content: start;
  grid-template-columns: 24% 1fr;
  padding-top: 160px;
  padding-bottom: 160px;
}

.case-section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.25;
}

.case-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.case-tile {
  display: grid;
  min-height: 55vw;
  place-items: center;
  background: #f2f2f0;
  color: #b9b9b5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.case-next {
  display: grid;
  min-height: 360px;
  align-content: center;
  grid-template-columns: 24% 1fr;
  border-top: 1px solid var(--line);
}

.case-next span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.case-next strong {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.25;
}

.process-cta-shell {
  padding: 160px 50px;
  border-top: 1px solid var(--line);
}

.process-cta {
  display: grid;
  width: 100%;
  min-height: 300px;
  align-items: end;
  grid-template-columns: 1fr auto;
  padding: 44px;
  border: 0;
  border-radius: 42px;
  background: #eeeeec;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background-color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-cta:hover,
.process-cta:focus-visible {
  background: #e6e6e3;
  transform: translateY(-4px);
}

.process-cta-label {
  align-self: start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.process-cta strong {
  max-width: 980px;
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
}

.process-cta-icon {
  display: grid;
  width: 64px;
  height: 64px;
  align-self: end;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  place-items: center;
}

.process-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  padding: 50px;
  background: rgb(0 0 0 / 42%);
  opacity: 0;
  backdrop-filter: blur(18px);
  pointer-events: none;
  transition: opacity 360ms ease;
}

.process-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.process-modal[hidden] {
  display: none;
}

.process-modal-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 48px;
  border-radius: 42px;
  background: #fefefe;
  color: var(--black);
  overscroll-behavior: contain;
  transform: translateY(56px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

.process-modal.is-open .process-modal-panel {
  transform: translateY(0);
}

.process-modal-close {
  position: absolute;
  top: 36px;
  right: 36px;
  display: grid;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  place-items: center;
}

.process-modal-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.process-modal h2 {
  max-width: 980px;
  margin: 0 96px 96px 0;
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
}

.process-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-modal-grid section {
  min-height: 320px;
  padding: 36px;
  border-radius: 28px;
  background: #f7f7f5;
}

.process-modal-grid span {
  display: block;
  margin-bottom: 96px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.process-modal-grid h3 {
  margin: 0 0 20px;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.2;
}

.process-modal-grid p {
  max-width: 560px;
  margin: 0;
  color: #555;
  font-size: 15px;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

html.modal-open,
html.modal-open body {
  overflow: hidden;
}

.case-footer {
  display: flex;
  min-height: 180px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.formfactor-results {
  display: grid;
  padding-top: 120px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
  grid-template-columns: 24% 1fr;
}

.formfactor-results ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.formfactor-results li {
  min-height: 250px;
  padding: 0 32px;
  border-left: 1px solid var(--line);
}

.formfactor-results li:first-child {
  padding-left: 0;
  border-left: 0;
}

.formfactor-results li span {
  display: block;
  margin-bottom: 80px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.formfactor-results li p {
  max-width: 290px;
  margin: 0;
  font-size: 16px;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.formfactor-story {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.formfactor-copy {
  display: grid;
  padding-top: 120px;
  padding-bottom: 64px;
  grid-template-columns: 24% 1fr;
}

.formfactor-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.formfactor-story figure {
  margin: 0;
}

.formfactor-machine {
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 90vh;
  overflow: hidden;
  place-items: center;
  background: #eeeeec;
}

.formfactor-machine img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center 58%;
}

.formfactor-product-shot {
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 72vw;
  padding: 8vw;
  place-items: center;
  background: #e8e8e5;
}

.formfactor-product-shot img,
.formfactor-workflow img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.formfactor-workflow {
  width: 100%;
  max-width: 100vw;
  padding: 8vw var(--page-gutter) 12vw;
  background: #eeeeec;
}

.formfactor-workflow figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.formfactor-page {
  background: #000;
}

.formfactor-draft-intro {
  display: grid;
  min-height: 330px;
  align-items: end;
  grid-template-columns: 42% 1fr;
  padding-bottom: 100px;
}

.formfactor-draft-title p,
.formfactor-draft-title h1,
.formfactor-draft-lead {
  margin: 0;
}

.formfactor-draft-title p,
.formfactor-draft-title h1 {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.formfactor-draft-lead,
.formfactor-result-copy p,
.formfactor-draft-panel > p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.formfactor-draft-lead {
  max-width: 330px;
}

.formfactor-device-hero {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #000;
}

.formfactor-device-hero video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.formfactor-device-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.formfactor-draft-results {
  display: grid;
  min-height: 380px;
  align-content: start;
  grid-template-columns: 42% 1fr;
  padding-top: 90px;
  padding-bottom: 90px;
}

.formfactor-draft-results h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.1;
}

.formfactor-result-copy {
  width: min(100%, 520px);
}

.formfactor-result-copy p {
  margin: 0;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.formfactor-result-copy p + p {
  padding-top: 34px;
}

.formfactor-draft-story {
  padding-bottom: 760px;
}

.formfactor-draft-story figure {
  margin: 0;
}

.formfactor-machine-quote {
  --machine-overlay: 0;
  --machine-caption-blur: 0px;
  --machine-caption-opacity: 0;
  position: relative;
  min-height: 200vh;
  background: #111;
  color: #fff;
}

.formfactor-machine-media {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  overflow: hidden;
}

.formfactor-machine-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / var(--machine-overlay));
  content: "";
  pointer-events: none;
}

.formfactor-machine-media img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.formfactor-machine-media figcaption {
  position: absolute;
  top: 50%;
  right: var(--page-gutter);
  left: var(--page-gutter);
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  filter: blur(var(--machine-caption-blur));
  opacity: var(--machine-caption-opacity);
  text-align: center;
  transform: translateY(-50%);
}

.formfactor-draft-panel {
  display: grid;
  justify-items: center;
  padding-top: 180px;
}

.formfactor-temperature-panel {
  margin-top: 160px;
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.formfactor-draft-panel > p {
  width: min(100%, 360px);
  margin: 0 0 120px;
}

.formfactor-draft-product-shot {
  display: grid;
  width: 100%;
  justify-items: center;
}

.formfactor-draft-product-shot img {
  display: block;
  width: min(100%, 700px);
  height: auto;
}

.lightspeed-results {
  display: grid;
  padding-top: 120px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
  grid-template-columns: 24% 1fr;
}

.lightspeed-results ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.lightspeed-results li {
  min-height: 250px;
  padding: 0 32px;
  border-left: 1px solid var(--line);
}

.lightspeed-results li:first-child {
  padding-left: 0;
  border-left: 0;
}

.lightspeed-results li span {
  display: block;
  margin-bottom: 80px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.lightspeed-results li p {
  max-width: 290px;
  margin: 0;
  font-size: 16px;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.lightspeed-story {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.lightspeed-copy {
  display: grid;
  padding-top: 120px;
  padding-bottom: 64px;
  grid-template-columns: 24% 1fr;
}

.lightspeed-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.lightspeed-story figure {
  margin: 0;
}

.lightspeed-comparison {
  display: grid;
  width: 100%;
  max-width: 100vw;
  padding: 6vw var(--page-gutter);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--page-gutter);
  background: #eeeeec;
}

.lightspeed-comparison img,
.lightspeed-rules img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.lightspeed-comparison figcaption {
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.lightspeed-rules {
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 65vw;
  padding: 8vw;
  place-items: center;
  background: #e8e8e5;
}

.spren-results {
  display: grid;
  padding-top: 120px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
  grid-template-columns: 24% 1fr;
}

.spren-results ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.spren-results li {
  min-height: 250px;
  padding: 0 32px;
  border-left: 1px solid var(--line);
}

.spren-results li:first-child {
  padding-left: 0;
  border-left: 0;
}

.spren-results li span {
  display: block;
  margin-bottom: 80px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.spren-results li p {
  max-width: 290px;
  margin: 0;
  font-size: 16px;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.spren-story {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.spren-copy {
  display: grid;
  padding-top: 120px;
  padding-bottom: 64px;
  grid-template-columns: 24% 1fr;
}

.spren-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.4;
}

.spren-story figure {
  margin: 0;
}

.spren-comparison {
  display: grid;
  width: 100%;
  max-width: 100vw;
  padding: 7vw max(var(--page-gutter), 10vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 100px);
  background: #eeeeec;
}

.spren-comparison figure {
  display: grid;
  justify-items: center;
}

.spren-comparison img {
  display: block;
  width: min(100%, 520px);
  max-width: 100%;
  height: auto;
}

.spren-comparison figcaption {
  width: min(100%, 520px);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-copy);
  line-height: 1.3;
}

.spren-metrics {
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 65vw;
  padding: 8vw;
  place-items: center;
  background: #e8e8e5;
}

.spren-metrics img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.formfactor-page {
  background: #000;
}

.formfactor-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  height: 72px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 16px;
}

.formfactor-header nav {
  display: flex;
  gap: 42px;
  align-items: center;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.formfactor-header .nav-link {
  padding-block: 0;
  font: inherit;
}

.formfactor-header .nav-link::after {
  display: none;
}

.formfactor-hero {
  min-height: 1600px;
  padding-top: 218px;
  background: #000;
  color: #fff;
}

.formfactor-hero-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.formfactor-hero-grid::after {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 40px;
  background: rgb(255 255 255 / 16%);
  content: "";
}

.formfactor-hero-grid h1,
.formfactor-hero-grid p {
  margin: 0;
}

.formfactor-hero-grid h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.formfactor-hero-grid p {
  max-width: 529px;
  padding-top: 15px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.formfactor-hero-media {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.formfactor-hero-media video {
  display: block;
  width: 100%;
  max-width: none;
  height: 100vh;
  object-fit: cover;
}

.formfactor-hero-copy {
  position: static;
  margin-top: 150px;
  padding-bottom: 55vh;
}

.formfactor-story-line {
  position: static;
  width: min(1220px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0;
  color: rgb(255 255 255 / 60%);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 1;
  transform: none;
}

.formfactor-story-line strong {
  color: #fff;
  font-weight: 600;
}

.formfactor-story-line > span {
  opacity: 1;
}

.formfactor-word {
  display: inline;
  opacity: 0;
  transition: opacity 280ms ease;
  transition-delay: 0ms;
}

.formfactor-hero-copy.is-first-sentence-visible
  .formfactor-story-line
  > span:first-of-type
  .formfactor-word,
.formfactor-hero-copy.is-second-sentence-visible
  .formfactor-story-line
  > span:nth-of-type(2)
  .formfactor-word {
  opacity: 1;
  transition-delay: calc(var(--word-index, 0) * 24ms);
}

.formfactor-machine-copy.is-first-sentence-visible
  > span:first-of-type
  .formfactor-word,
.formfactor-machine-copy.is-second-sentence-visible
  > span:nth-of-type(2)
  .formfactor-word {
  opacity: 1;
  transition-delay: calc(var(--word-index, 0) * 24ms);
}

.formfactor-screen-section {
  padding-top: 132px;
  padding-bottom: 172px;
  background: #fefefe;
}

.formfactor-screen-section + .formfactor-screen-section {
  padding-top: 86px;
  padding-bottom: 258px;
}

.formfactor-screen-section h2 {
  margin: 0 0 24px;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.formfactor-screen-section figure {
  margin: 0;
}

.formfactor-screen-card {
  display: grid;
  min-height: 625px;
  overflow: hidden;
  padding: 76px;
  border-radius: 20px;
  place-items: center;
  background: #f4f4f4;
}

.formfactor-screen-card img {
  display: block;
  width: min(100%, 790px);
  height: auto;
}

.formfactor-screen-section figcaption {
  width: min(100%, 360px);
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
}

.spren-comparison-grid,
.lightspeed-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 20px;
  background: #f4f4f4;
}

.spren-comparison-card,
.lightspeed-comparison-card {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 56px;
  align-content: center;
  justify-items: center;
  gap: 28px;
}

.lightspeed-comparison-card:first-child {
  padding-left: 0;
}

.lightspeed-comparison-card:last-child {
  padding-left: 0;
}

.lightspeed-comparison-card {
  padding-top: 82px;
}

.spren-comparison-card + .spren-comparison-card,
.lightspeed-comparison-card + .lightspeed-comparison-card {
  border-left: 1px solid var(--line);
}

.spren-comparison-card .formfactor-screen-card,
.lightspeed-comparison-card .formfactor-screen-card {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.lightspeed-comparison-card .formfactor-screen-card {
  width: 100%;
}

.spren-comparison-card .formfactor-screen-card img,
.lightspeed-comparison-card .formfactor-screen-card img {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 620px;
  object-fit: contain;
}

.lightspeed-comparison-card .formfactor-screen-card img {
  width: 165%;
  max-width: none;
  max-height: none;
  justify-self: end;
}

.spren-comparison-card > span,
.lightspeed-comparison-card > span {
  position: absolute;
  top: 40px;
  left: 40px;
  color: rgb(0 0 0 / 40%);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.35;
}

.spren-comparison-card + .spren-comparison-card > span,
.lightspeed-comparison-card + .lightspeed-comparison-card > span {
  right: 40px;
  left: auto;
  text-align: right;
}

.spren-profile-section .formfactor-screen-card {
  min-height: 720px;
}

.spren-profile-section .formfactor-screen-card img {
  width: auto;
  max-width: min(100%, 520px);
  max-height: 620px;
  object-fit: contain;
}

.spren-page .formfactor-screen-section,
.lightspeed-page .formfactor-screen-section {
  padding-top: 132px;
  padding-bottom: 172px;
}

.spren-page .formfactor-screen-section + .formfactor-screen-section,
.lightspeed-page .formfactor-screen-section + .formfactor-screen-section {
  padding-top: 86px;
  padding-bottom: 172px;
}

.imagotag-screen-section .formfactor-screen-card,
.bang-screen-section .formfactor-screen-card {
  min-height: 720px;
}

.imagotag-screen-section .formfactor-screen-card img {
  width: min(100%, 1060px);
  aspect-ratio: 2048 / 1137;
  overflow: hidden;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
}

.bang-screen-section .formfactor-screen-card img {
  width: min(100%, 1060px);
  max-height: 620px;
  object-fit: contain;
}

.bang-screen-sequence {
  --bang-screen-image: none;
  display: grid;
  width: min(100%, 1000px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.bang-screen-sequence.is-precise-like {
  --bang-screen-image: url("assets/bang/precise-like.png");
}

.bang-screen-sequence.is-onboarding {
  --bang-screen-image: url("assets/bang/onboarding.png");
}

.bang-screen-sequence span {
  aspect-ratio: 919.333 / 1864;
  background-image: var(--bang-screen-image);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 300% 100%;
}

.bang-screen-sequence span:nth-child(2) {
  background-position-x: center;
}

.bang-screen-sequence span:nth-child(3) {
  background-position-x: right;
}

.strada-screen-section .formfactor-screen-card {
  min-height: 720px;
}

.strada-screen-sequence {
  display: grid;
  width: min(100%, 1000px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
}

.strada-screen-sequence img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.imagotag-page .formfactor-screen-section,
.bang-page .formfactor-screen-section,
.strada-page .formfactor-screen-section {
  padding-top: 132px;
  padding-bottom: 172px;
}

.imagotag-page .formfactor-screen-section + .formfactor-screen-section,
.bang-page .formfactor-screen-section + .formfactor-screen-section,
.strada-page .formfactor-screen-section + .formfactor-screen-section {
  padding-top: 86px;
  padding-bottom: 172px;
}

.formfactor-machine-quote {
  --machine-overlay: 0;
  --machine-caption-blur: 0px;
  --machine-caption-opacity: 1;
  position: relative;
  min-height: 180svh;
  margin: 0;
  background: #111;
  color: #fff;
}

.formfactor-machine-media {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.formfactor-machine-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  content: "";
  opacity: var(--machine-overlay);
  pointer-events: none;
  transition: opacity 420ms ease;
}

.formfactor-machine-quote.is-machine-copy-visible {
  --machine-overlay: 0.6;
}

.formfactor-machine-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.formfactor-machine-copy {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - (var(--page-gutter) * 2)));
  min-height: 180svh;
  padding-top: 100svh;
  margin: -100svh var(--page-gutter) 0;
  max-width: 1240px;
  color: rgb(255 255 255 / 60%);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: left;
  pointer-events: none;
}

.formfactor-machine-copy strong {
  color: #fff;
  font-weight: 600;
}

.formfactor-machine-copy > span {
  opacity: 1;
}

.formfactor-next-project {
  width: 100%;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
  padding-top: 330px;
  padding-bottom: 330px;
  background: #fefefe;
}

.formfactor-next-project h2 {
  margin: 0 0 126px;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.formfactor-next-row {
  display: grid;
  width: calc(100% + (var(--page-gutter) * 2));
  margin-left: calc(var(--page-gutter) * -1);
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
  padding-top: 32px;
  padding-bottom: 32px;
  min-height: 58px;
  align-items: center;
  grid-template-columns: calc(50vw - var(--page-gutter)) 1fr;
  border-top: 1px solid rgb(0 0 0 / 6%);
  border-bottom: 1px solid rgb(0 0 0 / 6%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.formfactor-next-row span:first-child {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.formfactor-next-row span:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.formfactor-contact {
  display: grid;
  min-height: 650px;
  grid-template-rows: 1fr auto;
  padding-top: 90px;
  padding-bottom: 40px;
  background: #fefefe;
}

.formfactor-contact-main {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.formfactor-contact h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.formfactor-contact address {
  display: grid;
  grid-column: 3 / 5;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 0;
  padding-top: 15px;
  margin: 0;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
}

.formfactor-contact address span {
  display: block;
  margin-bottom: 16px;
  color: #8c8c8c;
}

.formfactor-contact a {
  width: max-content;
}

.formfactor-contact p {
  margin: 0;
}

.formfactor-contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 16px;
}

.formfactor-contact-meta span:last-child {
  grid-column: 2;
  justify-self: start;
}

@media (max-width: 760px) {
  .case-header {
    height: 64px;
  }

  .case-header nav {
    gap: 24px;
  }

  .case-intro {
    min-height: calc(100svh - 64px);
    padding-bottom: 28px;
  }

  .case-intro h1 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .case-details {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .case-meta {
    grid-template-columns: 1fr 1fr;
  }

  .case-media,
  .case-media video {
    min-height: 68svh;
  }

  .case-section {
    min-height: 480px;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .case-tiles {
    grid-template-columns: 1fr;
  }

  .case-tile {
    min-height: 110vw;
  }

  .case-next {
    min-height: 260px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-cta-shell {
    padding: 96px var(--page-gutter);
  }

  .process-cta {
    min-height: 230px;
    padding: 28px;
    border-radius: 30px;
  }

  .process-cta strong {
    font-size: clamp(28px, 9vw, 44px);
  }

  .process-cta-icon {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }

  .process-modal {
    padding: 14px;
  }

  .process-modal-panel {
    padding: 28px;
    border-radius: 30px;
  }

  .process-modal-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .process-modal h2 {
    margin-right: 64px;
    margin-bottom: 64px;
    font-size: clamp(28px, 9vw, 44px);
  }

  .process-modal-grid {
    grid-template-columns: 1fr;
  }

  .process-modal-grid section {
    min-height: 260px;
    padding: 28px;
  }

  .process-modal-grid span {
    margin-bottom: 72px;
  }

  .formfactor-results {
    padding-top: 80px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .formfactor-results ol {
    grid-template-columns: 1fr;
  }

  .formfactor-results li,
  .formfactor-results li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .formfactor-results li span {
    margin-bottom: 36px;
  }

  .formfactor-results li p {
    max-width: 100%;
  }

  .formfactor-copy {
    padding-top: 90px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .formfactor-machine,
  .formfactor-machine img {
    min-height: 70svh;
    height: 70svh;
  }

  .formfactor-product-shot {
    min-height: 100vw;
    padding: 8vw 4vw;
  }

  .formfactor-workflow {
    padding: 12vw var(--page-gutter) 18vw;
  }

  .formfactor-workflow figcaption {
    flex-direction: column;
    gap: 8px;
  }

  .formfactor-draft-intro {
    min-height: 280px;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 60px;
  }

  .formfactor-draft-title p,
  .formfactor-draft-title h1 {
    font-size: clamp(36px, 14vw, 56px);
  }

  .formfactor-device-hero {
    min-height: 100svh;
  }

  .formfactor-device-hero video,
  .formfactor-device-hero img {
    min-height: 100svh;
  }

  .formfactor-draft-results {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .formfactor-result-copy {
    width: 100%;
  }

  .formfactor-draft-story {
    padding-bottom: 360px;
  }

  .formfactor-machine-quote {
    min-height: 200svh;
  }

  .formfactor-machine-media {
    height: 100svh;
  }

  .formfactor-machine-media figcaption {
    font-size: clamp(24px, 8vw, 36px);
  }

  .formfactor-draft-panel {
    padding-top: 110px;
  }

  .formfactor-temperature-panel {
    margin-top: 100px;
    padding-top: 80px;
  }

  .formfactor-draft-panel > p {
    width: 100%;
    margin-bottom: 60px;
  }

  .formfactor-draft-product-shot img {
    width: min(100%, 700px);
  }

  .formfactor-header {
    height: 64px;
  }

  .formfactor-hero {
    min-height: 1050px;
    padding-top: 132px;
  }

  .formfactor-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .formfactor-hero-grid::after {
    margin-top: 10px;
  }

  .formfactor-hero-grid h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .formfactor-hero-grid p {
    max-width: 290px;
    font-size: clamp(20px, 5.5vw, 25px);
  }

  .formfactor-hero-media {
    min-height: 340px;
  }

  .formfactor-hero-media video {
    width: 100%;
    object-fit: cover;
  }

  .formfactor-hero-copy {
    min-height: 230px;
    margin-top: 80px;
  }

  .formfactor-story-line {
    font-size: clamp(38px, 11vw, 56px);
  }

  .formfactor-screen-section {
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .formfactor-screen-section + .formfactor-screen-section {
    padding-top: 28px;
  }

  .formfactor-screen-section h2 {
    margin-bottom: 18px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .formfactor-screen-card {
    min-height: 280px;
    padding: 32px 18px;
    border-radius: 8px;
  }

  .formfactor-screen-section figcaption {
    margin-top: 18px;
  }

  .spren-comparison-grid,
  .lightspeed-comparison-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .spren-comparison-card,
  .lightspeed-comparison-card {
    min-height: 420px;
    padding: 32px 18px;
  }

  .lightspeed-comparison-card {
    padding-top: 82px;
  }

  .spren-comparison-card + .spren-comparison-card,
  .lightspeed-comparison-card + .lightspeed-comparison-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .spren-comparison-card + .spren-comparison-card > span,
  .lightspeed-comparison-card + .lightspeed-comparison-card > span {
    right: auto;
    left: 40px;
    text-align: left;
  }

  .spren-comparison-card .formfactor-screen-card,
  .lightspeed-comparison-card .formfactor-screen-card {
    min-height: 0;
    padding: 0;
  }

  .spren-comparison-card .formfactor-screen-card img,
  .lightspeed-comparison-card .formfactor-screen-card img {
    max-width: min(100%, 260px);
    max-height: 360px;
  }

  .lightspeed-comparison-card .formfactor-screen-card img {
    width: 165%;
    max-width: none;
    max-height: none;
    justify-self: end;
  }

  .spren-profile-section .formfactor-screen-card {
    min-height: 420px;
  }

  .spren-profile-section .formfactor-screen-card img {
    max-width: min(100%, 260px);
    max-height: 360px;
  }

  .spren-page .formfactor-screen-section,
  .lightspeed-page .formfactor-screen-section {
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .spren-page .formfactor-screen-section + .formfactor-screen-section,
  .lightspeed-page .formfactor-screen-section + .formfactor-screen-section {
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .imagotag-screen-section .formfactor-screen-card,
  .bang-screen-section .formfactor-screen-card {
    min-height: 420px;
  }

  .imagotag-screen-section .formfactor-screen-card img {
    width: 100%;
    max-height: 360px;
  }

  .bang-screen-section .formfactor-screen-card img {
    width: 100%;
    max-height: 360px;
  }

  .bang-screen-sequence {
    width: 100%;
    gap: 8px;
  }

  .strada-screen-section .formfactor-screen-card {
    min-height: 420px;
  }

  .strada-screen-sequence {
    width: 100%;
    gap: 8px;
  }

  .strada-screen-sequence img {
    max-height: 360px;
  }

  .imagotag-page .formfactor-screen-section,
  .imagotag-page .formfactor-screen-section + .formfactor-screen-section,
  .bang-page .formfactor-screen-section,
  .bang-page .formfactor-screen-section + .formfactor-screen-section,
  .strada-page .formfactor-screen-section,
  .strada-page .formfactor-screen-section + .formfactor-screen-section {
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .formfactor-machine-quote {
    min-height: 125svh;
  }

  .formfactor-machine-copy {
    min-height: 125svh;
    padding-top: 50svh;
    font-size: clamp(38px, 11vw, 56px);
  }

  .formfactor-next-project {
    padding-top: 150px;
    padding-bottom: 190px;
  }

  .formfactor-next-project h2 {
    margin-bottom: 100px;
    font-size: clamp(38px, 11vw, 56px);
  }

  .formfactor-next-row {
    min-height: 58px;
    grid-template-columns: calc(50vw - var(--page-gutter)) 1fr;
    gap: 0;
    padding: 32px var(--page-gutter);
  }

  .formfactor-contact {
    min-height: 520px;
    padding-top: 70px;
    padding-bottom: 28px;
  }

  .formfactor-contact-main {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 100px;
  }

  .formfactor-contact h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .formfactor-contact address {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 0;
  }

  .formfactor-contact-meta {
    grid-template-columns: 1fr auto;
  }

  .formfactor-contact-meta span:last-child {
    grid-column: auto;
  }

  .lightspeed-results {
    padding-top: 80px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lightspeed-results ol {
    grid-template-columns: 1fr;
  }

  .lightspeed-results li,
  .lightspeed-results li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lightspeed-results li span {
    margin-bottom: 36px;
  }

  .lightspeed-results li p {
    max-width: 100%;
  }

  .lightspeed-copy {
    padding-top: 90px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lightspeed-comparison {
    padding: 10vw var(--page-gutter);
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .lightspeed-rules {
    min-height: 100vw;
    padding: 8vw 4vw;
  }

  .spren-results {
    padding-top: 80px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spren-results ol {
    grid-template-columns: 1fr;
  }

  .spren-results li,
  .spren-results li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .spren-results li span {
    margin-bottom: 36px;
  }

  .spren-results li p {
    max-width: 100%;
  }

  .spren-copy {
    padding-top: 90px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .spren-comparison {
    padding: 12vw var(--page-gutter);
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .spren-metrics {
    min-height: 110vw;
    padding: 8vw 4vw;
  }
}
