/* Loomotion landing.
 *
 * The brand rule holds here as everywhere (docs/hld/005-identite.md): Loomotion has NO
 * accent colour. Its identity is a warm neutral axis, hue 80 in OKLCh, between the ink
 * #13100D and the paper #F2EEE9. Every chromatic pixel on this page belongs to a client
 * film. The client brings the colour, we bring the room.
 */

:root {
  --ink: #13100d;
  --ink-2: #1b1814;
  --ink-3: #26221d;
  --ink-4: #34302a;
  --paper: #f2eee9;
  --paper-2: #e8e3dc;
  --paper-hi: #fffbf6;
  --mute-on-ink: #9a938a;
  --mute-on-paper: #6b645c;
  --line-on-ink: rgba(242, 238, 233, 0.13);
  --line-on-paper: rgba(19, 16, 13, 0.13);

  /* The one flash colour of the agency site. It lives on fills and on ink, never as text
     on paper, where its contrast would fall under 1.3:1. Change it here and only here. */
  --flash: #d4ff3a;
  --flash-deep: #c2f01f;

  --font: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --gutter: clamp(16px, 4vw, 56px);
  --radius-l: 20px;
  --radius-xl: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  color-scheme: dark;
}

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

html {
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  font-variation-settings: 'wdth' 100;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

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

.wrap {
  width: 100%;
  max-width: 1520px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------------------------------------------ type */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 112;
  color: var(--mute);
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flash);
  box-shadow: 0 0 0 1px rgba(19, 16, 13, 0.18);
}

.flash {
  font-style: normal;
  color: var(--flash);
}

