@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ground: #f2f2f3;
  --surface: #e9e9ea;
  --ink: #1d1f20;
  --accent: #5980a6;
  --accent-strong: #416180;
  --accent-hover: #597ea3;
  --accent-soft: rgb(89 128 166 / 8%);
  --divider: rgb(29 31 32 / 16%);
  --text-soft: rgb(29 31 32 / 78%);
  --text-muted: rgb(29 31 32 / 70%);
  --button-text: #ffffff;
  --button-hover-bg: #2c455d;
  --button-hover-text: #ffffff;
  --error: #b24a3c;
  --page-gutter: clamp(20px, 5vw, 72px);
  --font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", Arial, sans-serif;
  --font-wordmark: "Manrope", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ground: #1d2d3d;
    --surface: #25394c;
    --ink: #f2f2f3;
    --accent: #9db8d2;
    --accent-strong: #d6ebff;
    --accent-hover: #b5d9fd;
    --accent-soft: rgb(157 184 210 / 10%);
    --divider: rgb(242 242 243 / 18%);
    --text-soft: rgb(242 242 243 / 82%);
    --text-muted: rgb(242 242 243 / 72%);
    --button-text: #1d2d3d;
    --button-hover-bg: #b5d9fd;
    --button-hover-text: #1d2d3d;
    --error: #ff9d91;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ground: #1d2d3d;
  --surface: #25394c;
  --ink: #f2f2f3;
  --accent: #9db8d2;
  --accent-strong: #d6ebff;
  --accent-hover: #b5d9fd;
  --accent-soft: rgb(157 184 210 / 10%);
  --divider: rgb(242 242 243 / 18%);
  --text-soft: rgb(242 242 243 / 82%);
  --text-muted: rgb(242 242 243 / 72%);
  --button-text: #1d2d3d;
  --button-hover-bg: #b5d9fd;
  --button-hover-text: #1d2d3d;
  --error: #ff9d91;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

::selection {
  background: rgb(89 128 166 / 30%);
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--ground);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.site-shell,
.site-header__inner {
  width: 100%;
  max-width: 1384px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--ground) 72%, transparent);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: var(--ground);
  }
}

