/* endlessly — landing-page layout and UI */

:root {
  --paper: #f7f2ea;
  --ink: #1f2622;
  --ink-soft: #5f655f;
  --accent: #d87991;
  --white: #fff;
  --line: rgba(31, 38, 34, .16);

  /* Exactly three typography sizes */
  --type-display: clamp(3.8rem, 7.6vw, 7.7rem);
  --type-logo: clamp(1.45rem, 2vw, 2rem);
  --type-copy: clamp(.98rem, 1.25vw, 1.12rem);

  --page-padding: clamp(1.25rem, 3vw, 3.75rem);
  --content-width: 38rem;
  --glass-blur: 18px;
  --transition: 220ms ease;
--header-control-height: 2.75rem;}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--type-copy);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100svh;
  min-height: 38rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.hero__art,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__art {
  z-index: 1;
  pointer-events: none;
}

.hero__veil {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 234, .22),
      transparent 56%
    );
}

.site-header,
.site-footer {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--page-padding);
}

.site-header {
  padding-top: clamp(1.35rem, 3vh, 2.35rem);
}

.brand {
  color: inherit;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--type-logo);
  font-weight: 600;
  letter-spacing: -.045em;
  text-decoration: none;
}

.site-status {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: .58em;
  overflow: hidden;
  height: var(--header-control-height);
  padding: 0 .82em;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .42),
      rgba(255, 255, 255, .13)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 .8rem 2.3rem rgba(42, 38, 31, .08);
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(var(--glass-blur)) saturate(145%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(145%);
}

.site-status__label {
  font-weight: 400;
  white-space: nowrap;
}
.site-status__dot {
  width: .48em;
  height: .48em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  animation: status-pulse 2.4s ease-out infinite;
}

.hero__content {
  position: relative;
  z-index: 12;
  align-self: center;
  width: min(var(--content-width), calc(100% - 2 * var(--page-padding)));
  margin-left: var(--page-padding);
  padding-block: 1.5rem;
}

.hero__eyebrow {
  margin: 0 0 1em;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 12.6ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--type-display);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.055em;
}

.hero__title span {
  color: var(--accent);
  font-style: italic;
}

.hero__intro {
  max-width: 35rem;
  margin: 1.25em 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: .55em;
  margin-top: 1.15em;
}

.hero__usp{
  position: relative;
  overflow: hidden;
  padding: .48em .68em;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .36),
      rgba(255, 255, 255, .12)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 .5rem 1.5rem rgba(42, 38, 31, .05);
  color: var(--ink-soft);
  font-weight: 500;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.notify-form {
  width: min(100%, 31rem);
  margin-top: 1.4em;
}

.notify-form__field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5em;
  overflow: hidden;
  padding: .36em;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .4),
      rgba(255, 255, 255, .12) 48%,
      rgba(255, 255, 255, .3)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    inset 0 -1px 0 rgba(255, 255, 255, .2),
    0 1rem 3rem rgba(42, 38, 31, .1);
  backdrop-filter: blur(var(--glass-blur)) saturate(145%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(145%);
}

.notify-form__reflection,
.how-it-works__reflection {
  position: absolute;
  inset: -55% auto -55% 0;
  width: 46%;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      transparent 10%,
      rgba(255, 255, 255, .08) 34%,
      rgba(255, 255, 255, .72) 50%,
      rgba(255, 255, 255, .1) 66%,
      transparent 90%
    );
  transform: translateX(-180%) skewX(-18deg);
  animation: glass-reflection 6.5s ease-in-out infinite;
}

.notify-form input,
.notify-form button {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 0;
  outline: 0;
}

.notify-form input {
  padding: .78em 1em;
  color: var(--ink);
  background: transparent;
}

.notify-form input::placeholder {
  color: #858a84;
}

.notify-form button {
  border-radius: 999px;
  padding: .78em 1.15em;
  color: var(--white);
  background: var(--accent);
  font-weight: 600;
  transition:
    background var(--transition),
    transform var(--transition);
}

.notify-form button:hover {
  background: #c96886;
  transform: translateY(-1px);
}