/* On paper the flash never carries text: it is a marker stroke that draws under the words. */
.mark {
  background: linear-gradient(var(--flash), var(--flash)) no-repeat 0 86% / 0% 0.42em;
  transition: background-size 1.1s var(--ease-out) 0.5s;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.is-in .mark {
  background-size: 100% 0.42em;
}

[data-theme='ink'] {
  --mute: var(--mute-on-ink);
  --line: var(--line-on-ink);
  background: var(--ink);
  color: var(--paper);
}

[data-theme='paper'] {
  --mute: var(--mute-on-paper);
  --line: var(--line-on-paper);
  background: var(--paper);
  color: var(--ink);
}

.title-xxl,
.title-xl,
.title-l,
.hero-title {
  margin: 0;
  font-weight: 620;
  font-variation-settings: 'wdth' 86;
  text-wrap: balance;
}

.title-xxl {
  font-size: clamp(52px, 9.6vw, 176px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.title-xl {
  font-size: clamp(40px, 6.2vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  max-width: 16ch;
}

.title-l {
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* SplitText masks. */
.split-line {
  overflow: clip;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

/* ------------------------------------------------------------------ loader */

/* The first seconds of the loader run in CSS alone, from the moment the HTML is parsed:
   the loop fills and the number climbs to 90 while the scripts are still downloading.
   main.js then reads where CSS has got to and carries on from there, on real progress.
   Both animations share one duration so the number and the loop never disagree, and
   that duration is 90 % of the MINIMUM of main.js: CSS reaches 90 exactly when the
   script's own pace would. */
@property --n {
  syntax: '<integer>';
  inherits: false;
  initial-value: 0;
}

@keyframes loader-fill {
  to {
    stroke-dashoffset: 0.1;
  }
}

@keyframes loader-count {
  to {
    --n: 90;
  }
}

.loader {
  --loader-lead: 1.35s;
  position: fixed;
  inset: 0;
  z-index: 100;
  color: var(--paper);
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}

/* Same viewBox and stroke as the nav wordmark: at the end of the flight the two are the
   same drawing at the same size, so the hand-over is invisible. */
.loader-mark {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(78vw, 880px);
  height: auto;
  overflow: hidden;
  will-change: transform;
  /* The loop alone first, larger and centred: it sits at 21.27 % of the word's width
     and at mid-height, so the word is pushed right by the gap to the centre, then scaled
     around the loop itself. main.js measures the same thing and keeps these values. */
  transform-origin: 21.27% 50%;
  transform: translate(-50%, -50%) translateX(calc(min(78vw, 880px) * 0.2873)) scale(1.7);
}

.loader-mark path {
  fill: none;
  stroke-width: 31;
  stroke-linejoin: miter;
}

.loader-track {
  stroke: var(--paper);
  opacity: 0.12;
}

.loader-oo {
  stroke: var(--flash);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: loader-fill var(--loader-lead) linear forwards;
}

.loader-count span {
  counter-reset: n var(--n);
  animation: loader-count var(--loader-lead) linear forwards;
}

.loader-count span::after {
  content: counter(n);
}

.loader-letter {
  stroke: var(--paper);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* An undrawn letter still leaks a sliver of its miter joins: hide it until it draws. */
  visibility: hidden;
}

.loader-count {
  position: absolute;
  right: var(--gutter);
  bottom: var(--gutter);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.04em;
  font-variation-settings: 'wdth' 70;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ cursor */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--flash);
  box-shadow: 0 0 0 1px rgba(19, 16, 13, 0.35);
  pointer-events: none;
  display: grid;
  place-items: center;
  transition:
    width 0.45s var(--ease-out),
    height 0.45s var(--ease-out),
    margin 0.45s var(--ease-out),
    background-color 0.3s;
}

.cursor.has-label {
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  box-shadow: none;
}

.cursor-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.3s,
    transform 0.45s var(--ease-out);
}

.cursor.has-label .cursor-label {
  opacity: 1;
  transform: none;
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* ------------------------------------------------------------------ nav */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding-inline: var(--gutter);
  color: var(--paper);
  transition:
    color 0.5s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.nav.is-paper {
  color: var(--ink);
}

.nav.is-hidden {
  transform: translateY(-110%);
}

.nav-logo {
  display: block;
}

.wordmark {
  height: 17px;
  width: auto;
  overflow: hidden;
}

.wordmark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 31;
  stroke-linejoin: miter;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.72;
  transition: opacity 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .pill-small {
  background: var(--flash);
  color: var(--ink);
  transition:
    background-color 0.5s var(--ease-out),
    color 0.5s var(--ease-out);
}

.nav.is-paper .pill-small::before {
  background: var(--ink);
}

.nav.is-paper .pill-small:hover {
  color: var(--paper);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 22%, transparent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-switch a {
  padding: 5px 9px;
  border-radius: 999px;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    background-color 0.3s,
    color 0.3s;
}

.lang-switch a:hover {
  opacity: 1;
}

/* The active language reads in the opposite polarity of the bar it sits in. */
.nav .lang-switch a.is-on {
  opacity: 1;
  background: var(--paper);
  color: var(--ink);
}

.nav.is-paper .lang-switch a.is-on {
  background: var(--ink);
  color: var(--paper);
}

/* Localized fragments sit inside lists and rows: they keep the row's own style. */
.layers-list em,
.harvest em {
  font-style: normal;
}

/* ------------------------------------------------------------------ pill */

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--flash);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}

.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-out);
}

.pill:hover::before {
  transform: none;
}

.pill-small {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 0.5s var(--ease-out);
}

.pill:hover .arrow {
  transform: translateX(4px);
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: max(100svh, 720px);
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* The only texture of the brand: the dot field, 10 px pitch [packages/design/field.ts]. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(circle, rgba(242, 238, 233, 0.07) 0.65px, transparent 0.95px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 80%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(19, 16, 13, 0.82) 22%, rgba(19, 16, 13, 0) 48%),
    linear-gradient(to right, var(--ink) 0%, rgba(19, 16, 13, 0.6) 24%, rgba(19, 16, 13, 0) 46%),
    linear-gradient(to bottom, rgba(19, 16, 13, 0.7) 0%, rgba(19, 16, 13, 0) 14%);
}

.hero-inner {
  position: absolute;
  inset: auto 0 0;
  padding: 0 var(--gutter) 120px;
  max-width: 1520px;
  margin-inline: auto;
}

.hero-title {
  font-size: clamp(52px, 10.4vw, 196px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-variation-settings: 'wdth' 84;
}

.hero-title .line {
  display: block;
  overflow: clip;
  padding-bottom: 0.06em;
}

.hero-title .char {
  display: inline-block;
  font-variation-settings: 'wdth' var(--w, 84);
  will-change: transform;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: end;
  gap: 24px 64px;
  margin-top: 40px;
}

.hero-lead {
  grid-row: span 2;
  max-width: 46ch;
  margin: 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--mute-on-ink);
}


.hero-foot {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter) 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute-on-ink);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll i {
  position: relative;
  width: 1.5px;
  height: 28px;
  background: var(--line-on-ink);
  overflow: hidden;
}

.hero-scroll i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--flash);
  animation: scroll-hint 2.2s var(--ease-in-out) infinite;
}

@keyframes scroll-hint {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}

/* ------------------------------------------------------------------ reel */

