@font-face {
  font-family: "League Gothic";
  src: url("../fonts/LeagueGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Courier Prime";
  src: url("../fonts/CourierPrime-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pl-black: #000000;
  --pl-void: #030303;
  --pl-ink: #050505;
  --pl-plate: #0b0b0b;
  --pl-white: #ffffff;
  --pl-mist: #d5d5d2;
  --pl-grey: #888b8e;
  --pl-rose: #e68990;
  --pl-red: #dd4144;
  --pl-panel: #0b0b0b;
  --pl-line: rgba(255,255,255,.12);
  --pl-line-strong: rgba(255,255,255,.18);
  --pl-red-line: rgba(221,65,68,.5);
  --pal-button-rest: #888B8E;
  --pal-button-hover: #D5D5D2;
  --pal-button-active: #DD4144;
  --pal-nav-rest: #888B8E;
  --pl-radius: 7px;
  --pl-shadow-panel: 0 24px 72px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.045);
  --pl-max: 1180px;
  --pal-content-width: var(--pl-max);
  --pal-header-content-width: calc(var(--pal-content-width) + 12vw);
  --pal-page-gutter: 20px;
}

* { box-sizing: border-box; }

html {
  background: var(--pl-black);
  color: var(--pl-white);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 16px;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(221,65,68,.12), transparent 30rem),
    radial-gradient(circle at 8% 44%, rgba(230,137,144,.055), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #000000 34%, #050505 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018), rgba(255,255,255,.018) 1px, transparent 1px, transparent 8px);
  background-size: 32px 32px, 32px 32px, auto;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.84), rgba(0,0,0,.2) 46%, rgba(0,0,0,.62));
  opacity: .58;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    url("../graphics/contour-black-b.png") 92% 8% / min(48vw, 720px) auto no-repeat,
    url("../graphics/contour-red-b.png") -12% 68% / min(42vw, 560px) auto no-repeat;
  filter: invert(1);
  opacity: .035;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection {
  background: rgba(221,65,68,.82);
  color: var(--pl-white);
}

h1, h2, h3,
.brand,
.pl-label {
  font-family: "League Gothic", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin: 0; }

h1,
.wp-block-heading.has-x-large-font-size {
  max-width: 820px;
  font-size: clamp(4.6rem, 14vw, 11rem);
  line-height: .78;
}

h2,
.wp-block-heading.has-large-font-size {
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .82;
}

h3 {
  color: var(--pl-white);
  font-size: 2rem;
  line-height: .9;
}

p, li, label, input, select, textarea {
  color: var(--pl-mist);
  line-height: 1.62;
}

p, li {
  text-wrap: pretty;
}

:where(a, button, input, textarea, select, .wp-block-button__link):focus-visible {
  outline: 1px solid var(--pl-rose);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(221,65,68,.14);
}

.wp-site-blocks {
  position: relative;
  z-index: 1;
}

.pal-ui-button,
.pal-nav-button a,
.pal-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 13px 24px;
  background: transparent;
  color: var(--pal-button-rest);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  box-shadow: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pal-ui-button:hover,
.pal-nav-button a:hover,
.pal-hero-button:hover {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-hover);
  box-shadow: none;
}

.pal-ui-button:focus-visible,
.pal-nav-button a:focus-visible,
.pal-hero-button:focus-visible {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-hover);
}

.pal-ui-button:active,
.pal-ui-button[aria-pressed="true"],
.pal-ui-button.is-active,
.pal-ui-button.active,
.pal-nav-button a:active,
.pal-nav-button a[aria-current="page"],
.pal-nav-button a[aria-pressed="true"],
.pal-nav-button a.is-active,
.pal-nav-button a.active,
.pal-hero-button:active,
.pal-hero-button[aria-current="page"],
.pal-hero-button[aria-pressed="true"],
.pal-hero-button.is-active,
.pal-hero-button.active {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-active);
}

.pal-meta-pill,
.kicker,
.pl-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 29px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  padding: 7px 10px 5px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    #050505;
  color: var(--pl-rose);
  cursor: default;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .7rem;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), inset 0 -1px 0 rgba(0,0,0,.7);
}

.pl-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: grid !important;
  grid-template-columns:
    minmax(var(--pal-page-gutter), 1fr)
    minmax(0, min(var(--pal-header-content-width), calc(100vw - var(--pal-page-gutter) * 2)))
    minmax(var(--pal-page-gutter), 1fr);
  align-items: center;
  min-height: 64px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.105);
  background:
    linear-gradient(180deg, rgba(15,15,15,.94), rgba(0,0,0,.9)),
    rgba(0,0,0,.92);
  backdrop-filter: blur(18px) saturate(118%);
  box-shadow: 0 10px 36px rgba(0,0,0,.36);
}

.wp-site-blocks {
  padding-top: 64px;
}

.admin-bar .pl-site-header {
  top: 32px;
}

.admin-bar .wp-site-blocks {
  padding-top: 96px;
}

.pal-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 2;
  gap: clamp(18px, 4vw, 42px);
  width: 100% !important;
  min-height: 44px;
  margin: 0 !important;
}

.pl-site-header > .pl-brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
}

.pl-site-header > .wp-block-navigation {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.pl-brand {
  display: flex;
  align-items: center;
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: .8;
  text-transform: uppercase;
  white-space: nowrap;
}

.pl-brand .wp-block-site-title,
.pl-brand .wp-block-site-title a {
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.pl-site-header .wp-block-navigation {
  gap: 8px;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1;
}

.pl-site-header .wp-block-navigation a,
.pl-site-header .wp-block-navigation a:link,
.pl-site-header .wp-block-navigation a:visited,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content:link,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 14px 28px;
  background: transparent;
  color: var(--pal-nav-rest);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1;
  text-align: center;
  box-shadow: none;
}

.pl-site-header .wp-block-navigation a:hover,
.pl-site-header .wp-block-navigation a:focus-visible,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content:focus-visible,
.pl-site-header .wp-block-navigation .current-menu-item > a:hover,
.pl-site-header .wp-block-navigation .current-menu-ancestor > a:hover,
.pl-site-header .wp-block-navigation .current_page_item > a:hover,
.pl-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content:hover,
.pl-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content:hover,
.pl-site-header .wp-block-navigation .current_page_item > .wp-block-navigation-item__content:hover {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-hover);
  box-shadow: none;
}

.pl-site-header .wp-block-navigation a:active,
.pl-site-header .wp-block-navigation a[aria-current="page"],
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content:active,
.pl-site-header .wp-block-navigation .wp-block-navigation-item__content[aria-current="page"],
.pl-site-header .wp-block-navigation .current-menu-item > a,
.pl-site-header .wp-block-navigation .current-menu-ancestor > a,
.pl-site-header .wp-block-navigation .current_page_item > a,
.pl-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
.pl-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content,
.pl-site-header .wp-block-navigation .current_page_item > .wp-block-navigation-item__content {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-active);
  box-shadow: none;
}

.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  min-height: 100vh;
  max-width: none;
  margin: 0;
  overflow-y: auto;
  background:
    linear-gradient(180deg, #0b0b0b, #000),
    var(--pl-black);
  color: var(--pl-white);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog::before {
  content: "PANORAMA LABS";
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 2rem;
  line-height: .8;
  text-transform: uppercase;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 92px 22px 28px;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  width: 100%;
}

.wp-block-navigation__responsive-container.is-menu-open a,
.wp-block-navigation__responsive-container.is-menu-open a:link,
.wp-block-navigation__responsive-container.is-menu-open a:visited,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:link,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 14px 18px;
  background: transparent;
  color: var(--pal-nav-rest);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .82rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.wp-block-navigation__responsive-container.is-menu-open a:hover,
.wp-block-navigation__responsive-container.is-menu-open a:focus,
.wp-block-navigation__responsive-container.is-menu-open a:focus-visible,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus-visible {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-hover);
  box-shadow: none;
}

.wp-block-navigation__responsive-container.is-menu-open a:active,
.wp-block-navigation__responsive-container.is-menu-open a[aria-current="page"],
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:active,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content[aria-current="page"],
.wp-block-navigation__responsive-container.is-menu-open .current-menu-item > a,
.wp-block-navigation__responsive-container.is-menu-open .current-menu-ancestor > a,
.wp-block-navigation__responsive-container.is-menu-open .current_page_item > a,
.wp-block-navigation__responsive-container.is-menu-open .current-menu-item > .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open .current-menu-ancestor > .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open .current_page_item > .wp-block-navigation-item__content {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-active);
  box-shadow: none;
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--pl-white);
}

.wp-block-navigation__responsive-container-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 10000;
}

.wp-block-navigation__responsive-container-close svg,
.wp-block-navigation__responsive-container-open svg {
  stroke: currentColor;
  fill: currentColor;
}

.pl-section,
.pl-hero,
.pl-split-section,
.pl-card-section,
.pl-aperture-band,
.pl-form-page,
.pl-editorial,
.pl-post-grid,
.pl-final-cta {
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 116px) 0;
}

.pl-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 74px;
  padding-bottom: 80px;
}

.pl-hero::before {
  content: "";
  position: absolute;
  inset: 36px -6vw 18px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 9px;
  background:
    radial-gradient(circle at 82% 34%, rgba(221,65,68,.16), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.042), transparent 34%),
    linear-gradient(180deg, rgba(11,11,11,.64), rgba(0,0,0,.42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.pl-hero-copy {
  display: grid;
  gap: 22px;
}

.pl-hero-copy p:not(.kicker) {
  max-width: 680px;
  font-size: 1.04rem;
}

.hero-home.pl-hero {
  grid-template-columns: 1fr;
}

.hero-home .pl-hero-copy,
.hero-home .wp-block-heading.has-x-large-font-size,
.hero-home .pl-hero-copy p:not(.kicker) {
  max-width: none;
  width: 100%;
}

.kicker,
.pl-kicker {
  color: var(--pl-rose);
  gap: 8px;
  font-size: .7rem;
}

.kicker::before,
.pl-kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--pl-red);
  box-shadow: 0 0 10px rgba(221,65,68,.32);
}

.pl-hero-copy .kicker,
.pl-hero-copy .pl-kicker {
  margin-bottom: 2px;
}

.wp-block-buttons {
  gap: 12px;
}

.wp-block-button__link,
.button,
.btn,
a.cta,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close),
input[type="submit"],
input[type="button"],
.wpcf7-submit,
.pl-form-mockup [role="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 13px 24px;
  background: transparent;
  color: var(--pal-button-rest);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.is-style-outline > .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link,
.button-secondary {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-rest);
  text-shadow: none;
  box-shadow: none;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.wp-block-button .wp-block-button__link.wp-element-button:hover,
.wp-block-button .wp-block-button__link.wp-element-button:focus-visible,
.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible,
a.cta:hover,
a.cta:focus-visible,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):hover,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
input[type="button"]:hover,
input[type="button"]:focus-visible,
.wpcf7-submit:hover,
.wpcf7-submit:focus-visible,
.pl-form-mockup [role="button"]:hover,
.pl-form-mockup [role="button"]:focus-visible {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-hover);
  transform: none;
  box-shadow: none;
}

.wp-block-button__link:active,
.wp-block-button__link[aria-current="page"],
.wp-block-button__link[aria-pressed="true"],
.wp-block-button__link.is-active,
.wp-block-button__link.active,
.button:active,
.button[aria-current="page"],
.button[aria-pressed="true"],
.button.is-active,
.button.active,
.btn:active,
.btn[aria-current="page"],
.btn[aria-pressed="true"],
.btn.is-active,
.btn.active,
a.cta:active,
a.cta[aria-current="page"],
a.cta[aria-pressed="true"],
a.cta.is-active,
a.cta.active,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):active,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close)[aria-pressed="true"],
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close).is-active,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close).active,
input[type="submit"]:active,
input[type="submit"].is-active,
input[type="submit"].active,
input[type="button"]:active,
input[type="button"].is-active,
input[type="button"].active,
.wpcf7-submit:active,
.wpcf7-submit.is-active,
.wpcf7-submit.active,
.pl-form-mockup [role="button"]:active,
.pl-form-mockup [role="button"][aria-current="page"],
.pl-form-mockup [role="button"][aria-pressed="true"],
.pl-form-mockup [role="button"].is-active,
.pl-form-mockup [role="button"].active {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-active);
  box-shadow: none;
}