.notify-form input:focus-visible,
.notify-form button:focus-visible,
.paint-action:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.notify-form__message {
  min-height: 1.2em;
  margin: .55em 0 0 1em;
  color: var(--ink-soft);
opacity: 0;
  transform: translateY(.25rem);
  transition:
    opacity var(--transition),
    transform var(--transition);}

.notify-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.notify-form button:disabled {
  cursor: default;
  opacity: .86;
  transform: none;
}

.notify-form button[aria-busy="true"] {
  cursor: wait;
}

.notify-form.is-error .notify-form__field {
  border-color: rgba(159, 77, 92, .44);
  background:
    linear-gradient(
      135deg,
      rgba(253, 237, 239, .8),
      rgba(255, 255, 255, .24)
    );
}

.notify-form.is-error .notify-form__message {
  color: #8b3f4f;
}


.how-it-works {
  position: absolute;
  z-index: 22;
  right: var(--page-padding);
  bottom: clamp(4.8rem, 9vh, 7rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .28em .72em;
  align-items: center;
  width: min(18rem, calc(100vw - 2rem));
  overflow: hidden;
  padding: 1.05em 1.15em;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 1.3rem;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .46),
      rgba(247, 242, 234, .18) 48%,
      rgba(255, 255, 255, .32)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 1.2rem 3.5rem rgba(42, 38, 31, .11);
  backdrop-filter: blur(var(--glass-blur)) saturate(145%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(145%);
}

.how-it-works > * {
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  grid-column: 1 / -1;
  margin: 0 0 .45em;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

.how-it-works p {
  margin: 0;
  color: var(--ink-soft);
}

.how-it-works__number {
  color: var(--accent);
  font-weight: 600;
}

.how-it-works__line {
  width: 1px;
  height: .7em;
  margin: .12em auto;
  background: var(--line);
}

/* Paint action component */
.paint-action {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: .62em .82em;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition);
}

.paint-action:hover {
  transform: translateY(-1px);
}

.paint-action[data-state="try"] {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .74);
  color: var(--ink);
  background: repeating-linear-gradient(
    90deg,
    rgba(235, 166, 188, .78) 0,
    rgba(241, 199, 157, .74) 56px,
    rgba(167, 211, 187, .76) 112px,
    rgba(160, 202, 226, .76) 168px,
    rgba(197, 171, 220, .76) 224px,
    rgba(235, 166, 188, .78) 280px
  );
  background-size: 280px 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    inset 0 -1px 0 rgba(255, 255, 255, .22),
    0 .9rem 2.4rem rgba(138, 112, 129, .16);
  animation: rainbow-glass-loop 8s linear infinite;
  backdrop-filter: blur(18px) saturate(138%);
  -webkit-backdrop-filter: blur(18px) saturate(138%);
}

.paint-action[data-state="try"]::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, .46) 0,
    rgba(255, 255, 255, .08) 70px,
    rgba(255, 255, 255, .3) 140px,
    rgba(255, 255, 255, .06) 210px,
    rgba(255, 255, 255, .46) 280px
  );
  background-size: 280px 100%;
  animation: rainbow-glass-loop 8s linear infinite;
}

