:root {
  color-scheme: light;
  --paper: #f1f2f4;
  --paper-bright: #fafbfc;
  --ink: #0b0d10;
  --ink-muted: #5b616a;
  --line: rgba(11, 13, 16, 0.16);
  --line-soft: rgba(11, 13, 16, 0.08);
  --silver: #aeb8c5;
  --silver-light: #e8edf3;
  --cobalt: #123fb8;
  --cobalt-deep: #082b8f;
  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-editorial: "Newsreader", Georgia, serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 4.5rem;
}

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

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

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 0.125rem solid var(--cobalt);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--cobalt);
  color: white;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(241, 242, 244, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-self: start;
  color: var(--ink);
  font-size: 1.25rem;
  font-variation-settings: "wdth" 78;
  font-weight: 760;
  letter-spacing: -0.11em;
  line-height: 1;
}

.prototype-label,
.site-nav,
.header-cta,
.hero__meta,
.section-label,
.scroll-cue,
.products__rail,
.product-panel__topline {
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.prototype-label,
.section-label {
  margin: 0;
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 2.8vw, 2.75rem);
  justify-self: center;
  margin: 0 clamp(2rem, 6vw, 6rem);
}

.site-nav a,
.header-cta {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.site-nav a::after,
.header-cta::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.intro-sequence {
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) var(--gutter) 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.9), transparent 29rem),
    var(--paper);
}

.page-grid {
  position: absolute;
  inset: var(--header-height) var(--gutter) 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 25%;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 83%, transparent);
}

.hero__meta {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  width: min(34rem, 44vw);
  color: var(--ink-muted);
}

.hero-wordmark-stage {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 100svh;
  margin-bottom: -100svh;
  overflow: hidden;
  pointer-events: none;
}

.hero-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90.43vw;
  max-width: none;
  height: auto;
  overflow: visible;
  transform: translate3d(-50%, -50%, 0);
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.hero-wordmark text {
  fill: transparent;
  stroke: var(--ink);
  stroke-width: 1px;
  paint-order: stroke;
  vector-effect: non-scaling-stroke;
  font-family: var(--font-display);
  font-size: 460px;
  font-variation-settings: "wdth" 78;
  font-weight: 760;
  text-anchor: middle;
  dominant-baseline: central;
}

.hero-wordmark__reference {
  opacity: 0;
  letter-spacing: -0.11em;
}

.gradient-oval {
  overflow: hidden;
  border: clamp(0.75rem, 1.1vw, 1.1rem) solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(105deg, rgba(108, 145, 243, 0.42), rgba(255, 255, 255, 0.76) 47%, rgba(190, 201, 218, 0.44)) padding-box,
    conic-gradient(from 26deg, rgba(255, 255, 255, 0.88), rgba(23, 73, 210, 0.74), rgba(255, 255, 255, 0.32), rgba(143, 157, 181, 0.72), rgba(255, 255, 255, 0.88)) border-box;
  box-shadow:
    inset 0 0 2rem rgba(255, 255, 255, 0.74),
    0 1.35rem 3.4rem rgba(39, 55, 90, 0.1);
}

.gradient-oval::after {
  position: absolute;
  inset: 9% 5%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.74) 47%, rgba(23, 73, 210, 0.1));
  opacity: 0.62;
}

.hero__content {
  position: absolute;
  z-index: 6;
  right: var(--gutter);
  bottom: clamp(4.75rem, 7vh, 6.5rem);
  left: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(16rem, 3fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.hero h1,
.approach h2,
.draft-end h2 {
  margin: 0;
  font-variation-settings: "wdth" 86;
  font-weight: 610;
  letter-spacing: -0.07em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8.5vw, 11rem);
  line-height: 0.82;
}

.hero h1 em,
.approach h2 em,
.draft-end h2 em {
  font-family: var(--font-editorial);
  font-weight: 350;
  letter-spacing: -0.045em;
}

.hero__aside {
  padding-bottom: 0.55rem;
}

.hero__aside > p {
  max-width: 27rem;
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  background: var(--cobalt);
  color: var(--paper);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--primary:active {
  background: var(--ink);
}

.button--inverse {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 650;
}

.text-link::after {
  bottom: 0.35rem;
  transform: scaleX(1);
  transform-origin: left;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.35);
  transform-origin: left;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 1.75rem;
  left: var(--gutter);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink-muted);
}