.wp-block-button__link:disabled,
.wp-block-button__link[disabled],
.wp-block-button__link[aria-disabled="true"],
.button:disabled,
.button[disabled],
.button[aria-disabled="true"],
.button.disabled,
.btn:disabled,
.btn[disabled],
.btn[aria-disabled="true"],
.btn.disabled,
a.cta[aria-disabled="true"],
a.cta.disabled,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):disabled,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close)[disabled],
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close)[aria-disabled="true"],
input[type="submit"]:disabled,
input[type="submit"][disabled],
input[type="submit"][aria-disabled="true"],
input[type="button"]:disabled,
input[type="button"][disabled],
input[type="button"][aria-disabled="true"],
.wpcf7-submit:disabled,
.wpcf7-submit[disabled],
.wpcf7-submit[aria-disabled="true"],
.pl-form-mockup [role="button"][aria-disabled="true"],
.pl-form-mockup [role="button"].disabled {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-button-rest);
  cursor: not-allowed;
  opacity: .55;
}

.pl-form-mockup .pal-kit-form .formkit-submit {
  min-height: 44px !important;
  border: 1px solid currentColor !important;
  padding: 13px 24px !important;
  background: transparent !important;
  color: var(--pal-button-rest) !important;
  box-shadow: none !important;
}

.pl-form-mockup .pal-kit-form .formkit-submit > span {
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
}

.pl-form-mockup .pal-kit-form .formkit-submit:hover,
.pl-form-mockup .pal-kit-form .formkit-submit:focus,
.pl-form-mockup .pal-kit-form .formkit-submit:focus-visible {
  border-color: currentColor !important;
  background: transparent !important;
  color: var(--pal-button-hover) !important;
  box-shadow: none !important;
}

.pl-form-mockup .pal-kit-form .formkit-submit:active,
.pl-form-mockup .pal-kit-form .formkit-submit[aria-pressed="true"],
.pl-form-mockup .pal-kit-form .formkit-submit.is-active,
.pl-form-mockup .pal-kit-form .formkit-submit.active {
  border-color: currentColor !important;
  background: transparent !important;
  color: var(--pal-button-active) !important;
  box-shadow: none !important;
}

.pl-signal-panel,
.pl-plugin-plate {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--pl-line-strong);
  border-radius: var(--pl-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.016)),
    radial-gradient(circle at 76% 24%, rgba(221,65,68,.16), transparent 18rem),
    linear-gradient(180deg, #0b0b0b, #030303);
  box-shadow: var(--pl-shadow-panel);
}

.pl-signal-panel::before,
.pl-plugin-plate::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 5px;
  pointer-events: none;
}

.pl-signal-panel img {
  position: absolute;
  inset: -12% auto auto -18%;
  width: 128%;
  max-width: none;
  opacity: .62;
  mix-blend-mode: screen;
}

.pl-signal-panel:has(img[src*="sideforge-layout" i]) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(14px, 2vw, 24px);
}

.pl-signal-panel:has(img[src*="sideforge-layout" i])::after {
  display: none;
}

.pl-signal-panel img[src*="sideforge-layout" i] {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
}

.wp-block-image:has(img[src*="sideforge-layout" i]) {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
}

.wp-block-image img[src*="sideforge-layout" i] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.pl-plugin-plate img {
  position: absolute;
  inset: 18% auto auto -12%;
  width: 118%;
  max-width: none;
  opacity: .48;
}

.pl-signal-panel::after,
.pl-plugin-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(221,65,68,.18) 0 1px, transparent 1px) 50% 0 / 26px 100%,
    repeating-linear-gradient(0deg, rgba(255,255,255,.028), rgba(255,255,255,.028) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  opacity: .82;
}

.pl-meter-grid {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  gap: 9px 24px;
  min-width: 220px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  padding: 14px 16px;
  background: rgba(0,0,0,.58);
  color: var(--pl-mist);
  font-size: .85rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.pl-meter-grid p {
  margin: 0;
}

.pl-meter-grid p:nth-child(2n),
.pl-meter-grid span:nth-child(2n) {
  color: var(--pl-red);
  text-align: right;
}

.pl-section-header {
  display: grid;
  gap: 16px;
  max-width: 850px;
}

.pl-split-section,
.pl-aperture-band,
.pl-form-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 46px;
  align-items: start;
}

.pl-aperture-inline-heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.pl-aperture-inline-heading > .wp-block-heading {
  flex: 0 0 auto;
  margin: 0;
}

.pl-aperture-striped-title {
  color: #a4a3a1;
  font-family: "League Gothic", Impact, sans-serif;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .pl-aperture-striped-title {
    background: linear-gradient(
      to bottom,
      #dad9d7 0%,
      #dad9d7 46%,
      #c7c6c3 46%,
      #c7c6c3 58%,
      #a4a3a1 58%,
      #a4a3a1 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.pl-aperture-inline-heading > .wp-block-buttons {
  flex: 0 1 auto;
  margin: 0 0 .24em;
}

.pl-technical-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.014)),
    rgba(8,8,8,.86);
  color: var(--pl-mist);
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.pl-technical-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 64px;
  height: 1px;
  background: var(--pl-red);
  opacity: .72;
}

.pl-card-grid,
.pl-card-grid-three,
.pl-card-grid-four,
.pl-card-grid-five,
.pl-post-grid {
  display: grid;
  gap: 14px;
}

.pl-card-grid-three { grid-template-columns: repeat(3, 1fr); margin-top: 38px; }
.pl-card-grid-four { grid-template-columns: repeat(4, 1fr); margin-top: 38px; }
.pl-card-grid-five { grid-template-columns: repeat(5, 1fr); margin-top: 38px; }
.pl-post-grid { grid-template-columns: repeat(2, 1fr); }

.pl-card,
.pl-log-teaser,
.pl-compatibility,
.pl-form-mockup {
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.014)),
    rgba(8,8,8,.86);
  box-shadow: var(--pl-shadow-panel);
}

.pl-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.pl-card::before,
.pl-log-teaser::before,
.pl-compatibility::before,
.pl-form-mockup::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 64px;
  height: 1px;
  background: var(--pl-red);
  opacity: .72;
  pointer-events: none;
}

.pl-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -38px auto;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(221,65,68,.12), transparent 62%);
  opacity: .72;
  pointer-events: none;
}

.pl-card > *,
.pl-log-teaser > *,
.pl-compatibility > *,
.pl-form-mockup > * {
  position: relative;
  z-index: 1;
}

.pl-card .pl-card-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--pl-rose);
  font-size: .78rem;
  letter-spacing: .02em;
}

.pl-card p {
  margin-top: 18px;
  font-size: .92rem;
}

.pl-development-log-page > .pl-post-grid:not(.pl-development-log-grid),
.pl-development-log-page .wp-block-post-content > .pl-post-grid:not(.pl-development-log-grid) {
  display: none;
}

.pl-development-log-query {
  width: 100%;
}

.pl-development-log-query .wp-block-post-template,
.pl-development-log-query .pl-post-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 clamp(72px, 10vw, 116px);
}

.pl-development-log-grid {
  list-style: none;
  padding-left: 0;
}

.pl-development-log-query .wp-block-post,
.pl-development-log-grid > li {
  display: block;
  min-width: 0;
  width: 100%;
  margin: 0;
}

.pl-development-log-query .wp-block-post > *,
.pl-log-card > * {
  min-width: 0;
}

.pl-log-card {
  display: grid;
  align-content: start;
  gap: 18px;
  width: 100%;
  min-width: 0;
  min-height: 280px;
  padding: 26px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pl-log-card:hover,
.pl-log-card:focus-within {
  border-color: rgba(230,137,144,.42);
  background:
    linear-gradient(180deg, rgba(221,65,68,.07), rgba(255,255,255,.014)),
    rgba(8,8,8,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 0 0 1px rgba(221,65,68,.08);
}

.pl-log-card__meta {
  gap: 8px;
  margin-bottom: 6px;
  color: var(--pl-rose);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pl-log-card__meta a,
.pl-log-card__meta time {
  color: var(--pl-rose);
}

.pl-log-card__meta .wp-block-post-date,
.pl-log-card__meta .wp-block-post-terms {
  margin: 0;
}

.pl-log-card .wp-block-post-title {
  display: block;
  width: 100%;
  min-width: 0;
  inline-size: auto;
  max-width: none;
  margin: 0;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  white-space: normal;
  text-wrap: balance;
}

.pl-log-card .wp-block-post-title a {
  display: block;
  width: 100%;
  min-width: 0;
  inline-size: auto;
  color: var(--pl-white);
  text-decoration: none;
  writing-mode: horizontal-tb;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  white-space: normal;
  text-wrap: inherit;
}

.pl-log-card .wp-block-post-title a:hover,
.pl-log-card .wp-block-post-title a:focus-visible {
  color: var(--pl-rose);
}

.pl-log-card .wp-block-post-excerpt,
.pl-log-card .wp-block-post-excerpt__excerpt {
  width: 100%;
  max-width: 56ch;
  margin: 0;
  color: var(--pl-mist);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .92rem;
  line-height: 1.6;
}

.pl-log-card .wp-block-post-excerpt__more-text {
  margin: 0;
}

.pl-log-card .wp-block-post-excerpt__more-link,
.pl-log-card .wp-block-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  padding: 8px 11px 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    #050505;
  color: var(--pl-white);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), inset 0 -1px 0 rgba(0,0,0,.7);
}

.pl-log-card .wp-block-post-excerpt__more-link:hover,
.pl-log-card .wp-block-post-excerpt__more-link:focus-visible,
.pl-log-card .wp-block-read-more:hover,
.pl-log-card .wp-block-read-more:focus-visible {
  border-color: rgba(230,137,144,.66);
  color: var(--pl-rose);
}

.pl-empty-state {
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 28px auto 0;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    rgba(8,8,8,.86);
  color: var(--pl-mist);
}

.pl-single-post {
  position: relative;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 132px) 0;
}

.pl-single-post::before {
  content: "";
  position: absolute;
  inset: 40px -6vw auto auto;
  z-index: -1;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  background: url("../graphics/contour-red-b.png") center / contain no-repeat;
  opacity: .09;
  pointer-events: none;
}

.pl-single-post__meta {
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pl-rose);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .78rem;
  text-transform: uppercase;
}

.pl-single-post__meta a,
.pl-single-post__meta time {
  color: var(--pl-rose);
}

.pl-single-post .wp-block-post-title {
  max-width: none;
  margin-bottom: 34px;
}

.pl-single-post .wp-block-post-content {
  max-width: 760px;
}

.pl-single-post .wp-block-post-content > * + * {
  margin-top: 1.35rem;
}

.pl-single-post .wp-block-post-content h2,
.pl-single-post .wp-block-post-content h3 {
  margin-top: 2.4rem;
}

.pl-aperture-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.115);
  border-bottom: 1px solid rgba(255,255,255,.115);
  background:
    linear-gradient(90deg, rgba(221,65,68,.055), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.2));
}

.pl-aperture-band::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto auto;
  width: 42%;
  aspect-ratio: 1;
  background: url("../graphics/contour-black-c.png") center / contain no-repeat;
  filter: invert(1);
  opacity: .07;
}

.pl-spec-list,
.pl-use-case-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-spec-list li,
.pl-use-case-list li {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 13px 0;
}

.pl-use-case-list {
  grid-template-columns: repeat(5, 1fr);
}

.pl-use-case-list li {
  min-height: 120px;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.pl-log-teaser,
.pl-compatibility,
.pl-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 38px;
}