.paint-action__try,
.paint-action__reset {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.paint-action__reset,
.paint-action[data-state="reset"] .paint-action__try {
  display: none;
}

.paint-action[data-state="reset"] {
  border: 1px solid rgba(255, 255, 255, .68);
  color: var(--ink);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, .46),
    rgba(247, 242, 234, .2) 48%,
    rgba(255, 255, 255, .32)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 .8rem 2.4rem rgba(42, 38, 31, .08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.paint-action[data-state="reset"] .paint-action__reset {
  display: inline;
}

@keyframes rainbow-glass-loop {
  from { background-position: 0 50%; }
  to { background-position: 280px 50%; }
}

.paint-action--desktop {
  grid-column: 1 / -1;
  margin-top: .62em;
}

.paint-action--mobile {
  display: none;
}

.site-footer {
  padding-bottom: clamp(1.1rem, 2.5vh, 1.9rem);
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes status-pulse {
  0% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 rgba(216, 121, 145, .4);
  }

  72% {
    transform: scale(1);
    box-shadow: 0 0 0 .62em rgba(216, 121, 145, 0);
  }

  100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 rgba(216, 121, 145, 0);
  }
}

@keyframes glass-reflection {
  0%,
  60% {
    transform: translateX(-180%) skewX(-18deg);
    opacity: 0;
  }

  68% {
    opacity: .75;
  }

  88%,
  100% {
    transform: translateX(300%) skewX(-18deg);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --type-display: clamp(3.15rem, 13vw, 4.55rem);
    --type-logo: 1.3rem;
    --type-copy: clamp(.84rem, 3.2vw, 1rem);
    --page-padding: .9rem;
  }

  .hero {
    min-height: 0;
  }

  .site-header {
    padding-top: .75rem;
  }

  .hero__veil {
    background: none;
  }

  .hero__content {
    position: absolute;
    top: 4.35rem;
    right: var(--page-padding);
    left: var(--page-padding);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: clamp(.38rem, 1.2vh, .72rem);
    align-content: stretch;
    width: auto;
    height: calc(50svh - 4.75rem);
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__intro,
  .hero__usps {
    margin: 0;
  }

  .hero__title {
    max-width: 10.6ch;
    margin-inline: auto;
  }

  .hero__intro {
    align-self: center;
    max-width: 34rem;
    margin-inline: auto;
    line-height: 1.35;
  }

  .hero__usps {
    justify-content: center;
    gap: .38em;
  }

  .hero__usp{
    padding: .38em .5em;
  }

  .notify-form {
    position: fixed;
    z-index: 30;
    right: auto;
    bottom: .85rem;
    left: 50%;
    width: min(23rem, calc(100% - 1.5rem));
    margin: 0;
    transform: translateX(-50%);
  }

  .notify-form__field {
    padding: .28em;
  }

  .notify-form__message {
    display: none;
  }

  .how-it-works {
    display: none;
  }

  .paint-action--mobile {
    position: fixed;
    z-index: 30;
    right: auto;
    bottom: 4.95rem;
    left: 50%;
    display: inline-flex;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .paint-action--mobile:hover {
    transform: translateX(-50%);
  }

  .site-footer {
    display: none;
  }
}

@media (max-width: 390px), (max-height: 720px) and (max-width: 900px) {
  :root {
    --type-display: clamp(2.75rem, 12vw, 3.55rem);
    --type-logo: 1.18rem;
    --type-copy: clamp(.74rem, 2.9vw, .86rem);
  }

  .hero__content {
    top: 3.85rem;
    height: calc(50svh - 4.05rem);
    gap: .3rem;
  }

  .paint-action--mobile {
    bottom: 4.45rem;
  }

  .notify-form {
    bottom: .55rem;
  }
}

@media (min-width: 901px) {
  .site-status,
  .hero__intro,
  .hero__usps,
  .how-it-works,
  .paint-action,
  .notify-form,
  .site-footer {
    font-size: .84rem;
  }

  .how-it-works h2,
  .paint-action {
    font-family: "Fraunces", Georgia, serif;
  }
}

@media (max-width: 900px) {
  .hero__content {
    top: 3.95rem;
    height: calc(50svh - 4rem);
    gap: .26rem;
  }

  .hero__eyebrow {
    margin-bottom: .12rem;
  }

  .hero__title {
    line-height: .84;
  }

  .hero__intro {
    max-width: 31rem;
    color: rgba(31, 38, 34, .86);
    line-height: 1.28;
    text-shadow:
      0 1px 14px rgba(247, 242, 234, 1),
      0 0 5px rgba(247, 242, 234, .95);
  }

  .hero__usps {
    margin-top: .08rem;
  }

  .hero__usp{
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, .7),
        rgba(255, 255, 255, .34)
      );
  }
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 50%;
  color: var(--ink);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .42),
      rgba(247, 242, 234, .16)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 .65rem 1.8rem rgba(42, 38, 31, .07);
  text-decoration: none;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition:
    transform var(--transition),
    background var(--transition);
width: var(--header-control-height);
  flex: 0 0 var(--header-control-height);
  place-items: center;}

