:root {
  --color-ink: #0b0b0b;
  --color-paper: #fafafa;
  --color-accent: #f66265;
  --color-brand-blue: #64b8c4;
  --color-brand-yellow: #ffc433;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --font-heading: "Space Grotesk", Arial, sans-serif;
  --header-height: 5rem;
  --header-inline-padding: clamp(1.25rem, 4vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
}

body.has-open-menu {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.4rem;
  color: var(--color-ink);
  background: var(--color-brand-yellow);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 180ms ease;
}

.skip-link:focus {
  outline: 0.1875rem solid var(--color-accent);
  outline-offset: 0.2rem;
  transform: translateY(0);
}

.site-header {
  --header-foreground: var(--color-paper);

  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--header-foreground);
  background-color: transparent;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header a,
.site-header button {
  -webkit-tap-highlight-color: transparent;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  --header-foreground: var(--color-ink);

  background-color: var(--color-paper);
  background-image:
    linear-gradient(rgba(250, 250, 250, 0.92), rgba(250, 250, 250, 0.92)),
    url("../images/texture/texture-4.webp");
  background-size: auto, 34rem 34rem;
  box-shadow: 0 0.5rem 1.5rem rgba(11, 11, 11, 0.1);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 90rem);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--header-inline-padding);
}

.site-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  transform: scale(1.08);
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__logo.is-rotating-clockwise img {
  animation: logo-spin-clockwise 4s linear infinite;
}

.site-header__logo.is-rotating-counterclockwise img {
  animation: logo-spin-counterclockwise 4s linear infinite;
}

.site-header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__nav-list,
.site-header__mobile-nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list {
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.site-header__nav-link {
  position: relative;
  display: inline-block;
  padding-block: 0.45rem;
  color: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 0.125rem 0.4rem rgba(0, 0, 0, 0.65);
}

.site-header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  content: "";
  background: var(--color-brand-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-link[aria-current]::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .site-header__nav-link,
.site-header.is-menu-open .site-header__nav-link {
  text-shadow: none;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(246, 98, 101, 0.25);
}

.site-header__cta:active {
  transform: scale(0.97);
}

.site-header__menu-toggle {
  display: none;
  appearance: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 100%;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.site-header__menu-toggle span + span {
  margin-top: 0.35rem;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.475rem) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.475rem) rotate(-45deg);
}

.site-header__mobile-menu {
  width: 100%;
  padding: 0.75rem var(--header-inline-padding) 1.5rem;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
}

.site-header__mobile-menu[hidden] {
  display: none;
}

.site-header__mobile-nav-list {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.25rem;
}

.site-header__mobile-nav-list .site-header__nav-link {
  display: inline-block;
  width: fit-content;
  padding-block: 0.85rem 0.3rem;
  color: var(--color-ink);
  text-shadow: none;
}

.site-header__cta--mobile {
  width: 100%;
  margin-top: 1rem;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 0.1875rem solid var(--color-accent);
  outline-offset: 0.25rem;
}

.home-hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    calc(var(--header-height) + clamp(2rem, 5vh, 4rem))
    var(--header-inline-padding)
    clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  color: var(--color-paper);
  background-color: var(--color-ink);
  background-image:
    linear-gradient(
      90deg,
      rgba(11, 11, 11, 0.72) 0%,
      rgba(11, 11, 11, 0.42) 52%,
      rgba(11, 11, 11, 0.1) 100%
    ),
    url("../images/homepage/hero.webp");
  background-position: center;
  background-size: cover;
}

.home-hero__inner {
  width: min(100%, 90rem);
  margin-inline: auto;
}

.home-hero__content {
  width: min(100%, 44rem);
}

.home-hero__title {
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-wrap: balance;
  text-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.3);
}

