:root {
  --paper: #f1f1eb;
  --paper-2: #e7e8e0;
  --white: #fbfbf7;
  --ink: #111512;
  --ink-2: #202620;
  --muted: #697069;
  --line: rgba(17, 21, 18, 0.17);
  --line-light: rgba(247, 248, 240, 0.22);
  --signal: #a9dc08;
  --signal-dark: #79aa00;
  --header-height: 4.7rem;
  --content: 82rem;
  --wide: 92rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.5rem;
  left: 0.75rem;
  padding: 0.72rem 1rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.container--wide {
  width: min(calc(100% - 3rem), var(--wide));
}

.container--narrow {
  width: min(calc(100% - 3rem), 54rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(17, 21, 18, 0.14);
  background: rgba(248, 248, 242, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  width: min(22rem, 42vw);
  align-items: center;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  color: #454b46;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .nav-login {
  margin-left: 0.6rem;
  padding-inline: 1.1rem;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-login:hover {
  background: var(--signal);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__lines {
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.nav-toggle__lines::before {
  transform: translateY(-0.42rem);
}

.nav-toggle__lines::after {
  transform: translateY(0.3rem);
}

.kicker {
  display: flex;
  margin: 0 0 1.25rem;
  align-items: center;
  gap: 0.7rem;
  color: rgba(248, 249, 242, 0.74);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker span {
  display: block;
  width: 2.3rem;
  height: 2px;
  background: var(--signal);
}

.kicker--dark {
  color: var(--muted);
}

.film-hero {
  --hero-progress: 0;
  position: relative;
  height: 320svh;
  background: #0c100d;
}

.film-hero__pin {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 40rem;
  overflow: hidden;
  background: #111512;
  isolation: isolate;
}

.film-hero__media,
.film-hero__grade,
.film-hero__grain {
  position: absolute;
  inset: 0;
}

.film-hero__media {
  z-index: -4;
  background: #111512;
}

.film-hero__media video,
.film-hero__mobile-frame,
.film-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.film-hero__mobile-frame {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: none;
}

.film-hero__media video {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
}

.film-hero[data-video-ready] .film-hero__media video {
  opacity: 1;
}

.film-hero[data-video-ready] .film-hero__fallback {
  opacity: 0;
}

.film-hero__fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: opacity 400ms ease;
}

.film-hero__grade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 11, 8, 0.96) 0%, rgba(9, 13, 10, 0.86) 26%, rgba(9, 13, 10, 0.37) 51%, rgba(7, 10, 8, 0.12) 77%, rgba(7, 10, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 8, 6, 0.74) 0%, transparent 44%, rgba(5, 8, 6, 0.2) 100%);
}

.film-hero__grain {
  z-index: -2;
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.93' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.film-hero__content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.film-hero__copy {
  position: relative;
  z-index: 2;
  width: min(62rem, 76vw);
  padding-bottom: 2rem;
  color: var(--white);
  opacity: clamp(0.22, calc(1 - (var(--hero-progress) * 1.15)), 1);
  transform: translate3d(0, calc(var(--hero-progress) * -2rem), 0);
  will-change: opacity, transform;
}

.film-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #f5f5ee;
  font-size: clamp(3.4rem, 7.1vw, 8.7rem);
  font-weight: 690;
  letter-spacing: -0.072em;
  line-height: 0.87;
  text-shadow: 0 0.12em 0.8em rgba(0, 0, 0, 0.3);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

.film-hero h1 em,
.products__head h2 em,
.route__statement h2 em,
.closing h2 em {
  color: var(--signal);
  font-style: normal;
  font-weight: inherit;
}

.film-hero__lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(248, 249, 242, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.film-hero__actions,
.closing__actions {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.87rem;
  font-weight: 830;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--signal {
  min-width: 13.7rem;
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.24);
}

.button--signal:hover {
  background: #bcf10c;
}

.film-hero__audience {
  max-width: 13rem;
  color: rgba(248, 249, 242, 0.62);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.5;
}

.film-hero__telemetry {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: clamp(5.5rem, 12vh, 9rem);
  width: min(27rem, 33vw);
  color: var(--white);
}

.film-hero__telemetry-head {
  display: flex;
  margin-bottom: 0.8rem;
  justify-content: space-between;
  color: rgba(248, 249, 242, 0.58);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-hero__track {
  height: 2px;
  overflow: hidden;
  background: var(--line-light);
}

.film-hero__track span {
  display: block;
  width: calc(var(--hero-progress) * 100%);
  height: 100%;
  background: var(--signal);
}

.film-hero__telemetry ol {
  display: flex;
  margin: 0.85rem 0 0;
  padding: 0;
  justify-content: space-between;
  gap: 0.75rem;
  list-style: none;
}

.film-hero__telemetry li {
  color: rgba(248, 249, 242, 0.4);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.film-hero__telemetry li[data-active] {
  color: var(--signal);
}

.film-hero__caption {
  position: absolute;
  right: auto;
  bottom: 2.25rem;
  left: 0;
  display: grid;
  padding-left: 1.1rem;
  color: rgba(248, 249, 242, 0.68);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.film-hero__caption small {
  color: rgba(248, 249, 242, 0.34);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.film-hero__pulse {
  position: absolute;
  top: 0.32rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(169, 220, 8, 0.45);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  60%, 100% { box-shadow: 0 0 0 0.7rem rgba(169, 220, 8, 0); }
}

.value-rail {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--ink);
  color: var(--white);
}

.value-rail .container {
  display: grid;
  grid-template-columns: minmax(19rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.value-rail__intro span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.18em;
}

.value-rail__intro p {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.value-rail__intro strong {
  color: var(--signal);
  font-weight: inherit;
}

.value-rail__facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.value-rail__facts div {
  min-height: 9rem;
  padding: 1.2rem 1.2rem 0 0;
  border-right: 1px solid var(--line-light);
}

.value-rail__facts div + div {
  padding-left: 1.2rem;
}

.value-rail__facts div:last-child {
  border-right: 0;
}

.value-rail__facts dt {
  margin-bottom: 2.2rem;
  color: rgba(248, 249, 242, 0.46);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-rail__facts dd {
  margin: 0;
  color: rgba(248, 249, 242, 0.88);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.products {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: var(--paper);
}

.products__head {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.products__head h2,
.route__statement h2,
.closing h2,
.legal-hero h1,
.error-page h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.3vw, 6.4rem);
  font-weight: 680;
  letter-spacing: -0.066em;
  line-height: 0.92;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

.products__head > p {
  max-width: 28rem;
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.product-reel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(17, 21, 18, 0.22);
}

.product-frame {
  position: relative;
  display: grid;
  min-height: 45rem;
  background: var(--paper);
  grid-template-rows: minmax(22rem, 1fr) auto;
}

.product-frame--wide {
  min-height: 54rem;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.55fr) minmax(23rem, 0.45fr);
  grid-template-rows: none;
}

.product-frame__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #c9cbc4;
}

.product-frame__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 8, 0.28), transparent 48%);
  content: "";
}

.product-frame__media img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) contrast(1.03);
  object-fit: cover;
  transition: filter 700ms ease, transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-frame__media--object {
  background: #85837f;
}

.product-frame__media--object img {
  object-fit: contain;
}

.product-frame:hover .product-frame__media--object img {
  transform: scale(1.012);
}

.product-frame:hover .product-frame__media img {
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.025);
}

.product-frame__number {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(248, 249, 242, 0.46);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 790;
  place-items: center;
}

.product-frame__copy {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--white);
}

.product-frame__type {
  margin: 0 0 0.7rem;
  color: var(--signal-dark);
  font-size: 0.67rem;
  font-weight: 840;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-frame h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 0.96;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

.product-frame__copy > p:not(.product-frame__type) {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
}

.product-frame ul {
  margin: 2.2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-frame li {
  color: #3e443f;
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.7;
}

.route {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: #121713;
  color: var(--white);
}

.route .container {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(26rem, 1.18fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.route__statement {
  position: sticky;
  top: calc(var(--header-height) + 4rem);
  align-self: start;
}

.route__statement h2 {
  max-width: 9ch;
  color: var(--white);
}

.route__statement > p:not(.kicker) {
  max-width: 33rem;
  margin: 2rem 0 0;
  color: rgba(248, 249, 242, 0.62);
}

.text-link {
  display: inline-flex;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--signal);
  gap: 2.5rem;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 810;
  text-decoration: none;
}

.route__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.route__steps li {
  display: grid;
  min-height: 8.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 4rem 1fr;
  align-items: center;
  transition: background-color 200ms ease, padding 200ms ease;
}

.route__steps li:hover {
  padding-inline: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.route__steps li > span {
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.15em;
}

.route__steps div {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(10rem, 0.8fr);
  gap: 2rem;
  align-items: baseline;
}

.route__steps strong {
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.route__steps small {
  color: rgba(248, 249, 242, 0.48);
  font-size: 0.76rem;
}

.closing {
  position: relative;
  display: grid;
  min-height: min(58rem, 88svh);
  overflow: hidden;
  background: #111512;
  color: var(--white);
  isolation: isolate;
  place-items: center;
}

.closing__image,
.closing__grade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.closing__image img {
  width: 100%;
  height: 100%;
  filter: saturate(0.55) contrast(1.08);
  object-fit: cover;
  object-position: center;
}

.closing__grade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 10, 7, 0.94), rgba(6, 10, 7, 0.67) 46%, rgba(6, 10, 7, 0.18));
}

.closing__content {
  padding-block: 6rem;
}

.closing h2 {
  max-width: 9ch;
}

.closing__content > p:not(.kicker) {
  max-width: 37rem;
  margin: 1.7rem 0 0;
  color: rgba(248, 249, 242, 0.72);
  font-size: 1.05rem;
}

.text-link--light {
  margin-top: 0;
  color: rgba(248, 249, 242, 0.8);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 0.32rem solid var(--signal);
  background: #0d110e;
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.5fr) repeat(2, minmax(10rem, 0.5fr));
  gap: 4rem;
}

.site-footer__logo {
  width: min(100%, 19rem);
  padding: 0.5rem 0.65rem;
  background: var(--paper);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(248, 249, 242, 0.57);
  font-size: 0.78rem;
}

.site-footer h2 {
  margin: 0 0 1.2rem;
  color: rgba(248, 249, 242, 0.88);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.7rem;
}

.site-footer__bottom {
  display: flex;
  margin-top: 4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 249, 242, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-hero {
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.legal-hero h1 {
  max-width: 12ch;
}

.legal-hero > div > p {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-content {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.legal-card {
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.legal-card:first-child {
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.error-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 4rem 1.5rem;
}

.error-page__inner {
  width: min(100%, 48rem);
  text-align: center;
}

.error-page__code {
  display: block;
  margin-bottom: 1rem;
  color: var(--signal-dark);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.2em;
}

.error-page p {
  color: var(--muted);
}

.error-page__actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.js [data-reveal][data-visible] {
  opacity: 1;
  transform: none;
}

@media (max-width: 68rem) {
  .film-hero__telemetry {
    width: min(24rem, 38vw);
  }

  .value-rail .container,
  .products__head,
  .route .container {
    gap: 4rem;
  }

  .product-frame--wide {
    min-height: 46rem;
    grid-template-columns: 1.25fr 0.75fr;
  }

  .route__steps div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.25rem;
  }

  .container,
  .container--wide,
  .container--narrow {
    width: min(calc(100% - 2rem), var(--wide));
  }

  .brand-link {
    width: min(17rem, 68vw);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 0.7rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-login {
    width: 100%;
    margin-left: 0;
  }

  .film-hero {
    height: 270svh;
  }

  .film-hero__pin {
    min-height: 36rem;
  }

  .film-hero__media video,
  .film-hero__fallback {
    object-position: 59% center;
  }

  .film-hero__media video,
  .film-hero__fallback {
    display: none;
  }

  .film-hero__mobile-frame {
    display: block;
    object-position: center center;
  }

  .film-hero__grade {
    background:
      linear-gradient(90deg, rgba(7, 11, 8, 0.92), rgba(7, 11, 8, 0.43) 85%),
      linear-gradient(0deg, rgba(5, 8, 6, 0.86), transparent 64%);
  }

  .film-hero__copy {
    width: 100%;
  }

  .film-hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 10.8vw, 5.3rem);
  }

  .film-hero__telemetry {
    right: 0;
    bottom: 5.5rem;
    width: min(25rem, 100%);
  }

  .film-hero__caption {
    bottom: 1.5rem;
  }

  .value-rail .container,
  .products__head,
  .route .container {
    grid-template-columns: 1fr;
  }

  .value-rail__facts {
    grid-template-columns: 1fr;
  }

  .value-rail__facts div,
  .value-rail__facts div + div {
    min-height: auto;
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .value-rail__facts dt {
    margin-bottom: 0.5rem;
  }

  .product-frame--wide {
    min-height: 47rem;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(26rem, 1fr) auto;
  }

  .route__statement {
    position: relative;
    top: auto;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  .film-hero {
    height: 240svh;
  }

  .film-hero__pin {
    min-height: 34rem;
  }

  .film-hero__content {
    align-items: flex-start;
    padding-top: clamp(3rem, 8vh, 5rem);
  }

  .film-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .film-hero__lead {
    margin-top: 1.3rem;
    font-size: 0.94rem;
  }

  .film-hero__actions,
  .closing__actions {
    display: grid;
    justify-items: start;
  }

  .film-hero__audience {
    max-width: none;
  }

  .film-hero__telemetry ol {
    gap: 0.4rem;
  }

  .film-hero__telemetry li {
    font-size: 0.5rem;
  }

  .product-reel {
    grid-template-columns: 1fr;
  }

  .product-frame--wide {
    grid-column: auto;
  }

  .product-frame {
    min-height: 40rem;
  }

  .route__steps li {
    min-height: 7rem;
    grid-template-columns: 3rem 1fr;
  }

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

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
  }
}

@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;
  }

  .film-hero {
    --hero-progress: 0;
    height: auto;
  }

  .film-hero__pin {
    position: relative;
    top: auto;
    min-height: min(52rem, calc(100svh - var(--header-height)));
  }

  .film-hero__copy {
    opacity: 1;
    transform: none;
  }

  .film-hero__media video {
    display: none;
  }

  .film-hero__fallback,
  .film-hero__mobile-frame {
    opacity: 1 !important;
  }

  .film-hero__caption,
  .film-hero__telemetry {
    display: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