.social-link:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .58),
      rgba(247, 242, 234, .24)
    );
}

.social-link svg {
  width: 1.12rem;
  height: 1.12rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link__dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 900px) {
  .hero__intro {
    margin-top: calc(.42rem + 10px);
  }

  .site-header__actions {
    gap: .38rem;
  }

  .site-status {
    gap: .4em;
    padding-inline: .66em;
    font-size: .72rem;
    letter-spacing: .055em;
  }

  .social-link {
    width: 2rem;
    height: 2rem;
  }

  .social-link svg {
    width: .98rem;
    height: .98rem;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.site-status,
.social-link {
  height: var(--header-control-height);
  min-height: var(--header-control-height);
}

.notify-form.is-success .notify-form__field {
  border-color: rgba(67, 139, 93, .4);
  background:
    linear-gradient(
      135deg,
      rgba(234, 248, 239, .82),
      rgba(255, 255, 255, .24)
    );
}

.notify-form.is-success input {
  color: #34734d;
}

.notify-form.is-success button {
  background: #579f70;
}

.notify-form__message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-header__actions {
    gap: .38rem;
  }

  .notify-form__message {
    position: absolute;
    right: .75rem;
    bottom: calc(100% + .42rem);
    left: .75rem;
    display: block;
    margin: 0;
    padding: .45rem .65rem;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 999px;
    color: #34734d;
    background: rgba(247, 242, 234, .86);
    box-shadow: 0 .55rem 1.5rem rgba(42, 38, 31, .08);
    text-align: center;
    pointer-events: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

.ambient-effects {
  position: fixed;
  z-index: 80;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.ambient-effects__flares,
.ambient-effects__dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient-flare {
  position: absolute;
  border-radius: 50%;
  opacity: .66;
  mix-blend-mode: screen;
  filter: blur(9px);
  will-change: transform, opacity;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, .5) 0%,
      rgba(255, 245, 222, .28) 22%,
      rgba(255, 229, 199, .12) 48%,
      transparent 72%
    );
}

.ambient-flare--one {
  top: -9rem;
  left: -7rem;
  width: 31rem;
  height: 31rem;
  animation: flare-float-one 15s ease-in-out infinite;
}

.ambient-flare--two {
  top: 4%;
  right: -7rem;
  width: 25rem;
  height: 25rem;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, .46) 0%,
      rgba(224, 238, 247, .24) 25%,
      rgba(206, 224, 239, .1) 50%,
      transparent 72%
    );
  animation: flare-float-two 18s ease-in-out infinite;
}

.ambient-flare--three {
  right: 22%;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, .42) 0%,
      rgba(239, 213, 227, .22) 26%,
      rgba(231, 198, 216, .09) 52%,
      transparent 72%
    );
  animation: flare-float-three 17s ease-in-out infinite;
}

.ambient-flare--four {
  top: 43%;
  left: 29%;
  width: 14rem;
  height: 14rem;
  opacity: .42;
  animation: flare-float-four 13s ease-in-out infinite;
}

.ambient-effects__particle{
  position: absolute;
  display: block;
  width: .28rem;
  height: .28rem;
  border-radius: 50%;
  background: rgba(255, 252, 235, .94);
  box-shadow:
    0 0 .35rem rgba(255, 244, 207, .82),
    0 0 .95rem rgba(255, 230, 186, .38);
  opacity: 0;
  will-change: transform, opacity;
  animation: dust-particle 7.5s ease-in-out infinite;
}

