@font-face {
  font-family: "Geist";
  src: url("../../../landing-page/assets/fonts/Geist-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../../../landing-page/assets/fonts/InstrumentSerif-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --black: #050505;
  --charcoal: #181818;
  --coral: #df6c4f;
  --white: #ffffff;
  --line-dark: rgba(5, 5, 5, 0.58);
  --line-light: rgba(255, 255, 255, 0.25);
  --page-gutter: clamp(20px, 3.2vw, 52px);
  --header-height: 76px;
  --ease-out: cubic-bezier(0.2, 0.72, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--coral) var(--black);
  scrollbar-width: thin;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--coral);
  color: var(--black);
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  overflow: visible;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  transition: transform 180ms ease;
}

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

.page-gutter {
  width: 100%;
  padding-inline: var(--page-gutter);
}

.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--coral);
  color: var(--black);
  transition: transform 900ms var(--ease-expo);
}

.loader::after {
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid rgba(5, 5, 5, 0.35);
  content: "";
}

.loader__brand {
  position: relative;
  z-index: 1;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.loader__track {
  position: absolute;
  right: var(--page-gutter);
  bottom: 36px;
  left: var(--page-gutter);
  height: 3px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.16);
}

.loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--black);
  animation: loader-progress 1050ms var(--ease-expo) forwards;
}

body.is-ready .loader {
  pointer-events: none;
  transform: translateY(-101%);
}

@keyframes loader-progress {
  to {
    transform: scaleX(1);
  }
}

.cursor {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-80px, -80px, 0);
  border: 1px solid var(--coral);
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: width 220ms var(--ease-out), height 220ms var(--ease-out), opacity 180ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 58px;
  height: 58px;
}

.cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
}

.site-header {
  --header-color: var(--white);
  --header-bg: rgba(5, 5, 5, 0.84);
  --header-rule: rgba(255, 255, 255, 0.18);
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid var(--header-rule);
  background: var(--header-bg);
  color: var(--header-color);
  backdrop-filter: blur(14px);
  transition: color 420ms var(--ease-out), background-color 420ms var(--ease-out),
    border-color 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.site-header[data-tone="coral"] {
  --header-color: var(--black);
  --header-bg: rgba(223, 108, 79, 0.93);
  --header-rule: rgba(5, 5, 5, 0.26);
}

.site-header[data-tone="light"] {
  --header-color: var(--black);
  --header-bg: rgba(255, 255, 255, 0.93);
  --header-rule: rgba(5, 5, 5, 0.2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 25px;
  height: 25px;
  color: var(--coral);
}

.brand__mark path,
.footer__brand path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.site-header[data-tone="coral"] .brand__mark,
.site-header[data-tone="light"] .brand__mark {
  color: var(--black);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 54px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  padding-block: 7px;
  font-size: 14px;
  font-weight: 450;
}

.desktop-nav a::after,
.header-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 340ms var(--ease-out);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--coral);
}

.site-header[data-tone="coral"] .header-cta,
.site-header[data-tone="light"] .header-cta {
  color: var(--black);
}

.header-cta svg,
.text-link svg,
.button svg,
.workspace__link svg,
.closing__cta svg,
.footer nav svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 280ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height) + 48px) var(--page-gutter) 36px;
  transform: translateY(-102%);
  background: var(--black);
  color: var(--white);
  visibility: hidden;
  transition: transform 560ms var(--ease-expo), visibility 560ms;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  padding-block: 11px;
  border-bottom: 1px solid var(--line-light);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 14vw, 92px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.mobile-menu nav span {
  font-family: "Geist", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mobile-menu__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--coral);
  color: var(--black);
  font-size: 15px;
  font-weight: 560;
}

.mobile-menu p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background: var(--black);
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 66px 0 0;
  clip-path: inset(0 0 100% 0);
  transform: scale(1.03);
  transition: clip-path 1200ms 620ms var(--ease-expo), transform 1600ms 620ms var(--ease-expo);
  will-change: clip-path, transform;
}