.approach {
  position: relative;
  display: grid;
  min-height: 82svh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
  padding: clamp(7rem, 13vw, 12rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.approach > * {
  position: relative;
  z-index: 4;
}

.approach > .section-label {
  grid-column: 1 / 3;
  align-self: start;
  padding-top: 0.75rem;
}

.approach__copy {
  grid-column: 4 / 12;
}

.approach h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.95;
}

.approach__copy > p {
  max-width: 42rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0 auto;
  color: var(--ink-muted);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.products {
  position: relative;
  min-height: 430svh;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 31% 45%, rgba(255, 255, 255, 0.85), transparent 29rem),
    var(--paper);
}

.products__stage {
  display: none;
}

.js .products__stage {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 100svh;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  grid-template-rows: minmax(0, 61.8svh) minmax(0, 38.2svh);
  overflow: hidden;
}

.products__rail {
  position: relative;
  z-index: 12;
  display: flex;
  grid-column: 1;
  grid-row: 1 / -1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  border-right: 1px solid var(--line);
  color: var(--ink-muted);
}

.products__rail > span:nth-child(2) {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.products__progress {
  position: relative;
  width: 1px;
  height: 6rem;
  overflow: hidden;
  background: var(--line);
}

.products__progress > span {
  position: absolute;
  inset: 0;
  background: var(--cobalt);
  transform: scaleY(0);
  transform-origin: top;
}

.orbit-scene {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  perspective: 1250px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.orbit-scene::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.52;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.gradient-oval--products {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(86%, 78rem);
  height: min(38vh, 23rem);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.orbit-items {
  position: absolute;
  z-index: 4;
  inset: 0;
  transform-style: preserve-3d;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 14ch);
  color: var(--ink);
  font-size: clamp(3.4rem, 6.8vw, 8.2rem);
  font-variation-settings: "wdth" 76;
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.79;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform, opacity;
}

.orbit-item:nth-child(3),
.orbit-item:nth-child(4),
.orbit-item:nth-child(5) {
  font-size: clamp(2.7rem, 5.4vw, 6.6rem);
}

.product-panel {
  position: relative;
  z-index: 10;
  display: flex;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem var(--gutter) 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(241, 242, 244, 0.92);
}

.product-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, white, rgba(23, 73, 210, 0.45));
}

.product-panel__topline {
  display: flex;
  justify-content: space-between;
  color: var(--ink-muted);
}

.product-details {
  position: relative;
  flex: 1;
}

.product-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(15rem, 1.15fr) minmax(15rem, 0.9fr) minmax(18rem, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 clamp(2rem, 4vw, 5rem);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.6rem);
  transition:
    opacity 200ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-detail.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-detail__name {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0 0 0.7rem;
  color: var(--cobalt-deep);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 3.5vw, 4.4rem);
  font-weight: 390;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.product-detail > p:not(.product-detail__name) {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 29rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(0.96rem, 1.14vw, 1.1rem);
}

.product-detail ul {
  grid-column: 3;
  grid-row: 1 / 3;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-detail li {
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.product-panel__link {
  align-self: flex-start;
}

.products-static {
  padding: 7rem var(--gutter);
}

.js .products-static {
  display: none;
}

.products-static ol {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.products-static li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.draft-end {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 10rem) var(--gutter) 3rem;
  background: var(--ink);
  color: var(--paper);
}

.draft-end .section-label {
  position: relative;
  z-index: 2;
  color: rgba(241, 242, 244, 0.56);
}

.draft-end__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vh, 4rem);
}

.draft-end__intro {
  grid-column: 1 / 6;
}

.draft-end h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.9;
}

.project-form {
  display: grid;
  grid-column: 7 / -1;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 52rem;
  justify-self: end;
}