.ambient-effects__particle:nth-child(1){ left: 5%;  top: 17%; animation-delay: -.3s; }
.ambient-effects__particle:nth-child(2){ left: 11%; top: 65%; animation-delay: -2.2s; width: .4rem; height: .4rem; }
.ambient-effects__particle:nth-child(3){ left: 18%; top: 35%; animation-delay: -4.8s; }
.ambient-effects__particle:nth-child(4){ left: 24%; top: 82%; animation-delay: -1.4s; }
.ambient-effects__particle:nth-child(5){ left: 29%; top: 12%; animation-delay: -5.9s; width: .36rem; height: .36rem; }
.ambient-effects__particle:nth-child(6){ left: 35%; top: 51%; animation-delay: -3.1s; }
.ambient-effects__particle:nth-child(7){ left: 41%; top: 73%; animation-delay: -.8s; }
.ambient-effects__particle:nth-child(8){ left: 46%; top: 23%; animation-delay: -6.2s; width: .42rem; height: .42rem; }
.ambient-effects__particle:nth-child(9){ left: 51%; top: 61%; animation-delay: -2.8s; }
.ambient-effects__particle:nth-child(10){ left: 57%; top: 8%;  animation-delay: -4.2s; }
.ambient-effects__particle:nth-child(11){ left: 62%; top: 42%; animation-delay: -1.9s; width: .36rem; height: .36rem; }
.ambient-effects__particle:nth-child(12){ left: 67%; top: 78%; animation-delay: -5.2s; }
.ambient-effects__particle:nth-child(13){ left: 72%; top: 19%; animation-delay: -.5s; }
.ambient-effects__particle:nth-child(14){ left: 77%; top: 54%; animation-delay: -3.7s; width: .42rem; height: .42rem; }
.ambient-effects__particle:nth-child(15){ left: 82%; top: 87%; animation-delay: -6.7s; }
.ambient-effects__particle:nth-child(16){ left: 88%; top: 31%; animation-delay: -2.5s; }
.ambient-effects__particle:nth-child(17){ left: 94%; top: 68%; animation-delay: -4.5s; width: .38rem; height: .38rem; }
.ambient-effects__particle:nth-child(18){ left: 8%;  top: 91%; animation-delay: -6s; }
.ambient-effects__particle:nth-child(19){ left: 21%; top: 6%;  animation-delay: -2.9s; }
.ambient-effects__particle:nth-child(20){ left: 39%; top: 93%; animation-delay: -1.1s; width: .4rem; height: .4rem; }
.ambient-effects__particle:nth-child(21){ left: 54%; top: 34%; animation-delay: -5.5s; }
.ambient-effects__particle:nth-child(22){ left: 69%; top: 66%; animation-delay: -3.4s; }
.ambient-effects__particle:nth-child(23){ left: 85%; top: 12%; animation-delay: -.9s; }
.ambient-effects__particle:nth-child(24){ left: 97%; top: 46%; animation-delay: -6.4s; width: .4rem; height: .4rem; }

@keyframes dust-particle {
  0%,
  100% {
    opacity: .12;
    transform: translate3d(0, .7rem, 0) scale(.72);
  }

  38% {
    opacity: .96;
  }

  72% {
    opacity: .28;
    transform: translate3d(.3rem, -.85rem, 0) scale(1.16);
  }
}

@keyframes flare-float-one {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .48; }
  50% { transform: translate3d(1.1rem, .7rem, 0) scale(1.04); opacity: .78; }
}

@keyframes flare-float-two {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .4; }
  50% { transform: translate3d(-1rem, 1rem, 0) scale(1.06); opacity: .72; }
}

@keyframes flare-float-three {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: .38; }
  50% { transform: translate3d(-.8rem, -.7rem, 0) scale(1.05); opacity: .68; }
}

@keyframes flare-float-four {
  0%,
  100% { transform: translate3d(0, .3rem, 0) scale(.96); opacity: .2; }
  50% { transform: translate3d(.5rem, -.5rem, 0) scale(1.08); opacity: .55; }
}

@media (max-width: 900px) {
  .paint-action--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ambient-flare--one {
    width: 23rem;
    height: 23rem;
  }

  .ambient-flare--two {
    width: 18rem;
    height: 18rem;
  }

  .ambient-flare--three {
    width: 17rem;
    height: 17rem;
  }

  .ambient-effects__particle{
    opacity: .1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-status__dot,
  .notify-form__reflection,
  .how-it-works__reflection,
  .paint-action[data-state="try"],
  .paint-action[data-state="try"]::before,
  .ambient-flare,
  .ambient-effects__particle {
    animation: none;
  }

  .ambient-effects__particle {
    opacity: .34;
  }
}