.home-hero__letter {
  color: var(--color-paper);
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.home-hero__letter--g,
.products-preview__link-word--view {
  animation-name: brand-color-blue;
}

.home-hero__letter--q,
.products-preview__link-word--all {
  animation-name: brand-color-coral;
}

.home-hero__letter--c,
.products-preview__link-word--products {
  animation-name: brand-color-yellow;
}

.home-hero__subtext {
  max-width: 38rem;
  margin: clamp(1rem, 2.5vh, 1.5rem) 0 0;
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 0.125rem 0.8rem rgba(0, 0, 0, 0.55);
}

.what-we-build {
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--header-inline-padding);
  color: var(--color-paper);
  background-color: var(--color-brand-blue);
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.26), rgba(11, 11, 11, 0.26)),
    url("../images/texture/texture-4.webp");
  background-size: auto, 34rem 34rem;
}

.what-we-build__inner {
  width: min(100%, 90rem);
  margin-inline: auto;
}

.what-we-build__inner.is-reveal-ready {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.what-we-build__inner.is-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.what-we-build__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.what-we-build__item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-width: 0;
  padding-inline: clamp(1.25rem, 2.5vw, 2.25rem);
}

.what-we-build__item:first-child {
  padding-left: 0;
}

.what-we-build__item + .what-we-build__item {
  border-left: 1px solid rgba(250, 250, 250, 0.32);
}

.what-we-build__item:last-child {
  padding-right: 0;
}