@supports (animation-timeline: scroll()) {
  .site-header {
    animation: ms-header-settle linear both;
  }

  .site-header__inner {
    animation: ms-header-compact linear both;
  }

  .wordmark--nav {
    animation: ms-wordmark-compact linear both;
  }

  /* Must follow the shorthand: `animation` resets timeline and range. */
  .site-header,
  .site-header__inner,
  .wordmark--nav {
    animation-timeline: scroll(root);
    animation-range: 0 96px;
  }
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-block: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.wordmark__soft {
  color: var(--accent);
  transition: color 160ms ease;
}

.wordmark:hover .wordmark__soft {
  color: var(--accent-hover);
}

.wordmark--nav {
  margin-right: auto;
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a {
  background: linear-gradient(currentColor, currentColor) no-repeat left calc(100% - 0.1em) / 0 2px;
  transition:
    color 160ms ease,
    background-size 220ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background-size: 100% 2px;
}

.nav-links a:hover {
  color: var(--accent-hover);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 120ms ease;
}

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

.button--nav {
  background: var(--accent-strong);
  color: var(--button-text);
}

.button--nav:hover,
.button--nav:focus-visible {
  background: var(--button-hover-bg);
  color: var(--button-hover-text);
}

.nav-contact {
  min-width: 116px;
  display: grid;
  overflow: hidden;
}

.nav-contact__label,
.nav-contact__action {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-contact__action {
  opacity: 0;
  transform: translateY(145%);
}

.nav-contact:hover .nav-contact__label,
.nav-contact:focus-visible .nav-contact__label {
  opacity: 0;
  transform: translateY(-145%);
}

.nav-contact:hover .nav-contact__action,
.nav-contact:focus-visible .nav-contact__action {
  opacity: 1;
  transform: none;
}

.nav-contact__hand {
  display: inline-block;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1;
  transform-origin: 72% 78%;
}

.nav-contact:hover .nav-contact__hand,
.nav-contact:focus-visible .nav-contact__hand {
  animation: ms-wave 680ms ease-in-out 90ms both;
}

.software {
  padding: clamp(56px, 7.5vw, 104px) 0 32px;
}

.software__title {
  margin: 0 0 clamp(32px, 4vw, 52px) -0.04em;
  font-family: var(--font-heading);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.software__period {
  position: relative;
  display: inline-block;
  width: 0.15em;
  height: 0.15em;
  margin-left: 0.035em;
  color: transparent;
  vertical-align: 0.02em;
}

.software__period::before,
.software__period::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.software__period::before {
  background: var(--accent-strong);
}

.software__period::after {
  width: 165%;
  border: 0.024em solid var(--accent-strong);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-list {
  border-top: 1px solid var(--divider);
}

.product-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1.1fr) minmax(0, 1fr) 88px;
  gap: clamp(14px, 2.5vw, 36px);
  align-items: center;
  padding: 30px 8px;
  border-bottom: 1px solid var(--divider);
  color: var(--ink);
  text-decoration: none;
  box-shadow: inset 0 0 0 0 var(--accent);
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    padding 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-row[href]:hover,
.product-row[href]:focus-visible {
  padding-left: 20px;
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 0 var(--accent);
}

.product-row[href]:hover strong,
.product-row[href]:focus-visible strong {
  color: var(--accent-strong);
}

.product-row strong {
  transition: color 160ms ease;
}

.product-row__identity {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.product-row__index {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-row strong {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.product-row__description {
  color: var(--text-muted);
  font-size: 15px;
}

.product-row__domain {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
}

.product-row--coming {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 12px,
    color-mix(in srgb, var(--accent) 5%, transparent) 12px,
    color-mix(in srgb, var(--accent) 5%, transparent) 13px
  );
}

.product-row--coming strong {
  color: color-mix(in srgb, var(--ink) 84%, var(--accent));
}

.product-row__status {
  position: relative;
  justify-self: end;
  min-width: 88px;
  padding: 8px 11px 7px;
  border: 1px solid currentColor;
  color: var(--accent-strong);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--accent-soft);
}

.product-row__status::after {
  position: absolute;
  inset: 3px;
  border: 1px dashed color-mix(in srgb, var(--accent-strong) 48%, transparent);
  content: "";
  pointer-events: none;
}

.product-row__status span {
  position: relative;
  z-index: 1;
  display: block;
}

.product-row__status span + span {
  margin-top: 4px;
  margin-left: 0.16em;
}

.external-arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.product-row[href]:hover .external-arrow,
.product-row[href]:focus-visible .external-arrow {
  transform: translate(2px, -2px);
}

.about {
  padding: clamp(48px, 6vw, 72px) 0 clamp(44px, 5vw, 64px);
  border-top: 1px solid var(--divider);
}

.about .section-kicker {
  margin-bottom: 18px;
}

.about__copy {
  max-width: 680px;
}

.about__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.about__copy p + p {
  margin-top: 10px;
}

.about__copy strong {
  color: var(--ink);
  font-weight: 600;
}

.contact {
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--divider);
}

.contact .section-kicker {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: start;
}

.contact__intro p {
  margin: 0;
}

.contact__heading {
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact__lede {
  max-width: 30ch;
  margin-top: 18px !important;
  color: var(--text-muted);
  font-size: 16px;
}

.contact-form {
  position: relative;
  min-width: 0;
  border-top: 1px solid var(--divider);
}

.contact-form__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--divider);
  transition: border-color 160ms ease;
}

.form-field:focus-within {
  border-bottom-color: var(--accent-strong);
}

.form-field__label {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-field.has-error {
  border-bottom-color: var(--error);
}

.form-field.has-error .form-field__label {
  color: var(--error);
}

.form-field__error {
  color: var(--error);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.form-field__error:empty {
  display: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  line-height: 1.5;
}

.form-field input {
  min-height: 34px;
}

.form-field textarea {
  min-height: 152px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in srgb, var(--text-muted) 68%, transparent);
  opacity: 1;
}

.form-field--message {
  padding-top: 22px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
}

.cf-turnstile {
  width: min(100%, 300px);
  min-height: 1px;
}

.contact-form__submit {
  min-width: 164px;
  min-height: 48px;
  display: grid;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--accent-strong);
  color: var(--button-text);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 120ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--button-hover-bg);
  color: var(--button-hover-text);
}

.contact-form__submit:active {
  transform: translateY(1px);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form__submit-label,
.contact-form__submit-action {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-form__submit-action {
  opacity: 0;
  transform: translateY(145%);
}

.contact-form__submit:hover:not(:disabled) .contact-form__submit-label,
.contact-form__submit:focus-visible:not(:disabled) .contact-form__submit-label {
  opacity: 0;
  transform: translateY(-145%);
}

.contact-form__submit:hover:not(:disabled) .contact-form__submit-action,
.contact-form__submit:focus-visible:not(:disabled) .contact-form__submit-action {
  opacity: 1;
  transform: none;
}

.contact-form__submit-hand {
  display: inline-block;
  font-family: sans-serif;
  line-height: 1;
  transform-origin: 72% 78%;
}

.contact-form__submit:hover:not(:disabled) .contact-form__submit-hand,
.contact-form__submit:focus-visible:not(:disabled) .contact-form__submit-hand {
  animation: ms-wave 680ms ease-in-out 90ms both;
}

.contact-form__status {
  min-height: 1.55em;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-form__status.is-success {
  border-color: color-mix(in srgb, var(--accent-strong) 42%, transparent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  color: var(--ink);
  box-shadow: inset 4px 0 0 var(--accent-strong);
}

.contact-form__status.is-error {
  color: var(--error);
  border-color: color-mix(in srgb, var(--error) 42%, transparent);
  background: color-mix(in srgb, var(--error) 8%, transparent);
  box-shadow: inset 4px 0 0 var(--error);
}

.contact-form__status.is-success,
.contact-form__status.is-error {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 13px 16px;
  border-width: 1px;
  border-style: solid;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-form__status.is-success::before,
.contact-form__status.is-error::before {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  color: var(--button-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.contact-form__status.is-success::before {
  content: "✓";
  background: var(--accent-strong);
}

.contact-form__status.is-error::before {
  content: "!";
  background: var(--error);
}

.not-found__actions {
  margin: 32px 0 0;
}

.site-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px 40px;
  border-top: 1px solid var(--divider);
}

.wordmark--footer {
  font-size: 17px;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  text-align: right;
}

.software__period::before {
  animation: ms-period-pulse 3.4s ease-in-out 1.1s infinite;
}

.software__period::after {
  animation: ms-period-signal 3.4s ease-out 1.1s infinite;
}

.software__title {
  animation: ms-rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

.product-row {
  animation: ms-rise-row 0.7s cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: calc(0.3s + var(--row, 0) * 0.07s);
}

.product-row:nth-child(1) { --row: 0; }
.product-row:nth-child(2) { --row: 1; }
.product-row:nth-child(3) { --row: 2; }
.product-row:nth-child(4) { --row: 3; }
.product-row:nth-child(5) { --row: 4; }
.product-row:nth-child(6) { --row: 5; }

.product-row__status {
  animation: ms-stamp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(0.62s + var(--row, 0) * 0.07s);
}

@keyframes ms-rise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ms-rise-row {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ms-stamp {
  from {
    opacity: 0;
    transform: rotate(-9deg) scale(1.3);
  }

  to {
    opacity: 1;
    transform: rotate(-2deg) scale(1);
  }
}

@keyframes ms-header-compact {
  to {
    min-height: 62px;
    padding-block: 9px;
  }
}

@keyframes ms-wordmark-compact {
  to {
    font-size: 19px;
  }
}

@keyframes ms-period-pulse {
  0%,
  68%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  73% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.72);
  }

  79% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }

  86% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ms-period-signal {
  0%,
  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }

  77% {
    opacity: 0.52;
  }

  92%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.45);
  }
}

@keyframes ms-header-settle {
  to {
    border-bottom-color: var(--divider);
  }
}

@keyframes ms-wave {
  0%,
  100% {
    transform: rotate(0);
  }

  22% {
    transform: rotate(18deg);
  }

  44% {
    transform: rotate(-12deg);
  }

  66% {
    transform: rotate(15deg);
  }

  84% {
    transform: rotate(-6deg);
  }
}

@media (max-width: 820px) {
  .product-row {
    grid-template-columns: 44px minmax(0, 1fr) minmax(10rem, 0.8fr) 88px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header__inner {
    min-height: 72px;
    gap: 14px;
    padding-block: 14px;
  }

  .nav-links {
    display: none;
  }

  .button--nav {
    min-height: 42px;
    padding-inline: 12px;
  }

  .software {
    padding-top: clamp(44px, 12vw, 60px);
  }

  .product-row {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 24px 4px;
  }

  .product-row[href]:hover,
  .product-row[href]:focus-visible {
    padding-left: 14px;
  }

  .product-row__description {
    display: none;
  }

  .product-row strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .product-row__identity {
    gap: 6px;
  }

  .product-row__domain {
    font-size: 11px;
  }

  .product-row--coming {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .product-row__status {
    min-width: 76px;
    padding: 7px 8px 6px;
    font-size: 10px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact__heading {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .wordmark--nav {
    font-size: 20px;
  }

  .button--nav {
    font-size: 13px;
  }

  .software__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact {
    padding-bottom: 56px;
  }

  .contact-form__pair,
  .contact-form__footer {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    gap: 20px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

/* Turnstile's responsive widget has a 300px minimum width. */
@media (max-width: 340px) {
  :root {
    --page-gutter: 10px;
  }
}

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

  .software__period::before,
  .software__period::after {
    animation-duration: 3.4s !important;
    animation-iteration-count: infinite !important;
  }

  .nav-contact__label,
  .nav-contact__action,
  .contact-form__submit-label,
  .contact-form__submit-action {
    transition-duration: 220ms, 320ms !important;
  }

  .nav-contact:hover .nav-contact__hand,
  .nav-contact:focus-visible .nav-contact__hand,
  .contact-form__submit:hover:not(:disabled) .contact-form__submit-hand,
  .contact-form__submit:focus-visible:not(:disabled) .contact-form__submit-hand {
    animation-duration: 680ms !important;
    animation-iteration-count: 1 !important;
  }

  .software__title {
    animation-duration: 0.9s !important;
  }

  .product-row {
    animation-duration: 0.7s !important;
  }

  .product-row__status {
    animation-duration: 0.5s !important;
  }

}