.reel {
  position: relative;
  padding-top: clamp(120px, 16vw, 220px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--radius-xl));
  z-index: 2;
}

.reel-head {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(48px, 6vw, 96px);
}

.reel-stage {
  position: relative;
}

.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100svh;
  margin-inline: auto;
  overflow: hidden;
  background: var(--ink);
  clip-path: inset(0 var(--inset-x, 12%) 0 var(--inset-x, 12%) round var(--inset-r, 32px));
  will-change: clip-path;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-ui {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 calc(var(--inset-x, 0%) + clamp(20px, 3vw, 40px)) clamp(20px, 3vw, 40px);
  color: var(--paper);
  background: linear-gradient(to top, rgba(19, 16, 13, 0.55), transparent);
  padding-top: 120px;
}

.reel-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-brand {
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: 'wdth' 86;
}

.reel-source {
  font-size: 13px;
  opacity: 0.72;
}

.reel-sound {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(19, 16, 13, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 560;
}

.bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.bars i {
  width: 2px;
  height: 3px;
  background: currentColor;
  transition: height 0.3s;
}

.reel-sound[aria-pressed='true'] .bars i {
  animation: bar 0.9s var(--ease-in-out) infinite alternate;
}

.reel-sound[aria-pressed='true'] .bars i:nth-child(2) {
  animation-delay: -0.3s;
}

.reel-sound[aria-pressed='true'] .bars i:nth-child(3) {
  animation-delay: -0.6s;
}

.reel-sound[aria-pressed='true'] .bars i:nth-child(4) {
  animation-delay: -0.15s;
}

@keyframes bar {
  from {
    height: 3px;
  }
  to {
    height: 12px;
  }
}

.reel-progress {
  position: absolute;
  top: clamp(20px, 3vw, 40px);
  left: calc(var(--inset-x, 0%) + clamp(20px, 3vw, 40px));
  right: calc(var(--inset-x, 0%) + clamp(20px, 3vw, 40px));
  display: flex;
  gap: 6px;
}

.reel-progress button {
  position: relative;
  flex: 1;
  height: 16px;
}

.reel-progress button::before,
.reel-progress button i {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
  border-radius: 2px;
  background: rgba(242, 238, 233, 0.28);
}

.reel-progress button i {
  background: var(--flash);
  transform: scaleX(0);
  transform-origin: left;
}

/* ------------------------------------------------------------------ marquee */

.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 140px) 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(64px, 11vw, 200px);
  font-weight: 640;
  line-height: 1;
  letter-spacing: -0.045em;
  font-variation-settings: 'wdth' var(--wdth, 90);
}

.marquee-track .dot {
  flex: none;
  width: clamp(14px, 1.6vw, 26px);
  height: clamp(14px, 1.6vw, 26px);
  border-radius: 50%;
  background: var(--flash);
  box-shadow: 0 0 0 1.5px var(--ink);
}

/* ------------------------------------------------------------------ method */

.method {
  position: relative;
  z-index: 1;
}

.method-pin {
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 110px;
}

.method-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.method-head .eyebrow {
  margin: 0;
}

.method-case {
  margin: 0;
  font-size: 14px;
  color: var(--mute);
}

.method-case strong {
  color: var(--paper);
  font-weight: 600;
}

.method-steps {
  display: flex;
  gap: 6px;
}

.method-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--mute);
  transition:
    background-color 0.4s,
    color 0.4s,
    border-color 0.4s;
}

.method-steps span.is-on {
  background: var(--flash);
  border-color: var(--flash);
  color: var(--ink);
}

.method-track {
  flex: 1;
  display: flex;
  align-items: center;
  width: max-content;
  padding-inline: var(--gutter);
  will-change: transform;
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 5vw, 88px);
  width: min(88vw, 1320px);
  margin-right: 8vw;
}

.step-text p {
  max-width: 38ch;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--mute);
}

.step-num {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.05em;
  font-variation-settings: 'wdth' 62;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--mute);
}

.step-visual {
  position: relative;
}

/* 01 */
.browser {
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.browser-bar > i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-4);
}

.browser-url {
  display: inline-flex;
  align-items: center;
  height: 26px;
  margin-left: 14px;
  padding: 0 14px;
  min-width: 220px;
  border-radius: 999px;
  background: var(--ink-3);
  font-size: 12.5px;
  color: var(--paper);
}

.browser-url b {
  font-weight: 500;
}