.what-we-build__icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-paper);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.what-we-build__name {
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.what-we-build__description {
  margin: 0.45rem 0 0;
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.products-preview {
  width: 100%;
  overflow: hidden;
  background: var(--color-ink);
}

.products-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.products-preview__panel {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  color: var(--color-paper);
  background:
    linear-gradient(
      145deg,
      rgba(250, 250, 250, 0.1),
      rgba(250, 250, 250, 0.025)
    );
  outline: 1px solid rgba(250, 250, 250, 0.16);
  outline-offset: -1px;
  -webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
}

.products-preview__phrase,
.products-preview__link {
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
}

.products-preview__phrase {
  margin: 0;
  opacity: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation-duration: 10.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.products-preview__phrase--products {
  animation-name: products-preview-products;
}

.products-preview__phrase--coming {
  animation-name: products-preview-coming;
}

.products-preview__phrase--soon {
  animation-name: products-preview-soon;
}

.products-preview__link {
  position: relative;
  display: inline-flex;
  gap: 0.28em;
  align-items: center;
  padding: 0.35rem 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.products-preview__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  content: "";
  background: var(--color-paper);
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 180ms ease;
}

.products-preview__link:hover::after,
.products-preview__link:focus-visible::after {
  transform: scaleX(1);
}

.products-preview__link:focus-visible {
  border-radius: 0.2rem;
  outline: 0.1875rem solid var(--color-brand-yellow);
  outline-offset: 0.4rem;
}

.products-preview__link-word {
  color: var(--color-paper);
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.products-page {
  overflow: hidden;
  background: var(--color-ink);
}

.products-coming-soon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-inline: clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--color-ink);
}

.products-coming-soon__title {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.25em, 1vw, 0.5em);
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 5.4vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.products-coming-soon__word {
  --word-highlight: var(--color-paper);

  color: var(--color-paper);
  animation: products-coming-soon-word 12s ease-in-out infinite;
}

.products-coming-soon__word--products {
  --word-highlight: var(--color-brand-blue);
}

.products-coming-soon__word--coming {
  --word-highlight: var(--color-accent);

  animation-delay: 4s;
}

.products-coming-soon__word--soon {
  --word-highlight: var(--color-brand-yellow);

  animation-delay: 8s;
}

@keyframes products-coming-soon-word {
  0%,
  20% {
    color: var(--word-highlight);
  }

  25%,
  96% {
    color: var(--color-paper);
  }

  100% {
    color: var(--word-highlight);
  }
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

#about,
#contact {
  scroll-margin-top: var(--header-height);
}

.home-split__content,
.home-split__media {
  min-width: 0;
  aspect-ratio: 1;
}

.home-split__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  color: var(--color-ink);
  background-color: var(--color-paper);
  background-image:
    linear-gradient(rgba(250, 250, 250, 0.92), rgba(250, 250, 250, 0.92)),
    url("../images/texture/texture-4.webp");
  background-size: auto, 34rem 34rem;
}

.home-split__title {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.home-split__media {
  overflow: hidden;
}

.home-split__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about__description {
  width: min(100%, 42rem);
  margin: 0 auto;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.home-about .home-split__content {
  grid-template-rows: auto auto;
  align-content: center;
}

.home-split__content > [data-reveal].is-reveal-ready {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.home-split__content > [data-reveal].is-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: grid;
  gap: 1rem;
  align-self: center;
  justify-self: center;
  width: min(100%, 34rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--color-ink);
  background-color: #f5f5f5;
  background-image:
    linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.9)),
    url("../images/texture/texture-11.webp");
  background-size: auto, 30rem 30rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(11, 11, 11, 0.12);
  font-family: var(--font-body);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.contact-form__field label {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(11, 11, 11, 0.2);
  border-radius: 0.55rem;
  color: var(--color-ink);
  background: rgba(250, 250, 250, 0.88);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form__field input,
.contact-form__field select {
  min-height: 2.85rem;
  padding: 0.7rem 0.8rem;
}

.contact-form__field textarea {
  min-height: 7.5rem;
  padding: 0.75rem 0.8rem;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(11, 11, 11, 0.58);
}

.contact-form__field select:invalid {
  color: rgba(11, 11, 11, 0.58);
}

.contact-form__field input:focus-visible,
.contact-form__field select:focus-visible,
.contact-form__field textarea:focus-visible {
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(100, 184, 196, 0.28);
}

.contact-form__submit {
  justify-self: center;
  min-width: 8rem;
  min-height: 2.8rem;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 0.65rem;
  color: var(--color-ink);
  background: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form__submit:hover {
  box-shadow: 0 0.6rem 1.2rem rgba(246, 98, 101, 0.3);
  transform: scale(1.04);
}

.contact-form__submit:active {
  transform: scale(0.97);
}

.contact-form__submit:focus-visible {
  outline: 0.1875rem solid var(--color-brand-yellow);
  outline-offset: 0.25rem;
}

.home-contact__email {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.home-contact__email svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-contact__email a {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.home-contact__email a:hover {
  color: #c73f45;
}

.home-contact__email a:focus-visible {
  border-radius: 0.15rem;
  outline: 0.1875rem solid var(--color-accent);
  outline-offset: 0.2rem;
}

.site-footer {
  color: var(--color-paper);
  background-color: var(--color-brand-blue);
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.26), rgba(11, 11, 11, 0.26)),
    url("../images/texture/texture-4.webp");
  background-size: auto, 34rem 34rem;
}

.site-footer__inner {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding:
    clamp(3rem, 6vw, 5rem)
    var(--header-inline-padding)
    clamp(1.5rem, 3vw, 2rem);
}

.site-footer__main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.site-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.5rem, 6vw, 6rem);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-footer__logo-wrap:hover {
  transform: scale(1.08);
}

.site-footer__logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__logo-wrap.is-rotating-clockwise .site-footer__logo {
  animation: logo-spin-clockwise 4s linear infinite;
}

.site-footer__logo-wrap.is-rotating-counterclockwise .site-footer__logo {
  animation: logo-spin-counterclockwise 4s linear infinite;
}

.site-footer__company {
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.site-footer__links,
.site-footer__email {
  justify-self: center;
}

.site-footer__heading {
  margin: 0 0 1rem;
  color: var(--color-paper);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__links ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a,
.site-footer__email > a {
  display: inline-block;
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration-color: rgba(250, 250, 250, 0.55);
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.25em;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__links a {
  text-decoration-line: none;
}

.site-footer__links a:hover,
.site-footer__email > a:hover {
  color: var(--color-brand-yellow);
  transform: translateX(0.2rem);
}

.site-footer__links a:focus-visible,
.site-footer__email > a:focus-visible {
  border-radius: 0.15rem;
  outline: 0.1875rem solid var(--color-brand-yellow);
  outline-offset: 0.25rem;
}

.site-footer__email-heading {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.site-footer__email-heading svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 250, 0.48);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@keyframes products-preview-products {
  0% {
    opacity: 0;
  }

  6%,
  26% {
    opacity: 1;
  }

  32%,
  100% {
    opacity: 0;
  }
}

@keyframes products-preview-coming {
  0%,
  30% {
    opacity: 0;
  }

  36%,
  56% {
    opacity: 1;
  }

  62%,
  100% {
    opacity: 0;
  }
}

@keyframes products-preview-soon {
  0%,
  60% {
    opacity: 0;
  }

  66%,
  86% {
    opacity: 1;
  }

  92%,
  100% {
    opacity: 0;
  }
}

@keyframes brand-color-blue {
  0%,
  25% {
    color: var(--color-brand-blue);
  }

  30%,
  95% {
    color: var(--color-paper);
  }

  100% {
    color: var(--color-brand-blue);
  }
}

@keyframes brand-color-coral {
  0%,
  27% {
    color: var(--color-paper);
  }

  32%,
  57% {
    color: var(--color-accent);
  }

  62%,
  100% {
    color: var(--color-paper);
  }
}

@keyframes brand-color-yellow {
  0%,
  59% {
    color: var(--color-paper);
  }

  64%,
  89% {
    color: var(--color-brand-yellow);
  }

  94%,
  100% {
    color: var(--color-paper);
  }
}

@keyframes logo-spin-clockwise {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-spin-counterclockwise {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 50rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header__nav,
  .site-header__cta--desktop {
    display: none;
  }

  .site-header__menu-toggle {
    display: block;
  }

  .home-hero {
    background-position: 58% center;
  }
}

@media (max-width: 56rem) {
  .what-we-build__grid {
    grid-template-columns: 1fr;
  }

  .what-we-build__item {
    padding: 1.25rem 0;
  }

  .what-we-build__item:first-child {
    padding-top: 0;
  }

  .what-we-build__item + .what-we-build__item {
    border-top: 1px solid rgba(250, 250, 250, 0.32);
    border-left: 0;
  }

  .what-we-build__item:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 64rem) {
  .products-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-preview__phrase {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 68rem) {
  .home-split {
    grid-template-columns: 1fr;
  }

  .home-split__content {
    min-height: 42rem;
    aspect-ratio: auto;
    padding: clamp(2rem, 7vw, 4rem);
  }

  .home-split__media {
    display: none;
  }
}

@media (max-width: 36rem) {
  .products-preview__grid {
    grid-template-columns: 1fr;
  }

  .products-preview__phrase {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .products-preview__link {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .home-split__content {
    min-height: auto;
    gap: 1.75rem;
    padding: 2.5rem 1.25rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .home-contact__email {
    flex-wrap: wrap;
  }
}

@media (max-width: 40rem) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

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

  .site-footer__links,
  .site-footer__email {
    justify-self: stretch;
    text-align: left;
  }

  .site-footer__bottom {
    margin-top: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .site-header *,
  .site-header *::before,
  .site-header *::after,
  .site-footer__logo-wrap,
  .site-footer__logo {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero__letter {
    color: var(--color-paper);
    animation: none;
  }

  .skip-link {
    transition: none;
  }

  .what-we-build__inner.is-reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-split__content > [data-reveal].is-reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .products-preview__phrase {
    opacity: 1;
    animation: none;
  }

  .products-preview__link-word {
    color: var(--color-paper);
    animation: none;
  }

  .products-coming-soon__word {
    color: var(--color-paper);
    animation: none;
  }

  .products-preview__link::after {
    transition: none;
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea,
  .contact-form__submit {
    transition: none;
  }

  .site-footer__links a,
  .site-footer__email > a {
    transition: none;
  }
}