body.is-ready .hero__media {
  clip-path: inset(0);
  transform: scale(1);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.02);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(820px, 100svh);
  flex-direction: column;
  padding-top: clamp(174px, 19.5vh, 220px);
  padding-bottom: 36px;
}

.hero__title {
  width: min(64vw, 980px);
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(104px, 12.6vw, 204px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.74;
}

.hero__title span {
  display: block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 1050ms var(--ease-expo), opacity 500ms ease;
}

body.is-ready .hero__title span {
  transform: translateY(0);
  opacity: 1;
}

body.is-ready .hero__title span:nth-child(1) {
  transition-delay: 540ms;
}

body.is-ready .hero__title span:nth-child(2) {
  transition-delay: 620ms;
}

body.is-ready .hero__title span:nth-child(3) {
  transition-delay: 700ms;
}

.hero__bottom {
  display: block;
  width: min(65vw, 940px);
  margin-top: 30px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms 950ms ease, transform 900ms 950ms var(--ease-expo);
}

body.is-ready .hero__bottom {
  opacity: 1;
  transform: translateY(0);
}

.hero__bottom p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 550;
}

.button--solid {
  min-width: 214px;
  background: var(--coral);
  color: var(--black);
  transition: background-color 280ms ease, color 280ms ease, transform 280ms var(--ease-out);
}

.button--solid:hover,
.button--solid:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 9px;
  border-bottom: 1px solid var(--coral);
  font-size: 15px;
  transition: color 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--coral);
}

.scroll-cue {
  display: grid;
  gap: 9px;
  width: max-content;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  animation: cue-bob 1700ms ease-in-out infinite;
}

@keyframes cue-bob {
  50% {
    transform: translateY(6px);
  }
}

.method {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  padding: clamp(112px, 11vw, 170px) 0 clamp(76px, 8vw, 124px);
  background: var(--coral);
  color: var(--black);
}

.method__intro h2,
.details__heading h2,
.closing__main h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.method__intro h2 {
  max-width: 1300px;
  font-size: clamp(88px, 10.2vw, 174px);
  line-height: 0.75;
}

.method__intro p {
  margin: 32px 0 0;
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 23px);
  font-weight: 450;
  letter-spacing: -0.025em;
}

.method-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(56px, 7vw, 104px);
  border-bottom: 1px solid var(--line-dark);
}

.method-tabs button {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  padding: 0 12px 16px;
  border: 0;
  border-left: 1px solid rgba(5, 5, 5, 0.28);
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.method-tabs button:first-child {
  padding-left: 0;
  border-left: 0;
}

.method-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 7px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--black);
  content: "";
  transition: transform 460ms var(--ease-expo);
}

.method-tabs button:hover::after,
.method-tabs button.is-active::after {
  transform: scaleX(1);
}

.method-tabs button span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 2.12fr) minmax(280px, 0.88fr);
  min-height: 560px;
  margin-top: 32px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.workspace__preview {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
  overflow: clip;
  padding: clamp(28px, 3.2vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0a0a0a;
  background-size: 44px 44px;
}

.workspace__screen {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #101210;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.58),
    0 0 0 8px #111,
    0 0 0 9px rgba(223, 108, 79, 0.5);
  transition: opacity 220ms ease, transform 420ms var(--ease-expo);
}

.workspace__screen::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 5px solid #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.workspace__screen::after {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(223, 108, 79, 0.13);
  content: "";
  pointer-events: none;
}

.workspace__screen.is-switching {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
}

.workspace__screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.workspace__preview figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(5, 5, 5, 0.84);
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.workspace__detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 52px);
}

.workspace__number {
  color: var(--coral);
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1;
}