.caret {
  width: 1.5px;
  height: 13px;
  margin-left: 1px;
  background: var(--paper);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.browser-body {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanline {
  position: absolute;
  inset: 0 0 auto;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(242, 238, 233, 0.22) 92%, var(--paper) 100%);
  mix-blend-mode: difference;
  transform: translateY(-100%);
}

.harvest {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: min(360px, 70%);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.harvest li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid var(--line-on-paper);
}

.harvest li:first-child {
  border-top: 0;
}

.harvest li span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute-on-paper);
}

.harvest img {
  height: 16px;
  width: auto;
}

/* 02 */
.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: min(56vh, 520px);
}

.swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  padding: 16px;
  border-radius: 16px;
  background: var(--c);
  color: var(--paper);
  border: 1px solid var(--line);
  transform-origin: bottom;
}

.swatch:first-child {
  color: var(--ink);
}

.swatch span {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.swatch em {
  font-style: normal;
  font-size: 12px;
  opacity: 0.7;
}

.type-specimen {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.type-specimen img {
  width: min(260px, 55%);
  height: 64px;
  object-fit: cover;
  object-position: 62% 50%;
  border-radius: 10px;
}

.type-specimen em {
  font-style: normal;
  font-size: 13px;
  color: var(--mute);
}

/* 03 */
.script {
  padding: clamp(24px, 3vw, 40px);
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.tones {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--ink-3);
}

.tones span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 560;
  color: var(--mute);
}

.tones span.is-on {
  background: var(--paper);
  color: var(--ink);
}

.script ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.script li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(15px, 1.2vw, 18px);
}

.script time {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--mute);
}

/* 04 */
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  perspective: 1400px;
}

.board figure {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  transform-style: preserve-3d;
}

.board img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.board figcaption {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(19, 16, 13, 0.75);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* 05 */
.render {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.7);
}

.render video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink-2);
}

.render-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--flash);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

/* ------------------------------------------------------------------ layers */

.layers {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--radius-xl));
}

.layers-pin {
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.wrap-left {
  padding-left: var(--gutter);
}

.layers-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  max-width: 420px;
}

.layers-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  color: var(--mute);
  transition: color 0.4s;
}

.layers-list li span {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.layers-list li.is-on {
  color: var(--ink);
}

.layers-case {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--mute);
}

.layers-scene {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 2000px;
  background-image: radial-gradient(circle, rgba(19, 16, 13, 0.07) 0.65px, transparent 0.95px);
  background-size: 10px 10px;
}

.stack {
  position: relative;
  width: min(48vw, 720px);
  aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transform: rotateX(56deg) rotateZ(-34deg);
}

.layer {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  transform-style: preserve-3d;
}

/* While the stack is exploded, each transparent layer shows its plate, so the depth reads. */
.layer:not(.layer-bg) {
  box-shadow: inset 0 0 0 1.5px rgba(212, 255, 58, calc(var(--plate, 0) * 0.85));
  background: rgba(19, 16, 13, calc(var(--plate, 0) * 0.55));
}

.layer-tag {
  position: absolute;
  right: -8px;
  top: -8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--flash);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Resend's own world: their black and their violet, inside the frame only. */
.layer-bg {
  background:
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(101, 101, 236, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 0%, rgba(101, 101, 236, 0.18), transparent 70%),
    #000;
  box-shadow: 0 60px 120px -40px rgba(19, 16, 13, 0.55);
}

.layer-screen img {
  position: absolute;
  right: 6%;
  top: 14%;
  width: 52%;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.layer-logo img {
  position: absolute;
  left: 7%;
  top: 11%;
  width: 22%;
}

.layer-copy {
  color: #fff;
  font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
  padding: 0 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.copy-kicker {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.copy-stat {
  margin: 0;
  font-size: clamp(11px, 0.9vw, 14px);
  color: rgba(255, 255, 255, 0.65);
}

.copy-stat b {
  color: #62ffb3;
  font-weight: 600;
}

/* ------------------------------------------------------------------ formats */

.formats {
  padding: clamp(120px, 14vw, 200px) 0 clamp(100px, 12vw, 180px);
}

.formats-head {
  margin-bottom: clamp(56px, 7vw, 110px);
}

.formats-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2vw;
  padding-inline: var(--gutter);
}

.format {
  margin: 0;
}

.format-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.format-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-16x9 .format-box {
  width: 30.2vw;
  height: 17vw;
}

.f-9x16 .format-box {
  width: 14.6vw;
  height: 26vw;
}

.f-4x5 .format-box {
  width: 17.6vw;
  height: 22vw;
}

.f-1x1 .format-box {
  width: 18vw;
  height: 18vw;
}

.format figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--mute);
}

