.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: #fff;
  color: #090909;
  padding: 11px 15px;
  font-weight: 700;
  transition: transform .2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.nav a:focus-visible:after {
  right: 0;
}

.environment-banner {
  position: relative;
  z-index: 6;
  margin-top: 78px;
  min-height: 48px;
  padding: 11px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #2b1a00;
  border-block: 1px solid #ffb52b55;
  color: #f5c66b;
  font-size: 13px;
}

.environment-banner[hidden] {
  display: none;
}

.environment-banner strong {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.noscript-notice {
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  background: #3a0c10;
  border-bottom: 1px solid #ff1b2855;
  color: #ffd3d6;
  text-align: center;
}

.environment-banner + .pricing-hero {
  padding-top: 122px;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: .75;
}

.checkout-button.is-loading:disabled {
  cursor: wait;
}

.checkout-button.is-loading span {
  animation: checkoutPulse .8s ease-in-out infinite alternate;
}

.delivery-section {
  max-width: var(--max);
  margin: auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.delivery-heading h2 {
  font: 46px/.98 var(--display);
  text-transform: uppercase;
  margin: 0;
}

.delivery-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff80;
}

.delivery-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #333;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid #333;
}

.delivery-steps li > span {
  font: 10px var(--display);
  color: var(--red);
  padding-top: 4px;
}

.delivery-steps strong {
  font: 17px var(--display);
  text-transform: uppercase;
}

.delivery-steps p {
  color: #aaa;
  margin: 6px 0 0;
}

.delivery-note {
  grid-column: 2;
  color: #aaa;
  font-size: 13px;
  border-left: 2px solid var(--red);
  padding-left: 15px;
  margin: 0;
}

.checkout-consent {
  max-width: var(--max);
  margin: -70px auto 110px;
  padding: 22px 24px;
  border: 1px solid #303030;
  background: #0c0c0c;
  color: #aaa;
  font-size: 13px;
  line-height: 1.75;
}

.checkout-consent a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #ff1b28a6;
  text-underline-offset: 3px;
}

.checkout-consent a:hover {
  text-decoration-color: #ff1b28;
}

.portal-noscript {
  margin-top: 66px;
}

.no-js [data-activation-card] {
  display: none;
}

.no-js .portal-main {
  grid-template-columns: 1fr;
}

.no-js .portal-intro {
  position: static;
  max-width: 720px;
}

.machine-screenshot {
  min-width: 0;
  margin: 0;
}

.machine-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #444;
  background: #131313;
}

.machine-screenshot-zoom {
  height: 92px;
  margin-top: 7px;
  overflow: hidden;
  border: 1px solid #444;
  background: #131313;
}

.machine-screenshot-zoom img {
  width: 200%;
  max-width: none;
  transform: translate(-12.5%, -32%);
  border: 0;
}

.machine-screenshot figcaption {
  margin-top: 8px;
  color: #aaa;
  font-size: 10px;
  line-height: 1.45;
}

@keyframes checkoutPulse {
  to {
    opacity: .2;
    transform: translateX(4px);
  }
}

@media (max-width: 900px) {
  .delivery-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .delivery-note {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .environment-banner {
    margin-top: 66px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-inline: 18px;
  }

  .environment-banner + .pricing-hero {
    padding-top: 95px;
  }

  .delivery-section {
    padding: 80px 18px;
  }

  .delivery-heading h2 {
    font-size: 38px;
  }

  .checkout-consent {
    margin: -45px 18px 80px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-button.is-loading span {
    animation: none;
  }
}