.workspace__detail h3 {
  margin: 18px 0 0;
  color: var(--coral);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(64px, 5.7vw, 98px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.workspace__detail p {
  margin: 34px 0 0;
  padding-block: 30px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.18;
}

.workspace__detail.is-switching > *:not(.workspace__link) {
  opacity: 0;
  transform: translateY(12px);
}

.workspace__detail > * {
  transition: opacity 220ms ease, transform 360ms var(--ease-expo);
}

.workspace__link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 22px 0 8px;
  color: var(--coral);
  font-size: 16px;
}

.workspace__link span {
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}

.workspace__link:hover span,
.workspace__link:focus-visible span {
  border-color: currentColor;
}

.details {
  position: relative;
  z-index: 4;
  padding: clamp(112px, 10vw, 164px) 0 clamp(96px, 9vw, 148px);
  background: var(--white);
  color: var(--black);
}

.details__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 48px;
}

.details__heading h2 {
  font-size: clamp(88px, 10vw, 170px);
  line-height: 0.76;
}

.details__heading p {
  max-width: 490px;
  margin: 16px 0 0;
  font-size: clamp(24px, 2.3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.spec-sheet {
  position: relative;
  margin-top: clamp(64px, 8vw, 124px);
  border-top: 1px solid var(--line-dark);
}

.spec-row {
  position: relative;
  display: grid;
  grid-template-columns: 20% 8% 1fr;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(16px, 1.35vw, 22px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.spec-row span,
.spec-row i,
.spec-row strong {
  position: relative;
  z-index: 1;
}

.spec-row i {
  font-style: normal;
}

.spec-row strong {
  font-weight: 440;
  text-transform: none;
}

.spec-row::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: rgba(223, 108, 79, 0.16);
  content: "";
  transition: transform 360ms var(--ease-expo);
}

.spec-row:hover::before,
.spec-row:focus-visible::before,
.spec-row.is-current::before {
  transform: scaleY(1);
}

.spec-dial {
  position: absolute;
  z-index: 3;
  top: var(--dial-top, 178px);
  right: 18%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 0 0 8px var(--white);
  pointer-events: none;
  transition: top 560ms var(--ease-expo), transform 280ms var(--ease-out);
}

.spec-dial svg {
  width: 26px;
  height: 26px;
}

.spec-dial path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.closing {
  position: relative;
  z-index: 5;
  min-height: 78svh;
  padding: clamp(80px, 8vw, 124px) 0 30px;
  background: var(--black);
  color: var(--white);
}

.closing__main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 80px;
  min-height: 48svh;
}

.closing__main h2 {
  max-width: 920px;
  font-size: clamp(72px, 7.6vw, 132px);
  line-height: 0.84;
}

.closing__cta {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 32px;
  border: 1px solid var(--coral);
  color: var(--coral);
  font-size: clamp(20px, 1.8vw, 30px);
  transition: background-color 300ms ease, color 300ms ease;
}

.closing__cta svg {
  width: 35px;
  height: 35px;
}

.closing__cta:hover,
.closing__cta:focus-visible {
  background: var(--coral);
  color: var(--black);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: clamp(60px, 7vw, 110px);
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.footer__brand svg {
  width: 29px;
  height: 29px;
  color: var(--coral);
}

.footer nav {
  display: flex;
  align-items: center;
}

.footer nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 24px;
  border-left: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 220ms ease;
}

.footer nav a:first-child {
  border-left: 0;
}

.footer nav a:hover,
.footer nav a:focus-visible {
  color: var(--coral);
}

.footer nav svg {
  width: 16px;
  height: 16px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(58px);
  transition: opacity 760ms ease, transform 1000ms var(--ease-expo);
}

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

@media (max-width: 1120px) {
  .hero__title {
    width: 64vw;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 62vw;
  }

  .workspace {
    grid-template-columns: minmax(0, 1.7fr) minmax(270px, 0.75fr);
  }

  .workspace__detail p {
    font-size: 25px;
  }

  .closing__main {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .cursor {
    display: none;
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 920px;
  }

  .hero__content {
    min-height: 920px;
    padding-top: 126px;
  }

  .hero__media {
    top: 280px;
    right: -16%;
    bottom: 38px;
    left: -22%;
  }

  .hero__media img {
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__title {
    width: 100%;
    font-size: clamp(74px, 15.7vw, 116px);
  }

  .hero__bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
  }

  .scroll-cue {
    z-index: 2;
  }

  .method__intro h2,
  .details__heading h2 {
    font-size: clamp(74px, 16.5vw, 126px);
  }

  .method-tabs {
    display: flex;
    width: calc(100% + var(--page-gutter) * 2);
    margin-left: calc(var(--page-gutter) * -1);
    padding-inline: var(--page-gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .method-tabs::-webkit-scrollbar {
    display: none;
  }

  .method-tabs button {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .workspace {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .workspace__preview {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .workspace__screen {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .workspace__detail {
    min-height: 430px;
  }

  .details__heading,
  .closing__main {
    grid-template-columns: 1fr;
  }

  .details__heading p {
    max-width: 540px;
    margin-top: 18px;
  }

  .closing__main {
    align-content: center;
    min-height: 58svh;
  }

  .closing__cta {
    width: min(100%, 420px);
  }

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

  .footer nav {
    flex-wrap: wrap;
  }

  .footer nav a:first-child {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .loader__brand {
    font-size: 72px;
  }

  .hero {
    min-height: 880px;
  }

  .hero__content {
    min-height: 880px;
    padding-top: 116px;
  }

  .hero__title {
    font-size: clamp(65px, 20vw, 92px);
    line-height: 0.82;
  }

  .hero__bottom {
    gap: 18px;
    margin-top: 26px;
  }

  .hero__bottom p {
    max-width: 280px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button--solid {
    min-width: 220px;
  }

  .hero__media {
    top: 340px;
    right: -30%;
    bottom: 20px;
    left: -46%;
  }

  .method {
    padding-top: 96px;
  }

  .method__intro h2,
  .details__heading h2 {
    font-size: clamp(70px, 21vw, 98px);
    line-height: 0.78;
  }

  .method__intro p {
    max-width: 310px;
    font-size: 16px;
  }

  .method-tabs {
    margin-top: 52px;
  }

  .method-tabs button {
    min-width: 130px;
  }

  .workspace {
    margin-top: 24px;
  }

  .workspace__screen {
    aspect-ratio: 4 / 3;
  }

  .workspace__detail {
    min-height: 410px;
    padding: 26px 22px;
  }

  .workspace__detail h3 {
    font-size: 70px;
  }

  .workspace__detail p {
    margin-top: 26px;
    padding-block: 24px;
    font-size: 25px;
  }

  .details {
    padding-top: 96px;
  }

  .details__heading {
    gap: 20px;
  }

  .details__heading p {
    font-size: 23px;
  }

  .spec-sheet {
    margin-top: 62px;
  }

  .spec-row {
    grid-template-columns: 29% 8% 1fr;
    min-height: 68px;
    font-size: 13px;
  }

  .spec-row strong {
    font-size: 15px;
  }

  .spec-dial {
    right: 10%;
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 5px var(--white);
  }

  .closing {
    min-height: 700px;
    padding-top: 84px;
  }

  .closing__main {
    min-height: 430px;
    gap: 44px;
  }

  .closing__main h2 {
    font-size: clamp(62px, 17vw, 84px);
  }

  .closing__cta {
    min-height: 72px;
    padding: 18px 22px;
    font-size: 20px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer nav a,
  .footer nav a:first-child {
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

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

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

  .loader {
    display: none;
  }

  .cursor {
    display: none;
  }

  .hero__media,
  .hero__title span,
  .hero__bottom,
  .js .reveal {
    clip-path: none;
    opacity: 1;
    transform: none;
  }

  .hero__media img {
    transform: none !important;
  }
}