.format figcaption b {
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.02em;
  color: var(--paper);
}

/* ------------------------------------------------------------------ films */

.films {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 8vw, 120px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--radius-xl));
}

.films-head {
  margin-bottom: clamp(48px, 6vw, 96px);
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(40px, 5vw, 72px) clamp(16px, 2vw, 28px);
}

.film {
  grid-column: span 6;
  cursor: none;
}

.film:nth-child(1) {
  grid-column: span 7;
}

.film:nth-child(2) {
  grid-column: span 5;
  margin-top: 18%;
}

.film:nth-child(3) {
  grid-column: span 5;
}

.film:nth-child(4) {
  grid-column: span 7;
  margin-top: -9%;
}

.film-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  transform-style: preserve-3d;
  will-change: transform;
}

.film-media img,
.film-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease-out),
    opacity 0.5s;
}

.film-media video {
  opacity: 0;
}

.film.is-playing .film-media video {
  opacity: 1;
}

.film:hover .film-media img,
.film:hover .film-media video {
  transform: scale(1.04);
}

.film-duration {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(19, 16, 13, 0.7);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.film-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 24px;
  margin-top: 18px;
}

.film-brand {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variation-settings: 'wdth' 86;
}

.film-kind {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.film-title {
  font-size: 15px;
  color: var(--ink);
}

.film-source {
  font-size: 13px;
  color: var(--mute);
}

.films-note {
  margin-top: clamp(64px, 7vw, 110px);
  max-width: 1520px;
  font-size: 12.5px;
  color: var(--mute);
}

/* ------------------------------------------------------------------ versus */

.versus {
  padding: clamp(120px, 14vw, 200px) 0;
}

.versus-table {
  margin-top: clamp(48px, 6vw, 96px);
}

.versus-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 24px;
  padding: clamp(18px, 2vw, 28px) 0;
  border-top: 1px solid var(--line);
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.versus-row > span:first-child {
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  align-self: center;
}

.versus-row > span:nth-child(2) {
  color: var(--mute);
}

.versus-labels {
  border-top: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.versus-labels > span:nth-child(3) {
  color: var(--flash);
}

.versus-row > span:nth-child(3) {
  position: relative;
  padding-left: 22px;
}

.versus-row:not(.versus-labels) > span:nth-child(3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flash);
}

/* ------------------------------------------------------------------ cta */

.cta {
  position: relative;
  padding-top: clamp(100px, 12vw, 180px);
  overflow: hidden;
  border-top: 1px solid var(--line-on-ink);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-inner .title-xxl {
  max-width: 12ch;
}

.cta-mark {
  margin-top: clamp(100px, 12vw, 180px);
  padding-inline: var(--gutter);
}

.wordmark-giant {
  width: 100%;
  height: auto;
}

.wordmark-giant path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 13px;
  color: var(--mute-on-ink);
}

.footer a:hover {
  color: var(--paper);
}

/* ------------------------------------------------------------------ lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(19, 16, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
}

.lightbox-frame {
  width: min(100%, calc((100svh - 160px) * 16 / 9));
}

.lightbox video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #000;
}

.lightbox-caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--mute-on-ink);
}

.lightbox-caption b {
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.lightbox-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ------------------------------------------------------------------ hero actions */

.pill-large {
  height: 64px;
  padding: 0 34px;
  font-size: 16px;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: flex-end;
}

.link-arrow {
  position: relative;
  font-size: 15px;
  font-weight: 560;
  padding-bottom: 4px;
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.link-arrow:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hero-tags li {
  padding: 7px 14px;
  border: 1px solid var(--line-on-ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mute-on-ink);
}

.hero-tags b {
  color: var(--flash);
  font-weight: 600;
}

.cta-actions {
  margin-top: clamp(40px, 5vw, 64px);
}

.cta-actions p {
  margin: 0;
  max-width: 30ch;
  font-size: 14px;
  color: var(--mute);
}

/* ------------------------------------------------------------------ method intro */

.method-intro {
  padding-top: clamp(120px, 14vw, 200px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  align-items: end;
  gap: 24px 64px;
}

.method-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.method-lead {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--mute);
}

/* ------------------------------------------------------------------ offers */

.offers {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 14vw, 200px) 0 clamp(100px, 10vw, 160px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--radius-xl));
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(48px, 6vw, 96px);
  perspective: 1600px;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 52px);
  border-radius: 28px;
  background: var(--paper-hi);
  border: 1px solid var(--line-on-paper);
  transform-style: preserve-3d;
  will-change: transform;
}