.pl-final-cta {
  border: 1px solid rgba(221,65,68,.34);
  border-radius: var(--pl-radius);
  background:
    radial-gradient(circle at 88% 72%, rgba(221,65,68,.16), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.064), rgba(255,255,255,.018)),
    #050505;
  color: var(--pl-white);
  box-shadow: var(--pl-shadow-panel);
}

.pl-final-cta h2,
.pl-final-cta p {
  color: var(--pl-white);
  max-width: 760px;
}

.pl-final-cta p {
  color: var(--pl-mist);
}

.pl-final-cta::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% auto;
  width: min(460px, 45vw);
  aspect-ratio: 1;
  background: url("../graphics/contour-red-a.png") center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
}

.pl-final-cta > * {
  position: relative;
  z-index: 1;
}

.pl-final-cta.pl-aperture-band {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(221,65,68,.62);
  background:
    radial-gradient(circle at 84% 22%, rgba(221,65,68,.2), transparent 23rem),
    linear-gradient(115deg, rgba(221,65,68,.13), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    #050505;
  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.055),
    inset 0 0 0 1px rgba(221,65,68,.06);
}

.pl-final-cta.pl-aperture-band::before {
  inset: 4% -4% auto auto;
  width: min(460px, 46%);
  background-image: url("../graphics/contour-red-a.png");
  filter: none;
  opacity: .14;
}

.pl-final-cta.pl-aperture-band::after {
  inset: auto auto -28% -10%;
  width: min(420px, 40vw);
  opacity: .1;
  transform: rotate(18deg);
}

.pl-final-cta.pl-aperture-band figure {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1024 / 484;
  margin: 10px 0 8px;
  border: 1px solid rgba(221,65,68,.3);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 38%, rgba(221,65,68,.12), transparent 48%),
    #020202;
  box-shadow:
    inset 0 0 0 10px rgba(0,0,0,.28),
    0 22px 54px rgba(0,0,0,.38);
}

.pl-final-cta.pl-aperture-band figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pl-final-cta.pl-aperture-band > .wp-block-group {
  display: grid;
  align-content: center;
  gap: 18px;
  width: 100%;
}

.pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) {
  grid-template-columns: max-content auto;
  align-items: end;
  gap: 18px clamp(1.25rem, 2.5vw, 2rem);
}

.pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > .kicker {
  grid-column: 1 / -1;
}

.pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > h2 {
  grid-column: 1;
  grid-row: 2;
}

.pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > p:not(.kicker) {
  grid-column: 1 / -1;
}

.pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > .wp-block-buttons {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  margin: 0 0 .24em;
}

.pl-final-cta.pl-aperture-band h2 {
  max-width: none;
  font-size: clamp(4.3rem, 7vw, 7rem);
}

.pl-final-cta.pl-aperture-band p {
  max-width: 64rem;
}

.pl-final-cta.pl-aperture-band .wp-block-buttons {
  margin-top: 8px;
}

.pl-final-cta.pl-aperture-band .wp-block-button__link {
  color: var(--pl-rose);
}

.pl-plugin-plate {
  min-height: 500px;
  padding: 26px;
}

.pl-plate-top,
.pl-knob-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--pl-mist);
  font-size: .86rem;
  text-transform: uppercase;
}

.pl-knob-row {
  position: absolute;
  inset: auto 26px 30px;
}

.pl-knob-row p,
.pl-knob-row span {
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1;
  border: 15px solid #030303;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, #d95d60, #842326 60%, #151515 61%),
    #080808;
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0;
}

.pl-form-page {
  min-height: calc(100vh - 160px);
  align-items: center;
}

.pl-form-page h1 {
  margin: 16px 0 22px;
}

.pl-microcopy,
.pl-form-note {
  margin-top: 22px;
  color: var(--pl-rose);
  font-size: .86rem;
}

.pl-form-mockup {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.pl-form-page,
.pl-form-mockup,
.pl-form-mockup form,
.pl-form-mockup .wp-block-jetpack-contact-form,
.pl-form-mockup .contact-form,
.pl-form-mockup .wpforms-container,
.pl-form-mockup .gform_wrapper,
.pl-form-mockup .wpcf7 {
  position: relative;
}

.pl-form-mockup form,
.pl-form-mockup .wp-block-jetpack-contact-form,
.pl-form-mockup .contact-form,
.pl-form-mockup .wpforms-container,
.pl-form-mockup .gform_wrapper,
.pl-form-mockup .wpcf7 {
  z-index: 2;
  pointer-events: auto;
}

.pl-field {
  display: grid;
  gap: 8px;
  color: var(--pl-white);
  font-size: .86rem;
  text-transform: uppercase;
}

.pl-field-box {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background: linear-gradient(180deg, #090909, #030303);
  color: var(--pl-grey);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

input:not([type="submit"]):not([type="button"]):not([type="reset"]),
textarea,
select,
.wp-block-search__input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    #050505;
  color: var(--pl-white);
  -webkit-text-fill-color: var(--pl-white);
  caret-color: var(--pl-red);
  font-family: "Courier Prime", "Courier New", monospace;
  min-height: 46px;
  padding: 12px 13px;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  opacity: 1;
}

input,
textarea,
select,
button,
label,
.pl-form-mockup [role="button"],
.pl-form-mockup a,
.pl-form-mockup .wp-block-button__link {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-grid;
  place-content: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border-color: rgba(255,255,255,.28);
  accent-color: var(--pl-red);
  vertical-align: middle;
  -webkit-appearance: auto;
  appearance: auto;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline;
  margin-left: 8px;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  -webkit-text-fill-color: rgba(213,213,210,.52);
  color: rgba(213,213,210,.52);
}

input:not([type="submit"]):not([type="button"]):not([type="reset"]):-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #050505 inset;
  -webkit-text-fill-color: var(--pl-white);
  caret-color: var(--pl-red);
}

select option {
  background: #050505;
  color: var(--pl-white);
}

input:not([type="submit"]):not([type="button"]):not([type="reset"]):focus,
textarea:focus,
select:focus {
  border-color: var(--pl-red);
  background:
    linear-gradient(180deg, rgba(221,65,68,.08), rgba(255,255,255,.012)),
    #050505;
  color: var(--pl-white);
  outline: 1px solid var(--pl-rose);
  outline-offset: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 0 0 4px rgba(221,65,68,.14);
}

.pl-form-mockup fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.pl-form-mockup label,
.pl-form-mockup legend {
  display: block;
  margin-bottom: 8px;
}

.pl-form-mockup input,
.pl-form-mockup textarea,
.pl-form-mockup select,
.pl-form-mockup button,
.pl-form-mockup [type="submit"] {
  max-width: 100%;
  touch-action: manipulation;
}

label,
.wp-block-search__label {
  color: var(--pl-rose);
  font-size: .78rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pl-field-box.is-large {
  min-height: 138px;
}

.pl-editorial {
  max-width: 900px;
  margin-left: max(20px, calc((100vw - var(--pl-max)) / 2));
  padding-bottom: 28px;
}

.pl-editorial h1 {
  margin: 16px 0 22px;
}

.pl-site-footer {
  position: relative;
  z-index: 1;
  padding: 42px 20px 30px;
  border-top: 1px solid var(--pl-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,.54)),
    var(--pl-black);
  color: var(--pl-grey);
  font-size: .82rem;
}

.pl-site-footer__inner {
  width: min(100%, var(--pl-max));
  margin: 0 auto;
}

.pl-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(150px, .75fr) minmax(96px, .45fr) minmax(320px, 1.35fr);
  gap: 28px;
  align-items: start;
}

.pl-site-footer__brand,
.pl-site-footer__links,
.pl-site-footer__social,
.pl-site-footer__waitlist {
  min-width: 0;
}

.pl-site-footer__title {
  margin-bottom: 14px;
  color: var(--pl-white);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: .82;
}

.pl-site-footer__label,
.pl-site-footer__nav,
.pl-site-footer__legal,
.pl-mailerlite-footer label,
.pl-mailerlite-footer legend,
.pl-mailerlite-footer input,
.pl-mailerlite-footer button {
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-site-footer__label {
  margin-bottom: 13px;
  color: var(--pl-rose);
  font-size: .72rem;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.pl-site-footer p {
  max-width: 36rem;
  color: var(--pl-grey);
  font-size: .82rem;
  line-height: 1.62;
}

.pl-site-footer__nav {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .76rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pl-site-footer__nav a,
.pl-social-link {
  color: var(--pl-grey);
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.pl-site-footer__nav a:hover,
.pl-site-footer__nav a:focus-visible,
.pl-social-link:hover,
.pl-social-link:focus-visible {
  color: var(--pl-white);
}

.pl-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pl-social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--pl-line);
  background: rgba(255,255,255,.018);
}

.pl-social-link:hover,
.pl-social-link:focus-visible {
  border-color: var(--pl-red-line);
  background: rgba(221,65,68,.08);
}

.pl-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.pl-social-link svg path {
  fill: none;
}

.pl-mailerlite-footer {
  width: 100%;
  max-width: 520px;
  margin-top: 18px;
  border: 1px solid rgba(221,65,68,.34);
  background: rgba(5,5,5,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.pl-mailerlite-footer .ml-form-embedWrapper {
  padding: 16px;
}

.pl-mailerlite-footer .ml-form-formContent {
  display: grid;
  gap: 13px;
}

.pl-mailerlite-footer label,
.pl-mailerlite-footer legend {
  display: block;
  margin: 0 0 7px;
  padding: 0;
  color: var(--pl-rose);
  font-size: .68rem;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.pl-mailerlite-footer fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.pl-mailerlite-footer input[type="text"],
.pl-mailerlite-footer input[type="email"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--pl-line-strong);
  border-radius: 0;
  padding: 10px 11px;
  background: var(--pl-black);
  color: var(--pl-white);
  font-size: .84rem;
  line-height: 1.2;
}

.pl-mailerlite-footer input[type="text"]::placeholder,
.pl-mailerlite-footer input[type="email"]::placeholder {
  color: rgba(213,213,210,.46);
}

.pl-mailerlite-footer input[type="text"]:focus,
.pl-mailerlite-footer input[type="email"]:focus {
  border-color: var(--pl-red-line);
}

.pl-mailerlite-footer .ml-form-checkboxRow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.pl-mailerlite-footer .ml-form-checkboxRow legend {
  flex: 0 0 100%;
  margin-bottom: 0;
}

.pl-mailerlite-footer .checkbox {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: var(--pl-mist);
  cursor: pointer;
}

.pl-mailerlite-footer .checkbox input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--pl-red);
}

.pl-mailerlite-footer .checkbox span {
  color: var(--pl-mist);
  font-size: .76rem;
  line-height: 1.1;
  text-transform: none;
}

.pl-mailerlite-footer .ml-form-embedSubmit {
  margin-top: 14px;
}

.pl-mailerlite-footer button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--pl-red);
  border-radius: 0;
  padding: 11px 13px;
  background: var(--pl-red);
  color: var(--pl-white);
  cursor: pointer;
  font-size: .76rem;
  line-height: 1;
  text-transform: uppercase;
}

.pl-mailerlite-footer button:hover,
.pl-mailerlite-footer button:focus-visible {
  border-color: var(--pl-rose);
  background: #b93033;
}

.pl-mailerlite-footer .row-success p {
  color: var(--pl-white);
}

.pl-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pl-site-footer__legal p {
  max-width: none;
  color: rgba(213,213,210,.7);
  font-size: .72rem;
  line-height: 1.45;
}

.wp-block-post-content > *:first-child {
  margin-top: 0;
}

.wp-block-post-content > :is(
  .pl-section,
  .pl-hero,
  .pl-split-section,
  .pl-card-section,
  .pl-aperture-band,
  .pl-form-page,
  .pl-editorial,
  .pl-post-grid,
  .pl-final-cta
):first-child {
  padding-top: 0;
}