.project-form__identity {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.project-form__field {
  display: grid;
  gap: 0.8rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(241, 242, 244, 0.42);
  transition: border-color 180ms ease;
}

.project-form__field:focus-within {
  border-color: var(--paper);
}

.project-form__field--message {
  grid-column: 1 / -1;
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}

.project-form label {
  color: rgba(241, 242, 244, 0.66);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-form__field input,
.project-form__field textarea {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  caret-color: var(--paper);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.35;
}

.project-form__field input {
  min-height: 2.75rem;
}

.project-form__field textarea {
  height: 2.75rem;
  min-height: 2.75rem;
  overflow: hidden;
  resize: none;
}

.project-form input:-webkit-autofill,
.project-form input:-webkit-autofill:hover,
.project-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  box-shadow: 0 0 0 1000px var(--ink) inset;
  transition: background-color 9999s ease-out;
}

.project-form__footer {
  display: grid;
  grid-row: 3;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-self: end;
  align-items: center;
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}

.project-form__website {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.project-form__status {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  max-width: 20rem;
  margin: 0;
  text-align: left;
  color: rgba(241, 242, 244, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

.project-form__status:empty {
  display: none;
}

.draft-end__content .button {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  min-width: 8.5rem;
  cursor: pointer;
}

.draft-end__content .button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
}

.draft-end__content .button:focus-visible {
  outline-color: var(--paper);
}

.draft-end__mark {
  position: absolute;
  z-index: 0;
  right: -0.06em;
  bottom: -0.2em;
  pointer-events: none;
  user-select: none;
  color: transparent;
  font-size: clamp(11rem, 33vw, 36rem);
  font-variation-settings: "wdth" 78;
  font-weight: 760;
  letter-spacing: -0.11em;
  line-height: 0.6;
  -webkit-text-stroke: 1px rgba(241, 242, 244, 0.28);
  white-space: nowrap;
}

.js .hero__meta,
.js .hero-wordmark-stage,
.js .hero__content,
.js .scroll-cue {
  opacity: 0;
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero__meta,
.js .hero__content,
.js .scroll-cue {
  transform: translateY(1rem);
}

.js .hero-wordmark-stage {
  transform: translateY(1rem);
}

.js.is-ready .hero__meta,
.js.is-ready .hero__content,
.js.is-ready .scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

.js.is-ready .hero-wordmark-stage {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

.js.is-ready .hero__content {
  transition-delay: 120ms;
}

.js.is-ready .scroll-cue {
  transition-delay: 200ms;
}

@media (max-width: 1180px) {
  .js .products__stage {
    grid-template-columns: 3.75rem minmax(0, 1fr);
  }

  .orbit-item {
    font-size: clamp(3.1rem, 6.4vw, 7rem);
  }

  .orbit-item:nth-child(3),
  .orbit-item:nth-child(4),
  .orbit-item:nth-child(5) {
    font-size: clamp(2.35rem, 5vw, 5.5rem);
  }
}

@media (max-width: 1023px) {
  .prototype-label {
    display: none;
  }

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

  .site-nav {
    margin: 0;
  }

  .hero__content {
    grid-template-columns: minmax(0, 7fr) minmax(15rem, 4fr);
    gap: 2rem;
  }

  .js .products__stage {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .product-panel {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }

  .product-detail {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(17rem, 1.15fr);
    grid-template-rows: auto 1fr;
    column-gap: 2.5rem;
  }

  .product-detail > p:not(.product-detail__name) {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 1rem;
  }

  .product-detail ul {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 4rem;
  }

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

  .prototype-label,
  .site-nav {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2rem;
  }

  .page-grid {
    inset: var(--header-height) var(--gutter) 0;
    background-size: 25% 100%, 100% 20%;
  }

  .hero__meta {
    width: 100%;
  }

  .hero__meta span:last-child {
    display: none;
  }

  .hero__content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.3rem);
    line-height: 0.84;
  }

  .hero__aside {
    margin-top: calc(clamp(7rem, 30svh, 15rem) + 4rem);
  }

  .hero__aside > p {
    margin-bottom: 1.5rem;
  }

  .scroll-cue {
    display: none;
  }

  .approach {
    display: block;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .approach__copy {
    margin-top: 3rem;
  }

  .approach h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .approach__copy > p {
    margin-top: 2rem;
  }

  .products,
  .products.is-static {
    min-height: 430svh;
    padding: 0;
  }

  .js .products__stage,
  .js .products.is-static .products__stage {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 61.8svh) minmax(0, 38.2svh);
    overflow: hidden;
  }

  .products__rail,
  .product-panel__link {
    display: none;
  }

  .orbit-scene {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .orbit-item {
    word-spacing: 0.16em;
  }

  .gradient-oval--products {
    width: 132%;
    height: min(22svh, 12rem);
  }

  .product-panel {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    padding: 0.9rem var(--gutter) 1rem;
  }

  .product-panel__topline {
    flex: 0 0 auto;
  }

  .product-details {
    position: relative;
    display: block;
    min-height: 0;
    margin-top: 0.75rem;
  }

  .product-detail {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
  }

  .product-detail.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .product-detail__name {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.35rem;
  }

  .product-detail h3 {
    grid-column: 1;
    grid-row: 2;
    max-width: 13ch;
    margin-bottom: 0.65rem;
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .product-detail > p:not(.product-detail__name) {
    display: -webkit-box;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    max-width: 34ch;
    margin: 0;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-detail ul {
    display: none;
  }

  .draft-end {
    min-height: 80svh;
  }

  .draft-end__content {
    display: block;
    padding-top: 3.5rem;
  }

  .draft-end h2 {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }

  .project-form {
    display: block;
    max-width: none;
    margin-top: 4rem;
  }

  .project-form__identity {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-form__footer {
    justify-items: end;
  }
}

@media (max-width: 767px) and (max-height: 600px) {
  .hero__aside {
    margin-top: calc(clamp(7rem, 22svh, 8rem) + 3.5rem);
  }

  .product-panel {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .product-details {
    margin-top: 0.5rem;
  }

  .product-detail__name {
    margin-bottom: 0.2rem;
  }

  .product-detail h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.65rem, 9vw, 2.15rem);
  }

  .product-detail > p:not(.product-detail__name) {
    font-size: 0.84rem;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .products,
  .products.is-static {
    min-height: auto;
    padding: 7rem var(--gutter);
  }

  .js .products__stage,
  .js .products.is-static .products__stage {
    position: relative;
    top: auto;
    display: block;
    min-height: auto;
    overflow: visible;
  }

  .products__rail,
  .orbit-scene,
  .product-panel__topline,
  .product-panel__link {
    display: none;
  }

  .product-panel {
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .product-panel::before {
    display: none;
  }

  .product-detail,
  .product-detail.is-active {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
