/* Approved Proto thumbnail treatment, scoped independently of app-page styles. */
.proto-popup {
  position: fixed;
  inset: auto 24px calc(24px + var(--proto-cookie-clearance, 0px)) auto;
  z-index: 110;
  margin: 0;
  padding: 0;
  width: min(420px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px - var(--proto-cookie-clearance, 0px));
  overflow: auto;
  border: 0;
  border-radius: 16px;
  color: var(--ink-deep);
  background: #fff;
  box-shadow:
    0 14px 42px -14px #2210444d,
    0 2px 8px #0000000f;
  font: 400 1rem/1.5 var(--font-body);
  text-align: left;
}
.proto-popup[open] {
  animation: proto-popup-enter 0.25s ease-out;
}
.proto-popup-launcher {
  position: fixed;
  inset: auto 24px calc(24px + var(--proto-cookie-clearance, 0px)) auto;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  box-sizing: border-box;
  width: max-content;
  height: 48px;
  margin: 0;
  padding: 0 var(--space-4);
  border: 1px solid #ffffff50;
  border-radius: 999px;
  color: white;
  background:
    radial-gradient(
      ellipse at 90% 0,
      color-mix(in oklch, var(--tacet-orange), transparent 20%),
      transparent 66%
    ),
    linear-gradient(118deg, color-mix(in oklch, var(--red), var(--tacet-orange) 22%), var(--red));
  box-shadow:
    0 8px 24px -8px #22104466,
    0 2px 6px #00000014;
  font: 600 1rem/1 var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: box-shadow 0.16s ease-out;
}
.proto-popup-launcher[hidden] {
  display: none !important;
}
.proto-popup-launcher:hover {
  box-shadow:
    0 10px 28px -8px #22104480,
    0 0 0 1px #ffffff80;
}
.proto-popup-launcher:focus-visible {
  outline: 3px solid var(--tacet-orange);
  outline-offset: 3px;
}
.proto-popup-launcher img {
  flex: none;
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}
.proto-popup-launcher svg {
  flex: none;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proto-popup *,
.proto-popup *::before,
.proto-popup *::after {
  box-sizing: border-box;
}
.proto-popup [hidden] {
  display: none !important;
}
.proto-popup button,
.proto-popup a,
.proto-popup textarea {
  font: inherit;
}
.proto-popup button {
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
}
.proto-popup button:focus-visible,
.proto-popup a:focus-visible,
.proto-popup textarea:focus-visible {
  outline: 3px solid var(--tacet-orange);
  outline-offset: -4px;
}
.proto-popup svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proto-popup__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.proto-popup .proto-popup__close {
  position: absolute;
  z-index: 4;
  top: 3px;
  right: 3px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  border-radius: 50%;
}
.proto-popup__close::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #32150880;
  border: 1px solid #ffffff26;
}
.proto-popup__close svg {
  position: relative;
  width: 17px;
  height: 17px;
}
.proto-popup__close:hover::before {
  background: #321508e6;
}
.proto-popup__media {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  background: #241447;
}
.proto-popup .proto-popup__art {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  min-height: 236px;
  padding: 32px 24px 92px;
  overflow: hidden;
  border: 0;
  text-align: left;
  color: white;
  background:
    radial-gradient(
      ellipse at 90% 0,
      color-mix(in oklch, var(--tacet-orange), transparent 20%),
      transparent 66%
    ),
    linear-gradient(118deg, color-mix(in oklch, var(--red), var(--tacet-orange) 22%), var(--red));
}
.proto-popup__halo {
  position: absolute;
  z-index: -1;
  top: -104px;
  right: -121px;
  width: 365px;
  height: 365px;
  border: 1px solid #ffffff30;
  border-radius: 50%;
}
.proto-popup__screen {
  position: absolute;
  z-index: -1;
  top: 79px;
  right: -87px;
  width: 258px;
  aspect-ratio: 1.48;
  overflow: hidden;
  border-radius: 9px;
  transform: rotate(-5deg);
  background: white;
  box-shadow: -8px 14px 28px #18072d66;
  border: 1px solid #fff5;
}
.proto-popup__screen img {
  position: absolute;
  width: 200%;
  height: auto;
  max-width: none;
  left: -45%;
  bottom: 0;
}
.proto-popup__copy {
  display: block;
  position: relative;
  max-width: 250px;
}
.proto-popup__headline {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.proto-popup__headline em {
  font-style: normal;
  color: var(--background);
}
.proto-popup__example {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
}
.proto-popup__example strong {
  color: white;
  font-weight: 550;
}
.proto-popup__art[data-long-title='true'] .proto-popup__headline {
  font-size: 1.75rem;
}
.proto-popup__art[data-long-title='true'] .proto-popup__copy {
  max-width: 280px;
}
.proto-popup__art[data-long-title='true'] .proto-popup__screen {
  right: -107px;
}
.proto-popup__art[data-long-title='extended'] .proto-popup__copy {
  max-width: 335px;
}
.proto-popup__art[data-long-title='extended'] .proto-popup__headline {
  font-size: 1.5rem;
}
.proto-popup__art[data-long-title='extended'] .proto-popup__screen {
  opacity: 0.15;
}
.proto-popup__brand {
  position: absolute;
  left: 25px;
  bottom: 19px;
  padding-left: calc(var(--space-10) + var(--space-3));
  display: flex;
  align-items: center;
  gap: var(--space-3);
  letter-spacing: -0.02em;
}
.proto-popup__brand > img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 100%;
  max-height: none;
  filter: brightness(0) invert(1);
}
.proto-popup__brand > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proto-popup__brand strong {
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 650;
}
.proto-popup__brand > span > span {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}
.proto-popup .proto-popup__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 63px;
  margin: 0;
  padding: var(--space-4) var(--space-6);
  border: 0;
  background: white;
  color: var(--ink-deep);
  text-decoration: none;
  text-align: left;
}
.proto-popup__download > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.proto-popup__download strong {
  font-size: 1rem;
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 600;
}
.proto-popup__download small {
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--text-m);
}
.proto-popup__download > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 10px;
  background: var(--red);
  color: white;
}
.proto-popup__download:hover {
  background: var(--muted);
}
.proto-popup__download:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.proto-popup .proto-popup__mobile {
  justify-content: center;
  font-size: 17px;
  font-weight: 650;
}
.proto-popup__mobile > svg {
  background: transparent;
  padding: 0;
  width: 18px;
  height: 18px;
  color: currentColor;
}
.proto-popup__install {
  padding: 22px;
}
.proto-popup__back {
  padding: 8px 0;
  margin-bottom: 14px;
  color: var(--red);
  background: transparent;
  border: 0;
  text-decoration: underline;
}
.proto-popup__install h2 {
  font:
    650 29px/1.12 Supreme,
    Arial,
    sans-serif;
  margin: 0 18px 14px 0;
  letter-spacing: -0.03em;
}
.proto-popup__install p {
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 18px;
}
.proto-popup__install label,
.proto-popup__fallback label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.proto-popup textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  padding: 12px;
  color: var(--ink-deep);
  background: #faf7fd;
  border: 1px solid #d8cfe2;
  border-radius: 8px;
  resize: vertical;
  font-size: 15px;
  line-height: 1.4;
}
.proto-popup__copy-button {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  margin: 12px 0;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--red);
  font-weight: 600 !important;
}
.proto-popup__install .proto-popup__help {
  font-size: 13px;
  margin: 0;
  color: var(--text-m);
}
.proto-popup__feedback:empty {
  display: none;
}
.proto-popup__feedback {
  margin: 0;
  padding: 12px 22px;
  font-size: 14px;
}
.proto-popup__fallback {
  padding: 14px 22px 0;
}
.proto-popup[data-install] .proto-popup__close {
  color: var(--ink-deep);
}
.proto-popup[data-install] .proto-popup__close::before {
  background: var(--muted);
}
@keyframes proto-popup-enter {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .proto-popup {
    inset: auto 10px calc(10px + var(--proto-cookie-clearance, 0px)) auto;
    width: min(420px, calc(100vw - 20px));
    max-height: calc(100dvh - 24px - var(--proto-cookie-clearance, 0px));
    border-radius: 14px;
  }
  .proto-popup-launcher {
    inset: auto 10px calc(10px + var(--proto-cookie-clearance, 0px)) auto;
  }
  .proto-popup__media,
  .proto-popup .proto-popup__art {
    min-height: 200px;
  }
  .proto-popup .proto-popup__art {
    padding: 28px 21px 77px;
  }
  .proto-popup__copy {
    max-width: 222px;
  }
  .proto-popup__headline {
    font-size: 1.75rem;
  }
  .proto-popup__art[data-long-title='true'] .proto-popup__headline {
    font-size: 29px;
  }
  .proto-popup__art[data-long-title='extended'] .proto-popup__headline {
    font-size: 24px;
  }
  .proto-popup__art[data-long-title='extended'] .proto-popup__copy {
    max-width: calc(100% - 18px);
  }
  .proto-popup__screen {
    width: 218px;
    right: -87px;
    top: 74px;
  }
  .proto-popup__example {
    font-size: 14px;
    margin-top: 12px;
  }
  .proto-popup__brand {
    left: 22px;
    bottom: 16px;
  }
  .proto-popup__brand strong {
    font-size: 17px;
  }
  .proto-popup__brand > span > span {
    font-size: 13px;
  }
  .proto-popup__download strong {
    font-size: 17px;
  }
}
@media (max-width: 360px) {
  .proto-popup .proto-popup__art {
    padding-top: 26px;
  }
  .proto-popup__headline,
  .proto-popup__art[data-long-title='true'] .proto-popup__headline {
    font-size: 25px;
  }
  .proto-popup__copy {
    max-width: 195px;
  }
  .proto-popup__example {
    font-size: 12px;
  }
  .proto-popup__brand {
    bottom: 12px;
  }
  .proto-popup__brand strong {
    font-size: 15px;
  }
  .proto-popup__brand > span > span {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proto-popup[open] {
    animation: none;
  }
  .proto-popup-launcher {
    transition: none;
  }
}