@media (max-width: 980px) {
  h1,
  .wp-block-heading.has-x-large-font-size {
    font-size: clamp(4rem, 19vw, 8rem);
  }

  .pl-hero,
  .pl-split-section,
  .pl-aperture-band,
  .pl-form-page {
    grid-template-columns: 1fr;
  }

  .pl-final-cta.pl-aperture-band {
    grid-template-columns: 1fr;
  }

  .pl-final-cta.pl-aperture-band figure {
    aspect-ratio: 16 / 8;
  }

  .pl-signal-panel,
  .pl-plugin-plate {
    min-height: 420px;
  }

  .pl-card-grid-three,
  .pl-card-grid-four,
  .pl-card-grid-five,
  .pl-use-case-list,
  .pl-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-development-log-query .wp-block-post-template,
  .pl-development-log-query .pl-post-grid {
    grid-template-columns: 1fr;
  }

  .pl-site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(150px, .7fr);
  }

  .pl-site-footer__waitlist {
    grid-column: 1 / -1;
  }

  .pl-site-header {
    align-items: center;
  }

}

@media (max-width: 782px) {
  .admin-bar .pl-site-header {
    top: 46px;
  }

  .admin-bar .wp-site-blocks {
    padding-top: 110px;
  }

  .pl-aperture-inline-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pl-aperture-inline-heading > .wp-block-buttons {
    margin: 0;
  }

  .pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > h2,
  .pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > .wp-block-buttons {
    grid-column: 1;
  }

  .pl-final-cta.pl-aperture-band > .wp-block-group:has(> h2 + p + p + p + .wp-block-buttons) > .wp-block-buttons {
    grid-row: 3;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .wp-site-blocks {
    padding-top: 72px;
  }

  .admin-bar .wp-site-blocks {
    padding-top: 118px;
  }

  .pl-section,
  .pl-hero,
  .pl-split-section,
  .pl-card-section,
  .pl-aperture-band,
  .pl-form-page,
  .pl-editorial,
  .pl-post-grid,
  .pl-final-cta {
    width: min(100% - 28px, var(--pl-max));
    padding: 62px 0;
  }

  .pl-site-header {
    padding: 14px 0;
  }

  .pal-site-header__inner {
    width: 100% !important;
  }

  .pl-brand {
    font-size: 1.7rem;
  }

  .pl-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .wp-block-buttons,
  .wp-block-button,
  .wp-block-button__link {
    width: 100%;
  }

  .pl-card-grid-three,
  .pl-card-grid-four,
  .pl-card-grid-five,
  .pl-use-case-list,
  .pl-post-grid {
    grid-template-columns: 1fr;
  }

  .pl-development-log-query .wp-block-post-template,
  .pl-development-log-query .pl-post-grid {
    width: min(100% - 28px, var(--pl-max));
    padding: 24px 0 62px;
  }

  .pl-log-card {
    padding: 22px;
  }

  .pl-log-card .wp-block-post-title {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .pl-signal-panel,
  .pl-plugin-plate {
    min-height: 330px;
  }

  .pl-knob-row p,
  .pl-knob-row span {
    width: 64px;
    border-width: 10px;
    font-size: .95rem;
  }

  .pl-card,
  .pl-form-mockup,
  .pl-log-teaser,
  .pl-final-cta,
  .pl-compatibility {
    padding: 22px;
  }

  .pl-final-cta.pl-aperture-band {
    gap: 28px;
    padding: 22px;
  }

  .pl-final-cta.pl-aperture-band h2 {
    font-size: clamp(3.8rem, 20vw, 5.5rem);
  }

  .pl-site-footer {
    padding: 30px 14px 24px;
  }

  .pl-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pl-site-footer__title {
    font-size: clamp(2.4rem, 16vw, 3.5rem);
  }

  .pl-mailerlite-footer {
    max-width: none;
  }

  .pl-site-footer__legal {
    display: grid;
    gap: 6px;
  }
}

.pl-moonbase-storefront,
.pl-moonbase-purchase,
.pl-moonbase-account {
  width: min(100% - 40px, var(--pl-max));
  margin: 0 auto;
  padding: 72px 0;
  color: var(--pl-white);
}

.pl-moonbase-storefront--unconfigured,
.pl-moonbase-purchase--unconfigured,
.pl-moonbase-account--unconfigured {
  padding: 24px 0;
}

.pl-moonbase-storefront__status,
.pl-moonbase-card__checkout-note,
.pl-moonbase-account__status {
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 16px 18px;
  background: rgba(5,5,5,.84);
  color: var(--pl-mist);
  font-size: .82rem;
}

.pl-moonbase-storefront__status--error,
.pl-moonbase-card__checkout-note--error,
.pl-moonbase-card__checkout-note--warning,
.pl-moonbase-account__status--error {
  border-color: rgba(221,65,68,.42);
  color: var(--pl-rose);
}

.pl-moonbase-storefront__header,
.pl-moonbase-account__header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.pl-moonbase-storefront__title,
.pl-moonbase-account__title {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .82;
}

.pl-moonbase-storefront__intro,
.pl-moonbase-account__intro {
  color: var(--pl-grey);
  font-size: .86rem;
  text-transform: uppercase;
}

.pl-moonbase-storefront__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pl-moonbase-storefront__grid--single {
  grid-template-columns: minmax(0, 760px);
}

.pl-moonbase-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  min-height: 100%;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    var(--pl-panel);
  box-shadow: var(--pl-shadow-panel);
}

.pl-moonbase-card__icon {
  width: 88px;
  height: 88px;
  border: 1px solid var(--pl-line);
  border-radius: 6px;
  object-fit: cover;
  background: var(--pl-black);
}

.pl-moonbase-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.pl-moonbase-card__eyebrow,
.pl-moonbase-card__tax,
.pl-moonbase-card__discount,
.pl-moonbase-card__original-price,
.pl-moonbase-card__variation label,
.pl-moonbase-card__meta {
  color: var(--pl-grey);
  font-size: .72rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.pl-moonbase-card__eyebrow,
.pl-moonbase-card__discount {
  color: var(--pl-rose);
}

.pl-moonbase-card__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.pl-moonbase-card__tagline {
  color: var(--pl-mist);
  font-size: .92rem;
}

.pl-moonbase-card__variation {
  display: grid;
  gap: 6px;
}

.pl-moonbase-card__variation select {
  width: 100%;
  border: 1px solid var(--pl-line-strong);
  border-radius: 4px;
  padding: 10px 12px;
  background: var(--pl-black);
  color: var(--pl-white);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .8rem;
}

.pl-moonbase-card__price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.pl-moonbase-card__price {
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: .9;
  text-transform: uppercase;
}

.pl-moonbase-card__original-price {
  text-decoration: line-through;
}

.pl-moonbase-card__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 10px;
  margin: 0;
}

.pl-moonbase-card__meta dt,
.pl-moonbase-card__meta dd {
  margin: 0;
}

.pl-moonbase-card__meta dd {
  color: var(--pl-mist);
}

.pl-moonbase-card__button,
.pl-moonbase-account__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 12px 18px;
  background: transparent;
  color: var(--pal-button-rest);
  cursor: pointer;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color .18s ease, opacity .18s ease;
}

.pl-moonbase-card__button:hover,
.pl-moonbase-card__button:focus-visible,
.pl-moonbase-account__button:hover,
.pl-moonbase-account__button:focus-visible {
  color: var(--pal-button-hover);
}

.pl-moonbase-card__button:disabled,
.pl-moonbase-account__button:disabled {
  color: var(--pl-grey);
  cursor: not-allowed;
  opacity: .62;
}

.pl-moonbase-card__button--secondary,
.pl-moonbase-account__button--secondary {
  color: var(--pl-mist);
}

.pl-moonbase-purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pl-moonbase-account {
  display: grid;
  gap: 16px;
}

.pl-moonbase-account__state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    var(--pl-panel);
  box-shadow: var(--pl-shadow-panel);
}