.offer.is-featured .offer-price {
  color: var(--flash);
}

.offer.is-featured .offer-flag {
  background: var(--flash);
  border-color: var(--flash);
  color: var(--ink);
}

.offer.is-featured li::before {
  background: var(--flash);
}

.offer.is-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  --mute: var(--mute-on-ink);
  --line: var(--line-on-ink);
}

.offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.offer-name {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 620;
  letter-spacing: -0.03em;
  font-variation-settings: 'wdth' 86;
}

.offer-flag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 560;
  color: var(--mute);
}

.offer-pitch {
  margin: 12px 0 0;
  max-width: 34ch;
  color: var(--mute);
}

.offer-price {
  margin: clamp(32px, 4vw, 56px) 0 clamp(24px, 3vw, 40px);
  font-size: clamp(64px, 7.4vw, 124px);
  font-weight: 640;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-variation-settings: 'wdth' var(--w, 78);
  font-variant-numeric: tabular-nums;
}

.offer-price small {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--mute);
  margin-left: 8px;
}

.offer ul {
  list-style: none;
  margin: 0 0 clamp(32px, 4vw, 48px);
  padding: 0;
  flex: 1;
}

.offer li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
}

.offer li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: currentColor;
}

.offer .pill {
  align-self: flex-start;
}

.offer:not(.is-featured) .pill {
  background: var(--ink);
  color: var(--paper);
}

.offer:not(.is-featured) .pill::before {
  background: var(--ink-3);
}

.offers-note {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--mute);
}

/* ------------------------------------------------------------------ faq */

.faq {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 14vw, 200px) 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--radius-xl));
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 2vw, 28px) 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 560;
  letter-spacing: -0.015em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition:
    background-color 0.4s,
    transform 0.6s var(--ease-out);
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  margin: -0.75px 0 0 -6px;
  background: currentColor;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i {
  background: var(--flash);
  border-color: var(--flash);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  margin: 0;
  padding: 0 60px 28px 0;
  max-width: 62ch;
  color: var(--mute);
  font-size: 16.5px;
}

/* ------------------------------------------------------------------ small screens */

@media (max-width: 1000px) {
  /* On a phone the title covers the whole width: the wall stays a texture behind it. */
  .hero-scrim {
    background:
      linear-gradient(to top, var(--ink) 0%, rgba(19, 16, 13, 0.85) 40%, rgba(19, 16, 13, 0.55) 100%),
      linear-gradient(to bottom, rgba(19, 16, 13, 0.7) 0%, rgba(19, 16, 13, 0) 18%);
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding-bottom: 96px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .hero-lead {
    grid-row: auto;
  }

  .hero-actions,
  .hero-tags {
    justify-content: flex-start;
  }

  .method-intro,
  .faq-inner,
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .method-pin {
    height: auto;
    padding: 110px 0 60px;
  }

  .method-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-steps {
    display: none;
  }

  .method-track {
    flex-direction: column;
    width: auto;
    gap: 96px;
    padding-top: 56px;
  }

  .step {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .harvest {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .swatches {
    height: 340px;
  }

  .layers-pin {
    grid-template-columns: 1fr;
    height: auto;
    padding: 120px 0 80px;
    gap: 40px;
  }

  .layers-scene {
    height: 70vw;
  }

  .stack {
    width: 76vw;
  }

  .formats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 32px 16px;
  }

  .format-box {
    width: 100% !important;
    height: auto !important;
  }

  .f-16x9 .format-box {
    aspect-ratio: 16 / 9;
  }

  .f-9x16 .format-box {
    aspect-ratio: 9 / 16;
  }

  .f-4x5 .format-box {
    aspect-ratio: 4 / 5;
  }

  .f-1x1 .format-box {
    aspect-ratio: 1;
  }

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

  .film,
  .film:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .versus-row {
    grid-template-columns: 1fr 1fr;
  }

  .versus-row > span:first-child {
    grid-column: 1 / -1;
  }

  .versus-labels > span:first-child {
    display: none;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 12px;
  }

  .nav .wordmark {
    height: 14px;
  }

  .nav-end {
    gap: 8px;
  }

  .nav .pill-small {
    padding: 0 14px;
    font-size: 13px;
  }

  .lang-switch a {
    padding: 5px 7px;
  }

  .swatches {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .swatch {
    height: 120px;
  }

  .board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