.pl-moonbase-account__identity {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.pl-moonbase-account__identity h3 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.pl-moonbase-account__identity p,
.pl-moonbase-account__label {
  color: var(--pl-grey);
  font-size: .82rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.pl-moonbase-account__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pl-moonbase-account__button {
  width: 100%;
}

@media (max-width: 860px) {
  .pl-moonbase-storefront__grid {
    grid-template-columns: 1fr;
  }

  .pl-moonbase-account__state {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pl-moonbase-storefront,
  .pl-moonbase-purchase,
  .pl-moonbase-account {
    width: min(100% - 28px, var(--pl-max));
    padding: 54px 0;
  }

  .pl-moonbase-card {
    grid-template-columns: 1fr;
  }

  .pl-moonbase-card__icon {
    width: 72px;
    height: 72px;
  }

  .pl-moonbase-card__button,
  .pl-moonbase-purchase__actions {
    width: 100%;
  }

  .pl-moonbase-account__state {
    padding: 18px;
  }
}

.pl-manual {
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(72px, 10vw, 116px);
}

.pl-manual-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.pl-manual-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 16px;
  background: rgba(0,0,0,.62);
}

.admin-bar .pl-manual-sidebar {
  top: 124px;
}

.pl-manual-nav,
.pl-manual-nav ul {
  margin: 0;
  padding: 0;
}

.pl-manual-nav ul {
  list-style: none;
}

.pl-manual-nav li {
  margin: 0;
  color: var(--pl-grey);
  line-height: 1.35;
}

.pl-manual-nav .children {
  margin-top: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.pl-manual-nav__root,
.pl-manual-nav a {
  display: block;
  border-radius: 3px;
  padding: 8px 9px;
  color: var(--pl-grey);
  font-size: .76rem;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.pl-manual-nav__root {
  margin-bottom: 0;
  border-bottom: 0;
  border-radius: 0;
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 2.35rem;
  line-height: .9;
}

.pl-manual-nav .pl-manual-nav__root.is-current {
  font-size: 2.35rem;
}

.pl-manual-nav .pl-manual-nav__root {
  font-size: 2.35rem;
}

.pl-manual-nav__subtitle {
  margin: 0 9px 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 8px;
  color: var(--pl-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.pl-manual-nav a:hover,
.pl-manual-nav a:focus-visible {
  color: var(--pl-white);
  background: rgba(255,255,255,.055);
}

.pl-manual-nav__root.is-current,
.pl-manual-nav .current_page_item > a,
.pl-manual-nav a[aria-current="page"] {
  color: var(--pl-red);
}

.pl-manual-nav .current_page_ancestor > a {
  color: var(--pl-rose);
}

.pl-manual-nav__empty {
  color: var(--pl-grey);
  font-size: .76rem;
}

.pl-manual-nav__thumbnail {
  overflow: hidden;
  margin: 16px 0 0;
  border: 1px solid var(--pl-red-line);
  border-radius: var(--pl-radius);
  background: var(--pl-panel);
}

.pl-manual-nav__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.pl-manual-content {
  min-width: 0;
  max-width: 62rem;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-manual-content > * + * {
  margin-top: 1.3rem;
}

.pl-manual-content h1,
.pl-manual-content .wp-block-heading.has-x-large-font-size {
  max-width: 760px;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.35rem, 1.9rem + 1.8vw, 3rem);
  line-height: .95;
}

.pl-manual-content h2 {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.1rem, 1.75rem + 1.45vw, 2.75rem);
  line-height: .95;
}

.pl-manual-content h3 {
  margin-top: 2rem;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: clamp(0.78rem, 0.74rem + 0.15vw, 0.86rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pl-manual-content a {
  color: var(--pl-rose);
  text-decoration: underline;
  text-decoration-color: rgba(230,137,144,.45);
  text-underline-offset: .22em;
}

.pl-manual-content a:hover,
.pl-manual-content a:focus-visible {
  color: var(--pl-white);
  text-decoration-color: var(--pl-red);
}

.pl-manual-content :where(p, li) {
  max-width: 80ch;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-manual-content .wp-block-image,
.pl-manual-content .wp-block-media-text__media {
  overflow: hidden;
  border: 1px solid var(--pl-red-line);
  border-radius: var(--pl-radius);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    var(--pl-panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 18px 54px rgba(0,0,0,.36);
}

.pl-manual-content .wp-block-image img,
.pl-manual-content .wp-block-media-text__media img {
  width: 100%;
  border-radius: 0;
}

.pl-manual-content :where(code, pre) {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.72);
  color: var(--pl-mist);
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-manual-content code {
  border-radius: 3px;
  padding: 2px 5px;
}

.pl-manual-content pre {
  overflow-x: auto;
  border-radius: 4px;
  padding: 16px;
}

.pl-manual-callout {
  border: 1px solid rgba(221,65,68,.38);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(0,0,0,.54);
}

.pl-manual-intro {
  display: grid;
  gap: 16px;
}

@media (max-width: 860px) {
  .pl-manual-layout {
    grid-template-columns: 1fr;
  }

  .pl-manual-sidebar {
    position: static;
  }

  .pl-manual-nav__thumbnail {
    display: none;
  }

  .pl-manual-content {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .pl-manual {
    width: min(100% - 28px, var(--pl-max));
    padding-top: 42px;
  }

  .pl-manual-sidebar {
    padding: 12px;
  }

  .pl-manual-nav__root,
  .pl-manual-nav a {
    padding-right: 7px;
    padding-left: 7px;
  }
}

.pl-support {
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(72px, 10vw, 116px);
}

.pl-support-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.pl-support-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 16px;
  background: rgba(0,0,0,.62);
}

.admin-bar .pl-support-sidebar {
  top: 124px;
}

.pl-support-nav,
.pl-support-nav ul {
  margin: 0;
  padding: 0;
}

.pl-support-nav {
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-support-nav ul {
  list-style: none;
}

.pl-support-nav li {
  margin: 0;
  color: var(--pl-grey);
  line-height: 1.35;
}

.pl-support-nav .children {
  margin-top: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.pl-support-nav__root,
.pl-support-nav a {
  display: block;
  border-radius: 3px;
  padding: 8px 9px;
  color: var(--pl-grey);
  font-size: .76rem;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.pl-support-nav__root {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  padding-bottom: 12px;
  color: var(--pl-white);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 2.35rem;
  line-height: .9;
}

.pl-support-nav .pl-support-nav__root {
  font-size: 2.35rem;
}

.pl-support-nav a:hover,
.pl-support-nav a:focus-visible {
  color: var(--pl-white);
  background: rgba(255,255,255,.055);
}

.pl-support-nav__root.is-current,
.pl-support-nav .current_page_item > a,
.pl-support-nav a[aria-current="page"] {
  color: var(--pl-red);
}

.pl-support-nav__root.is-ancestor,
.pl-support-nav .current_page_ancestor > a {
  color: var(--pl-rose);
}

.pl-support-nav__empty {
  color: var(--pl-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .76rem;
  line-height: 1.45;
}

.pl-support-content {
  min-width: 0;
  max-width: 62rem;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-support-content > * + * {
  margin-top: 1.3rem;
}

.pl-support-content h1,
.pl-support-content .wp-block-heading.has-x-large-font-size,
.pl-support-content .wp-block-heading.has-large-font-size {
  max-width: 760px;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.35rem, 1.9rem + 1.8vw, 3rem);
  line-height: .95;
}

.pl-support-content h2 {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.1rem, 1.75rem + 1.45vw, 2.75rem);
  line-height: .95;
}

.pl-support-content h3 {
  margin-top: 2rem;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: clamp(0.78rem, 0.74rem + 0.15vw, 0.86rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pl-support-content a {
  color: var(--pl-rose);
  text-decoration: underline;
  text-decoration-color: rgba(230,137,144,.45);
  text-underline-offset: .22em;
}

.pl-support-content a:hover,
.pl-support-content a:focus-visible {
  color: var(--pl-white);
  text-decoration-color: var(--pl-red);
}

.pl-support-content :where(p, li) {
  max-width: 80ch;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-support-content :where(code, pre) {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.72);
  color: var(--pl-mist);
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-support-content code {
  border-radius: 3px;
  padding: 2px 5px;
}

.pl-support-content pre {
  overflow-x: auto;
  border-radius: 4px;
  padding: 16px;
}

.pl-support-content .kicker,
.pl-support-content .pl-support-meta {
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-support-content .pl-support-meta {
  color: var(--pl-grey);
  font-size: .76rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.pl-support-intro {
  display: grid;
  gap: 16px;
}

.pl-support-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 14px;
}

.pl-support-card {
  border: 1px solid rgba(221,65,68,.38);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(0,0,0,.54);
}

.pl-support-card > * + * {
  margin-top: .8rem;
}

.pl-support-card h3 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .pl-support-layout {
    grid-template-columns: 1fr;
  }

  .pl-support-sidebar {
    position: static;
  }

  .pl-support-content {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .pl-support {
    width: min(100% - 28px, var(--pl-max));
    padding-top: 42px;
  }

  .pl-support-sidebar {
    padding: 12px;
  }

  .pl-support-nav__root,
  .pl-support-nav a {
    padding-right: 7px;
    padding-left: 7px;
  }
}

.pl-development-log-single {
  width: min(var(--pl-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(72px, 10vw, 116px);
}

.pl-development-log-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.pl-development-log-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 16px;
  background: rgba(0,0,0,.62);
}

.admin-bar .pl-development-log-sidebar {
  top: 124px;
}

.pl-development-log-nav {
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-development-log-nav__group + .pl-development-log-nav__group {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}

.pl-development-log-nav__category {
  margin: 0 0 8px;
  color: var(--pl-white);
  font-size: .72rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pl-development-log-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-development-log-nav__item {
  margin: 0;
  color: var(--pl-grey);
  line-height: 1.35;
}

.pl-development-log-nav__link {
  display: block;
  border-radius: 3px;
  padding: 7px 8px;
  color: var(--pl-grey);
  font-size: .76rem;
  line-height: 1.35;
  transition: color .18s ease, background .18s ease;
}

.pl-development-log-nav__link:hover,
.pl-development-log-nav__link:focus-visible {
  color: var(--pl-white);
  background: rgba(255,255,255,.055);
}

.pl-development-log-nav__link.is-current,
.pl-development-log-nav__link[aria-current="page"] {
  color: var(--pl-red);
}

.pl-development-log-content {
  min-width: 0;
  max-width: 62rem;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-development-log-content > * + * {
  margin-top: 1.3rem;
}

.pl-development-log-single__meta {
  gap: 8px 12px;
  color: var(--pl-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .76rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.pl-development-log-content .pl-development-log-single__meta a {
  color: var(--pl-grey);
  text-decoration: none;
}

.pl-development-log-content h1,
.pl-development-log-content .wp-block-post-title {
  max-width: 760px;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.35rem, 1.9rem + 1.8vw, 3rem);
  line-height: .95;
}

.pl-development-log-content h2 {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.1rem, 1.75rem + 1.45vw, 2.75rem);
  line-height: .95;
}

.pl-development-log-content h3 {
  margin-top: 2rem;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: clamp(0.78rem, 0.74rem + 0.15vw, 0.86rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pl-development-log-content a {
  color: var(--pl-rose);
  text-decoration: underline;
  text-decoration-color: rgba(230,137,144,.45);
  text-underline-offset: .22em;
}

.pl-development-log-content a:hover,
.pl-development-log-content a:focus-visible {
  color: var(--pl-white);
  text-decoration-color: var(--pl-red);
}

.pl-development-log-content :where(p, li) {
  max-width: 80ch;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.7;
}

.pl-development-log-content :where(code, pre) {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.72);
  color: var(--pl-mist);
  font-family: "Courier Prime", "Courier New", monospace;
}

.pl-development-log-content code {
  border-radius: 3px;
  padding: 2px 5px;
}

.pl-development-log-content pre {
  overflow-x: auto;
  border-radius: 4px;
  padding: 16px;
}

.pl-development-log-layout:not(:has(.pl-development-log-nav)) {
  grid-template-columns: minmax(0, 1fr);
}

.pl-development-log-sidebar:not(:has(.pl-development-log-nav)) {
  display: none;
}

@media (max-width: 860px) {
  .pl-development-log-layout {
    grid-template-columns: 1fr;
  }

  .pl-development-log-sidebar {
    position: static;
  }

  .pl-development-log-content {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .pl-development-log-single {
    width: min(100% - 28px, var(--pl-max));
    padding-top: 42px;
  }

  .pl-development-log-sidebar {
    padding: 12px;
  }

  .pl-development-log-nav__link {
    padding-right: 7px;
    padding-left: 7px;
  }
}

/* Panoramic product page
   Faceplate recipes are derived from the supplied Panoramic visual reference. */
html:has(body.page-id-528) {
  scroll-behavior: smooth;
}

.page-id-528 .wp-site-blocks > .wp-block-post-content {
  margin-block-start: 0;
}

.pal-product-page {
  --pal-product-black: #000000;
  --pal-product-near-black: #050505;
  --pal-product-panel: #0b0b0b;
  --pal-product-line: #2a2a2a;
  --pal-product-white: #ffffff;
  --pal-product-cool-grey: #d5d5d2;
  --pal-product-medium-grey: #888b8e;
  --pal-product-red: #dd4144;
  --pal-product-coral: #e68990;
  --pal-panoramic-media-width: 1060px;
  --pal-product-copy-size: clamp(.98rem, .94rem + .18vw, 1.08rem);
  --pal-product-copy-compact: clamp(.94rem, .91rem + .13vw, 1rem);
  --pal-product-section-space: clamp(32px, 3.6vw, 52px);
  --pal-product-component-space: clamp(28px, 3.4vw, 44px);
  --pal-product-anchor-offset: 104px;
  overflow: clip;
  background: var(--pal-product-black);
  color: var(--pal-product-cool-grey);
  font-family: "Courier Prime";
}

.pal-product-page :where(p, li, a, button, input, label, blockquote, time) {
  font-family: "Courier Prime";
}

.pal-product-page :where(h1, h2, h3, h4) {
  font-family: "League Gothic";
  font-weight: 400;
  text-transform: uppercase;
}

.pal-product-page :where(a, button) {
  -webkit-tap-highlight-color: transparent;
}

.pal-product-page :where(a, button):focus-visible {
  outline: 2px solid var(--pal-product-white);
  outline-offset: 4px;
}

.pal-product-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(570px, 79svh, 820px);
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.035);
  border-bottom: 1px solid rgba(42,42,42,.9);
  padding: clamp(86px, 12vw, 150px) 20px clamp(74px, 10vw, 126px);
  background:
    radial-gradient(ellipse 38% 45% at 50% 49%, rgba(133,138,143,.075), transparent 72%),
    radial-gradient(circle at 67% 47%, rgba(221,65,68,.11), transparent 19rem),
    linear-gradient(135deg, #141414 0%, #0d0d0d 46%, #040404 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.pal-product-hero::before,
.pal-product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.pal-product-hero::before {
  inset: -18% -8%;
  background-image:
    url("../panoramic/brand-contour-14.webp"),
    url("../panoramic/fine-grain-overlay.webp"),
    url("../panoramic/brushed-horizontal-overlay.webp");
  background-position: 77% 48%, center, center;
  background-size: min(70vw, 900px) auto, 512px 512px, 1024px 512px;
  background-repeat: no-repeat, repeat, repeat;
  opacity: .22;
}

.pal-product-hero::after {
  background:
    url("../panoramic/edge-vignette-overlay.webp") center / cover no-repeat,
    linear-gradient(90deg, transparent 0 7%, rgba(255,255,255,.032) 7% calc(7% + 1px), transparent calc(7% + 1px) 93%, rgba(255,255,255,.032) 93% calc(93% + 1px), transparent calc(93% + 1px));
  opacity: .82;
}

.pal-product-hero__content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.pal-product-hero__title {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(6rem, 19vw, 14rem);
  line-height: .76;
  letter-spacing: -.012em;
  text-shadow: 0 3px 0 #000, 0 0 50px rgba(0,0,0,.86);
}

.pal-product-hero__tagline {
  max-width: 700px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  color: var(--pal-product-cool-grey);
  font-size: clamp(.94rem, .87rem + .3vw, 1.12rem);
  line-height: 1.55;
}

.pal-product-hero__actions {
  gap: 8px;
  margin-top: clamp(28px, 5vw, 42px);
}

.pal-product-page .pal-product-cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 14px 28px;
  background: transparent;
  color: var(--pal-product-medium-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .72rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pal-product-hero .pal-moonbase-button__original-price,
.pal-product-hero .pal-moonbase-button__current-price {
  align-self: center;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.pal-product-hero .pal-moonbase-button__original-price {
  text-decoration: line-through;
  opacity: .7;
}

.pal-product-hero .pal-moonbase-button__label {
  white-space: nowrap;
}

.pal-product-page .pal-product-cta--primary .wp-block-button__link {
  gap: 11px;
  min-height: 62px;
  border-color: var(--pal-product-red);
  padding: 20px 40px;
  background: var(--pal-product-red);
  color: var(--pal-product-white);
  font-size: .88rem;
}

.pal-product-page .pal-product-cta--primary .wp-block-button__link:hover {
  border-color: var(--pal-product-coral);
  background: var(--pal-product-coral);
  color: var(--pal-product-black);
}

.pal-product-page .pal-product-cta .wp-block-button__link:disabled {
  opacity: .58;
  cursor: wait;
}

.pal-product-page .pal-product-cta--secondary .wp-block-button__link {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-product-medium-grey);
}

.pal-product-page .pal-product-cta--secondary .wp-block-button__link:hover,
.pal-product-page .pal-product-cta--secondary .wp-block-button__link:focus-visible {
  border-color: currentColor;
  background: transparent;
  color: var(--pal-product-cool-grey);
  box-shadow: none;
}

.pal-product-page .pal-product-cta .wp-block-button__link:focus-visible,
.pal-product-nav__links a:focus-visible {
  outline: 1px solid var(--pal-product-coral);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(221,65,68,.14);
}

.pal-product-hero__waitlist {
  margin: 20px auto 0;
  color: var(--pal-product-medium-grey);
  font-size: .76rem;
}

.pal-product-hero__waitlist a {
  border-bottom: 1px solid rgba(136,139,142,.5);
  padding-bottom: 3px;
}

.pal-product-hero__waitlist a:hover,
.pal-product-hero__waitlist a:focus-visible {
  border-color: var(--pal-product-red);
  color: var(--pal-product-white);
}

.pal-product-nav {
  padding: 14px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pal-product-nav__links {
  display: flex;
  box-sizing: border-box;
  width: min(calc(100% - 40px), var(--pal-panoramic-media-width));
  margin: 0 auto;
  justify-content: safe center;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0;
  scroll-padding-inline: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--pal-product-line) transparent;
  -webkit-overflow-scrolling: touch;
}

.pal-product-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 50px;
  border: 1px solid rgba(213,213,210,.52);
  border-radius: 4px;
  padding: 16px 25px;
  background: rgba(255,255,255,.018);
  color: var(--pal-product-cool-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pal-product-nav__links a:hover,
.pal-product-nav__links a:focus-visible {
  border-color: var(--pal-product-coral);
  background: rgba(221,65,68,.1);
  color: var(--pal-product-white);
}

.pal-product-nav__links a:active {
  border-color: var(--pal-product-red);
  background: rgba(221,65,68,.17);
  color: var(--pal-product-white);
}

.pal-product-section,
.pal-product-trial,
.pal-product-storefront {
  width: min(calc(100% - 40px), 1180px);
  margin-right: auto;
  margin-left: auto;
}

.pal-product-section {
  padding-top: var(--pal-product-section-space);
  padding-bottom: var(--pal-product-section-space);
}

.pal-product-page #testimonials.pal-product-section {
  --pal-testimonials-gutter: max(20px, calc((100% - 1180px) / 2));
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.pal-product-testimonials__heading {
  box-sizing: border-box;
  width: calc(100% - var(--pal-testimonials-gutter) - var(--pal-testimonials-gutter));
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.pal-product-testimonials__carousel,
.pal-product-testimonials__carousel > .pal-content-row,
.pal-product-testimonials__carousel .pal-content-row__track {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
}

.pal-product-testimonials__carousel .pal-content-row__controls {
  margin-right: var(--pal-testimonials-gutter);
  margin-left: var(--pal-testimonials-gutter);
}

.pal-product-testimonials__carousel .pal-content-row__track {
  padding-right: var(--pal-testimonials-gutter);
  padding-left: var(--pal-testimonials-gutter);
}

.pal-product-testimonials__carousel [data-infinite-loop-initialized] .pal-content-row__track {
  display: block;
  overflow: hidden;
  touch-action: pan-y;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.pal-product-testimonials__carousel [data-infinite-loop-initialized] .pal-content-row__track::-webkit-scrollbar {
  display: none;
}

.pal-product-testimonials__carousel .pal-content-row__infinite-track,
.pal-product-testimonials__carousel .pal-content-row__sequence {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
}

.pal-product-testimonials__carousel .pal-content-row__infinite-track {
  will-change: transform;
  animation: pal-testimonials-infinite-loop var(--pal-infinite-loop-duration) linear infinite;
}

.pal-product-testimonials__carousel .pal-content-row__sequence > .pal-content-card {
  width: clamp(280px, 36vw, 420px);
  flex: 0 0 clamp(280px, 36vw, 420px);
}

.pal-content-row.is-infinite-loop.has-infinite-loop-focus .pal-content-row__infinite-track,
.pal-content-row.is-infinite-loop.has-infinite-loop-pointer .pal-content-row__infinite-track {
  animation-play-state: paused;
}

@keyframes pal-testimonials-infinite-loop {
  to {
    transform: translate3d(calc(-1 * var(--pal-infinite-loop-distance)), 0, 0);
  }
}

.pal-product-section[id],
.pal-product-trial[id],
.pal-trial-section[id],
.pal-product-storefront[id] {
  scroll-margin-top: var(--pal-product-anchor-offset);
}

.admin-bar .pal-product-section[id],
.admin-bar .pal-product-trial[id],
.admin-bar .pal-trial-section[id],
.admin-bar .pal-product-storefront[id] {
  scroll-margin-top: calc(var(--pal-product-anchor-offset) + 32px);
}

.pal-product-section > h2,
.pal-product-testimonials__heading > h2,
.pal-product-trial > h2,
.pal-trial-section__intro > h2,
.pal-product-purchase > h2 {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: .84;
}

.pal-product-eyebrow {
  margin: 0 0 18px;
  color: var(--pal-product-red);
  font-size: .72rem;
  letter-spacing: .14em;
}

.pal-product-overview > h2 {
  width: min(100%, var(--pal-panoramic-media-width));
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(5rem, 13vw, 11rem);
}

.pal-product-ui {
  position: relative;
  width: min(100%, var(--pal-panoramic-media-width));
  margin: clamp(18px, 3vw, 30px) auto 0;
  border: 1px solid var(--pal-product-red);
  padding: clamp(5px, 1vw, 10px);
  background: #030303;
  box-shadow: 0 32px 86px rgba(0,0,0,.72), 0 0 0 1px #000;
}

.pal-product-ui img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 723;
  object-fit: contain;
}

.pal-product-overview__copy {
  width: min(100%, var(--pal-panoramic-media-width));
  margin-right: auto;
  margin-left: auto;
  margin-top: var(--pal-product-component-space);
}

.pal-product-page .pal-product-overview__copy p {
  max-width: 68ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--pal-product-cool-grey);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--pal-product-copy-size);
  line-height: 1.7;
}

.pal-proof-points {
  gap: 0;
  margin-top: var(--pal-product-component-space);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.pal-proof-points > .wp-block-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.12);
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
}

.pal-proof-points > .wp-block-column:last-child {
  border-right: 0;
}

.pal-proof-point__mark {
  display: grid;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid var(--pal-product-red);
  border-radius: 2px;
  background: rgba(0,0,0,.28);
  color: var(--pal-product-red);
  font-size: 0;
  line-height: 0;
}

.pal-proof-point__mark::before {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transform-origin: center;
}

.pal-proof-points h3 {
  max-width: 31ch;
  margin: 0;
  color: var(--pal-product-white);
  font-family: "Courier Prime";
  font-size: var(--pal-product-copy-compact);
  line-height: 1.62;
  letter-spacing: .01em;
}

.pal-product-video {
  margin: clamp(32px, 4.5vw, 56px) auto 0;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, #070707, #000);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.48), inset 0 1px 0 rgba(213,213,210,.045);
}

.pal-product-video .wp-block-embed__wrapper {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  padding: 30px;
  color: var(--pal-product-medium-grey);
  font-size: .76rem;
  text-align: center;
}

/* Panoramic 14-day trial — follows the live Waitlist pal-ml-form treatment. */
.pal-trial-section {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0 0 var(--pal-product-component-space);
  border-top: 1px solid rgba(221,65,68,.52);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: clamp(68px, 8vw, 108px) 0;
  background: var(--pal-product-black);
}

.pal-trial-section__inner {
  display: grid;
  width: min(var(--pl-max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: start;
  gap: 46px;
}

.pal-trial-section__intro {
  min-width: 0;
}

.pal-trial-section__intro > h2 {
  max-width: 560px;
  margin: 16px 0 22px;
  color: var(--pal-product-white);
  font-family: "League Gothic";
  font-size: clamp(4.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: .84;
  text-transform: uppercase;
}

.pal-trial-section__copy {
  max-width: 46ch;
  margin: 0;
  color: var(--pal-product-cool-grey);
  font-family: "Courier Prime";
  font-size: var(--pal-product-copy-size);
  line-height: 1.65;
}

.pal-trial-form {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin: 0 auto;
}

.pal-trial-section #mlb2-44419095,
.pal-trial-section #mlb2-44419095 * {
  box-sizing: border-box;
}

.pal-trial-section #mlb2-44419095.ml-form-embedContainer,
.pal-trial-section #mlb2-44419095 .ml-form-align-center,
.pal-trial-section #mlb2-44419095 .ml-form-embedBody,
.pal-trial-section #mlb2-44419095 .ml-block-form {
  display: block !important;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--pal-product-cool-grey);
  text-align: left;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedWrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid var(--pl-red-line);
  border-radius: var(--pl-radius);
  padding: clamp(20px, 4vw, 30px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
    var(--pl-panel);
  color: var(--pl-white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 24px 72px rgba(0,0,0,.44);
  text-align: left;
}

.pal-trial-section #mlb2-44419095 :where(p, span, label, input, a) {
  font-family: "Courier Prime";
}

.pal-trial-section #mlb2-44419095 .ml-form-formContent {
  display: grid;
  gap: 0;
  margin: 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow,
.pal-trial-section #mlb2-44419095 .ml-field-group {
  width: 100%;
  margin: 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow {
  margin-bottom: 14px;
}

.pal-trial-section #mlb2-44419095 .ml-field-group label {
  display: block;
  margin: 0 0 6px;
  color: var(--pl-mist);
  font-size: .74rem;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input[type="text"],
.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input[type="email"] {
  display: block;
  width: 100% !important;
  min-height: 46px;
  max-width: none !important;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 4px !important;
  padding: 12px 13px !important;
  background: #050505 !important;
  color: var(--pl-white) !important;
  font-family: "Courier Prime" !important;
  font-size: .86rem !important;
  line-height: 1.4 !important;
  box-shadow: none;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input::placeholder {
  color: var(--pal-product-medium-grey);
  opacity: 1;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input:hover {
  border-color: var(--pal-product-cool-grey) !important;
}

.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input:focus,
.pal-trial-section #mlb2-44419095 .ml-form-fieldRow input:focus-visible {
  border-color: var(--pl-red) !important;
  outline: none;
  box-shadow: 0 0 0 4px rgba(221,65,68,.14);
}

.pal-trial-section #mlb2-44419095 a {
  color: var(--pal-product-cool-grey);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.pal-trial-section #mlb2-44419095 a:hover,
.pal-trial-section #mlb2-44419095 a:focus-visible {
  color: var(--pal-product-coral);
}

.pal-trial-section #mlb2-44419095 a:focus-visible {
  outline: 2px solid var(--pal-product-red);
  outline-offset: 3px;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow {
  margin: 4px 0 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .checkbox {
  position: relative;
  display: block;
  min-height: 44px;
  margin: 0;
  padding: 16px 0 12px 18px;
  color: var(--pl-grey);
  cursor: pointer;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .label-description {
  display: block;
  color: var(--pl-grey);
  font-size: .68rem;
  line-height: 1;
  text-transform: uppercase;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .label-description::before,
.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .label-description::after {
  position: absolute;
  content: "";
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .label-description::before {
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--pl-red-line);
  border-radius: 1px;
  background: transparent;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow .label-description::after {
  display: none;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow input:checked + .label-description::before {
  border-color: var(--pal-product-red);
  background: var(--pal-product-red);
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow input:focus-visible + .label-description::before {
  outline: 2px solid var(--pal-product-red);
  outline-offset: 3px;
}

.pal-trial-section #mlb2-44419095 .ml-error input[type="text"],
.pal-trial-section #mlb2-44419095 .ml-error input[type="email"],
.pal-trial-section #mlb2-44419095 .ml-form-recaptcha.ml-error iframe {
  border-color: var(--pal-product-red) !important;
}

.pal-trial-section #mlb2-44419095 .ml-form-checkboxRow.ml-error .label-description {
  color: var(--pal-product-coral);
}

.pal-trial-section #mlb2-44419095 .ml-form-recaptcha {
  width: 100%;
  min-height: 78px;
  margin: 18px 0;
  float: none !important;
  overflow: hidden;
}

.pal-trial-section #mlb2-44419095 .g-recaptcha {
  width: 304px;
  max-width: 100%;
  transform-origin: 0 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit {
  width: 100%;
  min-height: 44px;
  margin: 18px 0 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button {
  width: 100% !important;
  min-height: 44px;
  margin: 0 !important;
  border: 1px solid currentColor !important;
  border-radius: 4px !important;
  padding: 13px 24px !important;
  background: transparent !important;
  color: var(--pal-button-rest) !important;
  font-family: "Courier Prime" !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  cursor: pointer;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button:hover,
.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button:focus-visible {
  color: var(--pal-button-hover) !important;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button:active {
  color: var(--pl-white) !important;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button:focus-visible {
  outline: 2px solid var(--pl-red);
  outline-offset: 3px;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmit button:disabled {
  cursor: wait;
  opacity: .72;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmitLoad {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.pal-trial-section #mlb2-44419095 .ml-form-embedSubmitLoad::after {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--pal-product-white);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: pal-trial-loader .9s linear infinite;
}

@keyframes pal-trial-loader {
  to {
    transform: rotate(360deg);
  }
}

.pal-trial-section #mlb2-44419095 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pal-trial-section #mlb2-44419095 .ml-form-successBody {
  width: 100%;
  min-height: 0;
  padding: 0;
  color: var(--pl-mist);
}

.pal-trial-section #mlb2-44419095 .ml-form-successContent h4 {
  margin: 0 0 10px;
  color: var(--pl-white);
  font-family: "League Gothic";
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: .85;
  text-transform: uppercase;
}

.pal-trial-section #mlb2-44419095 .ml-form-successContent p {
  margin: 0;
  color: var(--pl-mist);
  font-family: "Courier Prime";
  line-height: 1.6;
}

.pal-trial-section #mlb2-44419095 .ml-form-successContent p + p {
  margin-top: 12px;
}

.pal-product-features {
  border-top: 0;
}

.pal-feature-grid {
  gap: clamp(24px, 4vw, 52px);
  margin-top: var(--pal-product-component-space);
}

.pal-feature-item {
  position: relative;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 24px 0 32px 34px;
}

.pal-feature-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--pal-product-red);
  box-shadow: 0 0 8px rgba(221,65,68,.2);
}

.pal-feature-item h3 {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: .9;
}

.pal-feature-item p,
.pal-feature-item li {
  max-width: 62ch;
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-size);
  line-height: 1.68;
  letter-spacing: 0;
}

.pal-feature-item p {
  margin: 16px 0 0;
}

.pal-feature-item ul {
  margin: 18px 0 0;
  padding-left: 1.25rem;
}

.pal-feature-item--utility {
  border-color: rgba(221,65,68,.34);
}

.pal-interactive-features {
  --pal-feature-divider: rgba(213,213,210,.2);
  width: min(calc(100% - clamp(28px, 5vw, 72px)), 1480px);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.pal-interactive-features > :where(.pal-product-eyebrow, h2, .pal-interactive-features__grid) {
  width: 100%;
  max-width: none;
}

.pal-interactive-features__grid {
  display: grid;
  grid-template-columns:
    minmax(250px, .78fr)
    minmax(520px, 1.7fr)
    minmax(250px, .78fr);
  align-items: start;
  gap: clamp(28px, 3.2vw, 52px);
  margin-top: clamp(34px, 4.2vw, 62px);
}

.pal-interactive-features__column {
  display: grid;
  min-width: 0;
  gap: 0;
}

.pal-interactive-features__schematic {
  min-width: 0;
  width: 100%;
  max-width: 760px;
  margin: 0;
  justify-self: center;
}

.pal-interactive-features__svg {
  position: relative;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pal-interactive-features__svg svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

@media (min-width: 768px) {
  .js .pal-interactive-features.is-reveal-ready .pal-interactive-features__schematic {
    transform-origin: 50% 50%;
    will-change: opacity, transform;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .pal-interactive-features__schematic {
    transition:
      opacity .36s ease-out,
      transform .42s cubic-bezier(.22, 1, .36, 1);
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-revealed) .pal-interactive-features__schematic {
    opacity: 0;
    transform: translateY(14px) scale(.975);
  }

  .js .pal-interactive-features.is-reveal-ready .pal-interactive-features__column {
    will-change: transform;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .pal-interactive-features__column {
    transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  }

  .js .pal-interactive-features.is-reveal-ready .svg-draw-path {
    stroke-dasharray: var(--pal-draw-length) var(--pal-draw-length);
    stroke-dashoffset: var(--pal-draw-length);
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-draw-path {
    stroke-dashoffset: 0;
    transition:
      stroke-dashoffset
      var(--pal-draw-duration)
      linear
      var(--pal-draw-delay);
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-route-fade {
    transition: opacity .32s ease-out var(--pal-route-fade-delay);
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-revealed) .svg-route-fade,
  .js .pal-interactive-features.is-reveal-ready:not(.is-revealed) .svg-reveal-group {
    opacity: 0;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-reveal-group {
    transition: opacity .34s ease-out;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-reveal-group[data-reveal-order="1"] {
    transition-delay: .66s;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-reveal-group[data-reveal-order="2"] {
    transition-delay: .72s;
  }

  .js .pal-interactive-features.is-reveal-ready.is-revealed .svg-reveal-group[data-reveal-order="3"] {
    transition-delay: .78s;
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-reveal-complete) .pal-feature-card:hover {
    border-color: var(--pal-feature-divider);
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-reveal-complete) .pal-feature-card:hover::before {
    width: 28px;
    background: var(--pal-product-medium-grey);
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-reveal-complete) .pal-feature-token:hover {
    border-color: rgba(221,65,68,.42);
    background: #050505;
    color: var(--pal-product-coral);
  }

  .js .pal-interactive-features.is-reveal-complete .pal-interactive-features__schematic,
  .js .pal-interactive-features.is-reveal-complete .pal-interactive-features__column {
    will-change: auto;
  }

  .js .pal-interactive-features.is-reveal-complete .svg-draw-path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }

  .js .pal-interactive-features.is-reveal-complete :is(
    .svg-route-fade,
    .svg-reveal-group
  ) {
    opacity: 1;
    transition: none;
  }
}

@media (min-width: 1181px) {
  .js .pal-interactive-features.is-reveal-ready:not(.is-revealed) .pal-interactive-features__column--left {
    transform: translateX(36px);
  }

  .js .pal-interactive-features.is-reveal-ready:not(.is-revealed) .pal-interactive-features__column--right {
    transform: translateX(-36px);
  }
}

.pal-interactive-features__notice {
  margin: 0;
  border: 1px solid rgba(221,65,68,.45);
  padding: 18px;
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-compact);
  line-height: 1.6;
}

.pal-interactive-features .pal-feature-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--pal-feature-divider);
  border-radius: 0;
  padding: clamp(20px, 2vw, 30px) 0 clamp(24px, 2.4vw, 36px);
  background: transparent;
  cursor: default;
  transition:
    border-color .16s ease,
    color .16s ease;
}

.pal-interactive-features .pal-feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--pal-product-medium-grey);
  transition: width .16s ease, background-color .16s ease;
}

.pal-interactive-features .pal-feature-card:hover,
.pal-interactive-features .pal-feature-card.is-active {
  border-color: rgba(230,137,144,.72);
  background: transparent;
}

.pal-interactive-features .pal-feature-card:is(:hover, .is-active)::before {
  width: 58px;
  background: var(--pal-product-red);
}

.pal-interactive-features .pal-feature-card:focus-visible {
  outline: 2px solid var(--pal-product-white);
  outline-offset: 6px;
}

.pal-interactive-features .pal-feature-card h3 {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  line-height: .92;
}

.pal-interactive-features .pal-feature-card p,
.pal-interactive-features .pal-feature-card li {
  max-width: 48ch;
  color: var(--pal-product-cool-grey);
  font-size: clamp(.94rem, .91rem + .12vw, 1rem);
  line-height: 1.62;
  letter-spacing: 0;
}

.pal-interactive-features .pal-feature-card p {
  margin: 12px 0 0;
}

.pal-interactive-features .pal-feature-card ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.pal-interactive-features .pal-feature-card li + li {
  margin-top: .42rem;
}

.pal-interactive-features .pal-feature-card.is-active .pal-module-code:not(.pal-feature-token) {
  border-color: var(--pal-product-red);
  color: var(--pal-product-white);
}

.pal-interactive-features .pal-feature-token {
  cursor: default;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}

.pal-interactive-features .pal-feature-token:is(:hover, .is-active) {
  border-color: var(--pal-product-red);
  background: rgba(221,65,68,.12);
  color: var(--pal-product-white);
}

.pal-interactive-features .pal-feature-token:focus-visible {
  outline: 2px solid var(--pal-product-white);
  outline-offset: 3px;
}

.pal-interactive-features .pal-signal-flow [data-feature] {
  cursor: default;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .16s ease-out;
}

.pal-interactive-features.has-active-feature .pal-signal-flow [data-feature].is-dimmed {
  opacity: .22;
}

.pal-interactive-features .pal-signal-flow [data-feature].is-active {
  opacity: 1;
}

.js .pal-interactive-features.is-reveal-complete .pal-signal-flow [data-feature] > :not([data-feature]),
.js .pal-interactive-features.is-reveal-complete .pal-signal-flow [id="BLACK BG"] > :not([id="HOVER-FUNCTIONS"]) {
  transition: opacity .16s ease-out;
}

.pal-interactive-features.has-active-feature .pal-signal-flow [data-feature].has-active-descendant > :not([data-feature]) {
  opacity: .22;
}

.pal-interactive-features.has-active-feature .pal-signal-flow [id="BLACK BG"] > :not([id="HOVER-FUNCTIONS"]) {
  opacity: .36;
}

.pal-interactive-features .pal-signal-flow [data-feature]:focus-visible {
  outline: none;
}

.pal-module-code {
  display: inline-block;
  border: 1px solid rgba(221,65,68,.42);
  border-radius: 2px;
  padding: .05em .32em;
  background: #050505;
  color: var(--pal-product-coral);
  font-family: "Courier Prime";
  font-size: .84em;
  font-weight: 400;
  letter-spacing: .03em;
}

.pal-product-dynamic {
  border-top: 0;
}

.pal-content-row {
  position: relative;
  margin-top: var(--pal-product-component-space);
}

.pal-content-row__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.pal-content-row__control {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(213,213,210,.38);
  border-radius: 2px;
  background: #050505;
  color: var(--pal-product-cool-grey);
  cursor: pointer;
  font-size: 1.05rem;
}

.pal-content-row__control:hover:not(:disabled),
.pal-content-row__control:focus-visible:not(:disabled) {
  border-color: var(--pal-product-red);
  color: var(--pal-product-white);
}

.pal-content-row__control:disabled {
  opacity: .32;
  cursor: default;
}

.pal-content-row__track {
  display: grid;
  grid-auto-columns: clamp(280px, 36vw, 420px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pal-product-line) transparent;
}

.pal-content-row__track:focus-visible {
  outline: 2px solid var(--pal-product-white);
  outline-offset: 5px;
}

.pal-content-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.13);
  border-top-color: rgba(221,65,68,.4);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 48%),
    #050505;
  scroll-snap-align: start;
}

.pal-content-card__link {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease;
}

.pal-content-card__link:hover {
  background: rgba(221,65,68,.045);
}

.pal-content-card__link:hover .pal-content-card__title,
.pal-content-card__link:focus-visible .pal-content-card__title {
  color: var(--pal-product-coral);
}

.pal-product-page .pal-content-card__link:focus-visible {
  outline: 2px solid var(--pal-product-white);
  outline-offset: -3px;
  box-shadow: inset 0 0 0 1px var(--pal-product-red);
}

.pal-content-card__media {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  aspect-ratio: 16 / 9;
  background: #000;
}

.pal-content-card--testimonials .pal-content-card__media {
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: auto;
}

.pal-content-card--testimonials .pal-content-card__media img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
}

.pal-content-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pal-content-card__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.pal-content-card__meta,
.pal-content-card__date {
  color: var(--pal-product-red);
  font-size: .7rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pal-content-card__title {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .94;
}

.pal-content-card__meta + .pal-content-card__title {
  margin-top: 12px;
}

.pal-content-card__title a:hover,
.pal-content-card__title a:focus-visible {
  color: var(--pal-product-coral);
}

.pal-content-card__external {
  color: var(--pal-product-red);
  font-family: "Courier Prime";
  font-size: .42em;
  vertical-align: top;
}

.pal-content-card__excerpt,
.pal-content-card__summary,
.pal-content-card__quote {
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-compact);
  line-height: 1.68;
  letter-spacing: 0;
}

.pal-content-card__excerpt {
  margin: 16px 0 0;
}

.pal-content-card__summary {
  margin: 14px 0 0;
}

.pal-content-card__quote {
  margin: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
}

.pal-content-card__quote > :first-child {
  margin-top: 0;
}

.pal-content-card__quote > :last-child {
  margin-bottom: 0;
}

.pal-content-card__date {
  margin-top: auto;
  padding-top: 24px;
  color: var(--pal-product-medium-grey);
}

.pal-content-row__empty {
  margin-top: 26px;
  border: 1px dashed rgba(213,213,210,.28);
  padding: 22px;
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-compact);
  line-height: 1.62;
}

.pal-product-purchase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(221,65,68,.56);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: clamp(68px, 8vw, 112px) 20px;
  background:
    radial-gradient(circle at 50% 45%, rgba(221,65,68,.15), transparent 22rem),
    linear-gradient(135deg, #0b0b0b, #030303);
  text-align: center;
}

.pal-product-purchase::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  background: url("../panoramic/brand-contour-14.webp") center / min(70vw, 800px) auto no-repeat;
  opacity: .07;
  transform: rotate(20deg);
}

.pal-product-purchase > h2 {
  font-size: clamp(5.5rem, 14vw, 11rem);
}

.pal-product-purchase__copy {
  max-width: 60ch;
  margin: 20px auto 0;
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-size);
  line-height: 1.65;
}

.pal-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 16px;
  margin: 24px auto 28px;
  color: var(--pal-product-white);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.pal-product-price .pal-panoramic-price__original,
.pal-product-price .pal-panoramic-price__current {
  align-self: baseline;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: inherit;
}

.pal-product-price .pal-panoramic-price__original {
  color: var(--pal-product-medium-grey);
  text-decoration: line-through;
}

.pal-product-price__discount {
  flex-basis: 100%;
  color: var(--pal-product-coral);
  font-size: .68rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pal-product-purchase__actions {
  gap: 10px;
}

.pal-product-purchase .pal-product-cta .wp-block-button__link {
  min-height: 56px;
  padding: 18px 34px;
  font-size: .82rem;
}

.pal-product-purchase .pal-product-cta--primary .wp-block-button__link {
  min-height: 64px;
  padding: 21px 42px;
  font-size: .9rem;
}

.pal-moonbase-purchase-state {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pal-moonbase-owned,
.pal-moonbase-purchase-status,
.pal-moonbase-noscript {
  max-width: 320px;
  margin: 10px auto 0;
  color: var(--pal-product-cool-grey);
  font-size: .7rem;
  line-height: 1.45;
  text-align: center;
}

.pal-moonbase-purchase-status {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 3;
  width: min(320px, calc(100vw - 32px));
  margin: 10px 0 0;
  transform: translateX(-50%);
  color: var(--pal-product-medium-grey);
}

.pal-moonbase-purchase-status.is-error,
.pal-moonbase-noscript {
  color: var(--pal-product-coral);
}

.pal-product-storefront {
  padding-top: var(--pal-product-section-space);
  padding-bottom: var(--pal-product-section-space);
  scroll-margin-top: var(--pal-product-anchor-offset);
}

.pal-product-specifications {
  border-top: 0;
}

.pal-product-specifications .wp-block-columns {
  gap: 0;
  margin-top: var(--pal-product-component-space);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.pal-product-specifications .wp-block-column {
  border-right: 1px solid rgba(255,255,255,.12);
  padding: clamp(26px, 5vw, 48px);
}

.pal-product-specifications .wp-block-column:last-child {
  border-right: 0;
}

.pal-product-specifications h3 {
  margin: 0;
  color: var(--pal-product-white);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.pal-product-specifications ul {
  margin: 22px 0 0;
  padding-left: 1.25rem;
}

.pal-product-specifications li {
  color: var(--pal-product-cool-grey);
  font-size: var(--pal-product-copy-compact);
  line-height: 1.7;
}

.pal-product-page :is(p, li).pal-product-body-copy,
.pal-product-page .pal-product-body-copy :where(p, li) {
  max-width: 80ch;
  color: var(--pal-product-cool-grey);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: var(--pal-product-copy-compact);
  line-height: 1.7;
  letter-spacing: 0;
}

.pal-product-page .pal-product-body-copy p + p {
  margin-top: 1.3rem;
}

@media (max-width: 980px) {
  .pal-trial-section__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .pal-trial-section__copy {
    max-width: 60ch;
  }

  .pal-product-nav__links {
    justify-content: flex-start;
  }

  .pal-product-hero::before {
    background-position: 83% 50%, center, center;
    background-size: 720px auto, 512px 512px, 1024px 512px;
    opacity: .17;
  }

  .pal-proof-points {
    flex-wrap: wrap !important;
  }

  .pal-proof-points > .wp-block-column {
    flex-basis: 100% !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .pal-proof-points > .wp-block-column:last-child {
    border-bottom: 0;
  }

  .pal-feature-grid {
    flex-wrap: wrap !important;
  }

  .pal-feature-grid > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media (max-width: 1180px) {
  .pal-interactive-features__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 4vw, 30px);
  }

  .pal-interactive-features__schematic {
    grid-row: 1;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .pal-interactive-features__column--left {
    grid-row: 2;
  }

  .pal-interactive-features__column--right {
    grid-row: 3;
  }

  .pal-interactive-features__column {
    width: min(100%, 820px);
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .pal-product-nav__links {
    display: none;
  }

  .pal-interactive-features__grid {
    gap: 0;
  }

  .pal-interactive-features__schematic {
    display: none;
  }

  .pal-interactive-features__column--left,
  .pal-interactive-features__column--right {
    grid-row: auto;
  }

  .pal-interactive-features .pal-feature-card,
  .pal-interactive-features .pal-feature-token {
    cursor: default;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .pal-interactive-features .pal-interactive-features__schematic,
  .js .pal-interactive-features .pal-interactive-features__column,
  .js .pal-interactive-features .svg-route-fade,
  .js .pal-interactive-features .svg-reveal-group {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .pal-interactive-features .svg-draw-path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }
}

@media (max-width: 640px) {
  .pal-product-page {
    --pal-product-section-space: 32px;
    --pal-product-component-space: 26px;
    --pal-product-anchor-offset: 92px;
  }

  .pal-product-hero {
    min-height: 600px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .pal-product-hero__title {
    font-size: clamp(5.25rem, 27vw, 7.5rem);
  }

  .pal-product-hero__actions,
  .pal-product-purchase__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .pal-product-page .pal-product-cta,
  .pal-product-page .pal-product-cta .wp-block-button__link {
    width: 100%;
  }

  .pal-product-nav__links {
    width: min(calc(100% - 28px), var(--pal-panoramic-media-width));
  }

  .pal-product-section,
  .pal-product-trial,
  .pal-product-storefront {
    width: min(calc(100% - 28px), 1180px);
  }

  .pal-product-section {
    padding-top: var(--pal-product-section-space);
    padding-bottom: var(--pal-product-section-space);
  }

  .pal-product-page #testimonials.pal-product-section {
    --pal-testimonials-gutter: 14px;
  }

  .pal-trial-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .pal-trial-section__inner {
    width: min(100% - 28px, var(--pl-max));
  }

  .pal-trial-section__intro > h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .pal-product-trial {
    margin-bottom: var(--pal-product-component-space);
    padding: 28px 20px;
  }

  .pal-feature-item {
    padding-left: 26px;
  }

  .pal-interactive-features__svg {
    padding: 0;
  }

  .pal-interactive-features .pal-feature-card {
    padding: 18px 0 28px;
  }

  .pal-interactive-features .pal-feature-card::before {
    left: 0;
  }

  .pal-content-row__track {
    grid-auto-columns: min(84vw, 330px);
  }

  .pal-product-testimonials__carousel .pal-content-row__sequence > .pal-content-card {
    width: min(84vw, 330px);
    flex-basis: min(84vw, 330px);
  }

  .pal-product-purchase {
    padding: 56px 14px;
  }

  .pal-product-specifications .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .pal-product-specifications .wp-block-column {
    flex-basis: 100% !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-right: 20px;
    padding-left: 20px;
  }

  .pal-product-specifications .wp-block-column:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 782px) {
  .admin-bar .pal-product-section[id],
  .admin-bar .pal-product-trial[id],
  .admin-bar .pal-trial-section[id],
  .admin-bar .pal-product-storefront[id] {
    scroll-margin-top: calc(var(--pal-product-anchor-offset) + 46px);
  }
}

@media (max-width: 420px) {
  .pal-trial-section #mlb2-44419095 .ml-form-recaptcha {
    min-height: 61px;
  }

  .pal-trial-section #mlb2-44419095 .g-recaptcha {
    transform: scale(.78);
  }
}

@media (max-width: 360px) {
  .pal-product-hero__title {
    font-size: 5rem;
  }

  .pal-product-section > h2,
  .pal-product-testimonials__heading > h2,
  .pal-product-trial > h2,
  .pal-trial-section__intro > h2 {
    font-size: 3.4rem;
  }

  .pal-content-row__track {
    grid-auto-columns: calc(100vw - 44px);
  }

  .pal-product-testimonials__carousel .pal-content-row__sequence > .pal-content-card {
    width: calc(100vw - 44px);
    flex-basis: calc(100vw - 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pal-content-card__link {
    transition: none;
  }

  .pal-trial-section #mlb2-44419095 .ml-form-embedSubmitLoad::after {
    animation: none;
  }

  html:has(body.page-id-528) {
    scroll-behavior: auto;
  }

  .pal-product-page *,
  .pal-product-page *::before,
  .pal-product-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

[hidden] {
  display: none !important;
}
