@charset "UTF-8";

:root {
  --colorprimary: #000000;
  --colorprimarylight: #1A1A1A;
  --colorprimarylighter: #333333;
  --colorsecondary: #ffffff;
  --colorsecondary-dim: rgba(255,255,255,0.4);
  --colorsecondary-faint: rgba(255,255,255,0.08);
  --colortertiary: #00ff00;
  --font: "Epilogue", sans-serif;
  --font-ui: 'Handjet', monospace;
  --font-display: var(--font);
  --base: 16px;
  --font-size: calc(var(--base) + 1px);
  --heading-h1-size: 2.4rem;
  --max-w: 1024px;
  --nav-w: 200px;
  --gap: 40px;
  --border: 1px solid var(--colorsecondary);
  --border-dim: 1px solid rgba(255,255,255,0.2);
  --lines: 1px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base);
  scroll-behavior: smooth;
}

/* Sections:
- 1.TYPOGRAPHY
- 2.COLORS
- 3.LAYOUT
*/
/* 1.TYPOGRAPHY */

body,
h3,
h4,
h5,
p {
  font-optical-sizing: auto;
  line-height: 120%;
  font-family: var(--font-ui);
  font-weight: 400;
  font-display: swap;
  font-variation-settings: "slnt" 0, "wdth" 100;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
}

body,
p {
  font-size: var(--font-size);
}

p {
  line-height: 150%;
}

h1,
h2 {
  font-size: 32px;
}
h3,
h4 {
  font-size: 24px;
}

h1 {
  font-size: var(--heading-h1-size);
}

h1,
h2,
h3 {
  text-transform: capitalize;
}

h1,
h2,
.logo-mark {
  font-family: var(--font);
  font-optical-sizing: auto;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
  font-display: swap;
}

h3,
h4 {
  font-family: var(--font-display);
}

h1,
h2,
h3,
h4,
h5,
p,
#edd_checkout_form_wrap .edd-payment-icons,
details p:last-child,
.download-archive h1 {
  margin-bottom: var(--base);
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
p:first-child,
.home-download-grid.download-grid.grid.three,
.download-product-copy h2:first-child,
.download-product-copy h3:first-child,
.download-product-feature-copy h3:first-child {
  margin-top: 0;
}

p:last-child,
.filters,
.breadcrumb,
.breadcrumb nav,
.download-product-feature-copy p:last-child {
  margin-bottom: 0;
}

.logo-sub {
  color: var(--colortertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

ul,
li {
  margin: 0 0 0 var(--base);
  padding: 0 0 calc(var(--base)/2);
}

.splide__list ul,
.splide__list li {
  padding: 0;
}

ul i,
li i {
  margin-right: calc(var(--base)/2);
}

hr {margin-bottom: var(--base);}

/* 2. COLORS */

body {
  color: var(--colorsecondary);
  background-color: var(--colorprimary);
}

a,
a:visited,
a:active,
a:hover,
.download-archive-intro p,
.download-price-badge.is-paid,
.download-product-feature-copy p,
.download-product-details a {
  color: var(--colorsecondary);
}

a:hover,
.download-card-title a,
.download-card-title a:visited,
.download-card-title a:active,
.download-card-cta,
.download-card-cta:visited,
.download-card-cta:active {
  text-decoration: none;
}

/* 3.LAYOUT */
/* LAYOUT */

.site-wrap,
.site-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: var(--nav-w) 1fr;
  grid-template-rows: 1fr;
  gap: 0 var(--gap);
  min-height: calc(100vh - 96px);
  align-items: stretch;
}

/* LEFT COLUMN — sticky nav */

.col-nav {
  position: sticky;
  top: 0;
  align-self: start;
  border-right: var(--border);
  padding: var(--gap) var(--gap) var(--gap) 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

/* LOGO */

#wireframe-logo {
  width: 100%;
  min-height: 159px;
  height: auto;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.stage {
  position: relative;
  width: min(100%, 600px);
  max-width: 600px;
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  background: transparent;
}

.stage canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

/* NAV */

nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border);
}

nav a {
  color: var(--colorsecondary);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s, padding-left 0.15s;
}

.site-navigation a {
  justify-content: flex-start;
}

.nav-entry-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.nav-entry-label .material-symbols-outlined {
  color: var(--colortertiary);
  flex: 0 0 auto;
  font-size: 20px;
}

nav a:first-child {
  border-top: var(--border);
}

nav a::after {
  content: "→";
  opacity: 0;
  transition: opacity 0.15s;
}

nav a:hover {
  color: var(--colorsecondary);
  padding-left: 12px;
}

nav a:hover::after {
  opacity: 1;
}

nav a::after {
  margin-left: auto;
}

nav a.nav-premium {
  font-weight: 400;
}

.nav-cart {
  margin-top: -24px;
  font-size: var(--font-size);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}

.nav-cart .material-symbols-outlined {
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  transition: color 0.15s;
}

.nav-cart:hover {
  border-color: rgba(255,255,255,0.28);
  background-color: rgba(255,255,255,0.03);
  color: var(--colorsecondary);
}

.nav-cart:hover .material-symbols-outlined {
  color: var(--colortertiary);
}

/* RIGHT COLUMN */

.site-main-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.col-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: var(--gap) 0;
}

img,
video {
  width: auto;
  height: auto;
}

a.btn,
button,
.edd-add-to-cart,
.edd-has-js,
button.edd-submit.button.dark-gray,
a.edd-submit.button.dark-gray,
button.edd-submit.button,
a.edd-free-download,
.lowkey-btn,
a.lowkey-btn,
#edd-purchase-button,
.edd-submit,
[type=submit].edd-submit {
  display: inline-block;
  background-color: var(--colorprimary);
  border: var(--border);
  padding: var(--base);
  text-decoration: none;
  color: var(--colorsecondary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  line-height: 100%;
  font-weight: 600;
}

button,
input,
select,
textarea,
.edd-submit,
.edd-add-to-cart,
.edd-add-to-cart-label,
.download-product-direct-download,
.download-product-modal-trigger,
.download-card-cta,
.download-filter-chip,
.download-filter-tab {
  font-family: var(--font-ui);
  font-size: var(--font-size) !important;
}

a.btn:hover,
button:hover,
.edd-add-to-cart:hover,
.edd-has-js:hover,
button.edd-submit.button.dark-gray:hover,
a.edd-submit.button.dark-gray:hover,
button.edd-submit.button:hover,
a.edd-free-download:hover,
.lowkey-btn:hover,
a.lowkey-btn:hover,
#edd-purchase-button:hover,
.edd-submit:hover,
[type=submit].edd-submit:hover {
  background-color: var(--colortertiary);
  color: var(--colorprimary);
  border: 1px solid var(--colortertiary);
}

a.btn.lowkey,
button.lowkey,
.edd-add-to-cart.lowkey,
.edd-has-js.lowkey,
button.edd-submit.button.dark-gray.lowkey,
a.edd-submit.button.dark-gray.lowkey,
button.edd-submit.button.lowkey,
a.edd-free-download.lowkey,
.lowkey-btn.lowkey,
a.lowkey-btn.lowkey,
#edd-purchase-button.lowkey,
.edd-submit.lowkey,
[type=submit].edd-submit.lowkey {
  background-color: var(--colorsecondary);
  padding: calc(var(--base) * 0.2) var(--base);
}

a.btn.lowkey:hover,
button.lowkey:hover,
.edd-add-to-cart.lowkey:hover,
.edd-has-js.lowkey:hover,
button.edd-submit.button.dark-gray.lowkey:hover,
a.edd-submit.button.dark-gray.lowkey:hover,
button.edd-submit.button.lowkey:hover,
a.edd-free-download.lowkey:hover,
.lowkey-btn.lowkey:hover,
a.lowkey-btn.lowkey:hover,
#edd-purchase-button.lowkey:hover,
.edd-submit.lowkey:hover,
[type=submit].edd-submit.lowkey:hover,
.edd-free-downloads-direct-download-link:hover,
table th {
  background-color: var(--colorsecondary);
  color: var(--colorprimary);
}

.edd-free-downloads-direct-download {
  margin: var(--base) 0;
}

.edd-free-downloads-direct-download-link {
  background-color: var(--colorsecondary);
  color: var(--colorprimary);
  padding: calc(var(--base) * 0.2) var(--base);
  border-radius: calc(var(--base)/2);
  font-size: var(--font-size);
}

header.seo {
  margin-top: calc(var(--base) * 2);
}

header .wrapper {
  margin: 0 auto;
  color: var(--colorsecondary);
}

header nav.rank-math-breadcrumb a,
header nav.rank-math-breadcrumb a:visited,
header nav.rank-math-breadcrumb a:active {
  color: var(--colorprimary) Lighter;
  font-weight: 700;
}

header nav.rank-math-breadcrumb p {
  font-size: var(--font-size);
}

.filters p,
.breadcrumb p,
.breadcrumb nav p,
.download-product-details dd {
  margin: 0;
}

.grid {
  display: grid;
  row-gap: var(--base);
  height: auto;
  width: 100%;
  margin: auto;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.two > *,
.grid.three > *,
.grid.four > * {
  padding-right: var(--base);
}

.grid.two > *:nth-child(2),
.grid.three > *:nth-child(3),
.grid.four > *:nth-child(4),
.download-grid.grid.three > * {
  padding-right: 0;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.site-footer.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--base);
}

.site-footer.grid.four > * {
  padding-right: 0;
  min-width: 0;
}

.grid * {
  width: 100%;
}

footer.wrapper {
  margin-bottom: calc(var(--base) * 2);
}

footer {
    border-radius: calc(var(--base)/2);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

footer ul,
footer li {
    margin: 0;
    list-style-type: none;
}

.site-main-column > footer.wrapper {
    width: auto;
    max-width: none;
}

.site-main-column > .site-footer.wrapper {
    margin-top: calc(var(--base) * 3);
    margin-bottom: 0;
    padding: calc(var(--base) * 1.8) calc(var(--base) * 1.25) calc(var(--base) * 2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
      linear-gradient(90deg, rgba(0,255,0,0.045) 1px, transparent 1px),
      linear-gradient(180deg, rgba(0,255,0,0.045) 1px, transparent 1px),
      rgba(255,255,255,0.025);
    background-size: 18px 18px;
    color: #d8ffe1;
    border-radius: 0;
    border-top: 1px solid rgba(0,255,0,0.62);
    border-right: 1px solid rgba(0,255,0,0.62);
    border-left: 1px solid rgba(0,255,0,0.62);
}

.site-footer.grid.four {
    gap: calc(var(--base) * 1.2);
}

.site-footer.grid.four > * {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--base) * 0.9);
}

.site-footer h5,
.site-footer .widget-title {
    margin: 0 0 calc(var(--base) * 0.75);
    color: #8cff9d;
    font-family: var(--font-ui);
    font-size: var(--font-size);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-shadow: 0 0 10px rgba(0,255,0,0.22);
    text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer .textwidget,
.site-footer .textwidget p,
.home-matrix p,
.home-matrix li,
.home-matrix small {
    color: var(--colorsecondary);
}

.site-footer a,
.site-footer a:visited,
.site-footer a:active {
    color: var(--colorsecondary);
    text-decoration-color: rgba(140,255,157,0.5);
    text-underline-offset: 0.16em;
}

.site-footer a:hover {
    color: var(--colorsecondary);
    text-decoration-color: var(--colorsecondary);
}

.footer-widgets {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.site-footer .widget_block img {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
}

.site-main-column > .site-footer.wrapper::before,
.site-main-column > .site-footer.wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-main-column > .site-footer.wrapper::before {
    background: repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 6px);
    opacity: 0.18;
}

.site-main-column > .site-footer.wrapper::after {
    inset: var(--base);
}

@media only screen and (max-width: 800px) {

.site-main-column > .site-footer.wrapper {
        padding: calc(var(--base) * 1.35) var(--base) calc(var(--base) * 1.6);
        box-shadow:
          0 0 22px rgba(0,255,0,0.12),
          8px 8px 0 rgba(0,0,0,0.4);
    }

}

.lwptoc {
  background-color: var(--colorprimarylight);
  border-radius: calc(var(--base)/2);
  padding: var(--base);
}

.lwptoc a,
.lwptoc a:active,
.lwptoc a:visited {
  color: var(--colorsecondarytext);
  text-decoration: none;
}

.lwptoc a:hover {
  text-decoration: underline;
}

/* 4.CHECKOUT */

#edd_checkout_cart_wrap {
  border: var(--base) solid var(--colorsecondary);
  margin-bottom: var(--base);
  border-radius: calc(var(--base)/2);
}

#edd_checkout_cart td,
#edd_checkout_cart th,
#edd_checkout_form_wrap fieldset {
  border: 0;
  color: var(--colorsecondary);
}

#edd_checkout_cart thead,
#edd_user_history td,
#edd_user_history th {
  border-bottom: var(--base) solid var(--colorsecondary);
}

#edd_checkout_cart tfoot {
  border-top: var(--base) solid var(--colorsecondary);
}

#edd_checkout_cart th,
#edd_checkout_cart .edd_cart_header_row th,
#edd_checkout_form_wrap #edd-login-account-wrap,
#edd_checkout_form_wrap #edd-new-account-wrap,
#edd_checkout_form_wrap #edd_final_total_wrap,
#edd_checkout_form_wrap #edd_show_discount,
#edd_user_history th,
#edd_checkout_form_wrap .edd-cart-adjustment {
  background-color: transparent;
}

#edd_checkout_cart td {
  background-color: var(--colorprimary);
  padding: var(--base);
}

#edd_checkout_cart td img {
  width: 25%;
  border-radius: calc(var(--base)/2);
  border: 2px solid var(--colorsecondary);
  margin-right: var(--base);
}

#edd_checkout_form_wrap #edd_discount_code,
#edd_checkout_form_wrap #edd_purchase_submit,
#edd_checkout_form_wrap #edd_register_account_fields,
#edd_checkout_form_wrap #edd-discount-code-wrap,
#edd_checkout_form_wrap #edd_show_discount,
#edd_checkout_form_wrap #edd_checkout_user_info,
#edd_user_history td,
#edd_user_history th {
  padding: var(--base);
  border: 0;
  background-color: var(--colorprimary);
  color: var(--colorsecondary);
}

#edd_checkout_form_wrap #edd_final_total_wrap {
  padding: 0;
  background-color: var(--colorprimary);
  border: 0;
  color: var(--colorsecondary);
  font-size: 150%;
  color: #8EFF9D;
}

#edd_checkout_form_wrap span.edd-description {
  color: var(--colorsecondarytext);
}

#edd_checkout_form_wrap #edd-login-account-wrap {
  color: var(--colorsecondary);
  padding: var(--base);
  margin: var(--base);
  margin-bottom: var(--base);
  background-color: var(--colortertiary);
  border-radius: calc(var(--base)/2);
}

/* 5.PAGE SPECIFIC */

.download-product-hero {
  display: block;
}

/* 6.ITEM LISTING */

.filters,
.breadcrumb.archive-page {
  background-color: transparent;
  color: var(--colorsecondary);
}

.filters a,
.filters a:visited,
.filters a:active,
.breadcrumb.archive-page a,
.breadcrumb.archive-page a:visited,
.breadcrumb.archive-page a:active {
  color: var(--colorsecondary);
  text-decoration: underline;
}

.breadcrumb {
  border-top-left-radius: var(--base);
  border-top-right-radius: var(--base);
  padding: var(--base);
}

.page-numbers {
  display: inline-block;
  padding: calc(var(--base)/2) var(--base);
  border-radius: calc(var(--base) * 2);
}

.facetwp-page.active,
.page-numbers.current {
  background: var(--colorsecondary);
  color: var(--colorprimary);
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  text-decoration: none;
}

/* 7.MISC */

.splide__arrow {
  background: var(--colorsecondarytext);
  opacity: 1;
}

.splide__arrow:hover {
  background-color: var(--colorsecondary);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

table th,
table td {
  padding: calc(var(--base) * 2);
  text-align: center;
  line-height: 120%;
}

table th:first-child,
table td:first-child {
  text-align: left;
}

table thead td,
table thead th,
table tbody td,
table tbody th {
  border: var(--border);
}

table tbody {
  font-size: calc(var(--base) * 1.5);
}

/* Accordion styles */

details.layer-1 {
  padding: var(--base) calc(var(--base) * 2) 0 calc(var(--base) * 2);
  margin-bottom: var(--base);
}

details summary {
  cursor: pointer;
}

details h4:after {
  content: " +";
  font-size: 100%;
  color: var(--colorprimarylighter);
}

details[open] h4:after {
  content: " −";
  font-size: 100%;
  color: var(--colorprimarylighter);
}

/* Blog editorial layout */

.blog-archive,
.blog-article {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 2.5);
}

.blog-archive-header {
  align-items: start;
}

.blog-archive-visual {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(rgba(0,255,0,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,0,0.08) 1px, transparent 1px),
    #000000;
  background-size: 28px 28px;
}

.blog-category-directory {
  grid-column: 1 / -1;
}

.blog-feature {
  padding-top: 0;
  border-top: 0;
}

.blog-feature-card,
.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: calc(var(--base) * 2);
  align-items: stretch;
}

.blog-article-shell {
  grid-template-columns: 100%;
}

.blog-feature-copy,
.blog-article-heading {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 0.85);
}

.blog-feature-title,
.blog-card-title {
  margin: 0;
}

.blog-feature-title a,
.blog-feature-title a:visited,
.blog-feature-title a:active,
.blog-article-nav-card,
.blog-article-nav-card:visited,
.blog-article-nav-card:active {
  color: var(--colorsecondary);
  text-decoration: none;
}

.blog-feature-title a:hover,
.blog-article-nav-card:hover strong {
  color: var(--colortertiary);
}

.blog-feature-footer,
.blog-card-footer {
  display: grid;
  gap: calc(var(--base) * 0.75);
  margin-top: auto;
}

.blog-feature-footer .home-cta,
.blog-card-footer .download-card-cta {
  width: auto;
}

.blog-feature-media {
  min-height: 100%;
}

.blog-feature-media img,
.blog-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-fallback,
.blog-card-fallback {
  display: flex;
  min-height: 240px;
  height: 100%;
  align-items: flex-end;
  padding: var(--base);
  color: var(--colortertiary);
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--base) * 1.5);
}

.blog-card {
  flex-direction: column;
}

.blog-card-media {
  border-bottom: var(--border);
}

.blog-card-footer .blog-read-time {
  color: var(--colorsecondary-dim);
}

.blog-archive-empty {
  padding: var(--base);
  border: var(--border-dim);
  background: #000000;
}

.blog-article-hero {
  display: block;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: calc(var(--base) * 2);
  align-items: start;
}

.blog-article-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: var(--base);
}

.blog-article-panel,
.blog-article-content,
.blog-article-nav-card {
  border: var(--border-dim);
  background: #000000;
}

.blog-article-panel,
.blog-article-content {
  padding: var(--base);
}

.blog-article-facts {
  display: grid;
  gap: calc(var(--base) * 0.85);
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-article-facts li {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.blog-article-facts span {
  color: var(--colorsecondary-dim);
}

.blog-article-content > :last-child,
.blog-article-panel > :last-child,
.blog-article-nav-card > :last-child {
  margin-bottom: 0;
}

.blog-article-content blockquote,
.blog-article-content pre {
  padding: var(--base);
  border: var(--border-dim);
  background: var(--colorprimarylight);
}

.blog-article-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--base);
}

.blog-article-nav-card {
  display: grid;
  gap: 0.5rem;
  padding: var(--base);
}

.blog-article-nav-card .home-terminal-label {
  margin-bottom: 0;
}

/* 99.RESPONSIVE */

@media only screen and (max-width: 800px) {

.site-wrap,
.site-layout {
    display: block;
    min-height: 0;
  }

.col-nav {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: var(--border);
    padding-right: 0;
    overflow: visible;
  }

h1 {
    font-size: var(--heading-h1-size);
  }

h2 {
    font-size: 2.4rem;
  }

h3 {
    font-size: 1.8rem;
  }

h4,
h5 {
    font-size: 1.4rem;
  }

.grid * {
    width: 100%;
  }

.grid.two,
.grid.three,
.grid.four {
    grid-template-columns: 100%;
  }

}
/* OVERRIDES */

fieldset {
  border: 0;
  padding: var(--base);
  margin-bottom: var(--base);
}

.single-download .edd_download_purchase_form {
  margin-bottom: 0;
  text-align: center;
}

#edd-free-downloads-modal {
  color: var(--colorprimary);
}
/* Download archive catalogue */

.download-archive {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 2);
}

.download-archive-header,
.download-archive-seo h2,
.download-product-copy,
.download-product-tags .download-card-chips {
  max-width: 760px;
}

.download-archive-header.home-hero {
  max-width: none;
}

.download-archive-breadcrumbs,
.download-filter-label,
.download-card-meta,
.download-card-chips,
.download-card-cta,
.download-filter-tabbar-label,
.download-filter-tab,
.download-product-kicker,
.download-product-price-row,
.download-product-assurances,
.download-product-details dt {
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-archive-breadcrumbs {
    margin-bottom: var(--base); 
    padding: 0 0 calc(var(--base) * 0.6);
    color: var(--colortertiary);
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    background: transparent;
    box-shadow: none;
}

.download-archive-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-archive-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.download-archive-breadcrumb-item:not(:last-child)::after,
.download-product-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--colorsecondary-dim);
}

.download-archive-breadcrumb-item a,
.download-archive-breadcrumb-item a:visited,
.download-archive-breadcrumb-item a:active,
.download-archive-breadcrumb-item span {
    display: inline;
    color: var(--colorsecondary);
    text-decoration: none;
    border: 0 !important;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.download-archive-breadcrumb-item a:hover,
.download-archive-breadcrumb-item span,
.download-price-badge,
.download-card-title a:hover,
.download-filter-tabbar-label,
.home-tier-state.is-included,
.download-product-breadcrumbs a:hover,
.download-product-breadcrumbs span {
    color: var(--colortertiary);
}

.download-archive-intro {
  max-width: 680px;
  margin-bottom: calc(var(--base) * 1.5);
}

.download-filter-panel {
  display: grid;
  gap: var(--base);
  border: 0;
}

.download-filter-group {
  display: grid;
  gap: calc(var(--base)/2);
  padding-block: calc(var(--base)/2);
  border-top: var(--border-dim);
}

.download-filter-label {
  color: var(--colortertiary);
  font-size: var(--font-size);
}

.download-filter-links,
.download-archive .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--base)/2);
}

.download-filter-chip,
.download-filter-chip:visited,
.download-filter-chip:active {
  display: inline-flex;
  width: auto;
  color: var(--colorsecondary);
  border: var(--border);
  padding: 0.35rem 0.55rem;
  text-decoration: none;
  line-height: 1;
}

.download-filter-chip:hover,
.download-filter-chip.is-active,
.download-card-chips a:hover,
.download-filter-tab:hover,
.download-filter-tab.is-active {
  color: var(--colorprimary);
  background: var(--colortertiary);
  border-color: var(--colortertiary);
}

.download-grid.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
  gap: calc(var(--base) * 1.5);
  margin: 0;
}

.download-card {
  display: flex;
  min-width: 0;
  border: var(--border);
  background: var(--colorprimary);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.download-card:hover,
.download-card:focus-within,
.home-route-grid a:hover {
  border-color: var(--colortertiary);
  transform: translateY(-2px);
}

.download-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--colorprimarylight);
}

.download-card-media img,
.download-card-media .dl-thumb-placeholder,
.download-product-media-item,
.download-product-media-empty {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-card:hover .download-card-media {
  border-bottom-color: var(--colortertiary);
}

.download-card-body {
  display: flex;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  gap: calc(var(--base) * 0.75);
  padding: var(--base);
}

.download-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--base)/2);
  color: var(--colorsecondary-dim);
  font-size: var(--font-size);
}

.download-card-title {
  min-height: 3.1em;
  margin: 0;
  font-family: var(--font);
  font-size: 1.15rem;
  line-height: 1.25;
  text-transform: none;
}

.download-card-title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--colorsecondary);
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.download-card-summary {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.5em;
  margin: 0;
  color: var(--colorsecondary);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.download-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--base)/2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-card-chips li {
  width: auto;
  margin: 0;
  padding: 0;
}

.download-card-chips a,
.download-card-chips a:visited,
.download-card-chips a:active {
  display: inline-flex;
  width: auto;
  color: var(--colorsecondary);
  border: var(--border-dim);
  padding: 0.25rem 0.45rem;
  text-decoration: none;
  font-size: var(--font-size);
  line-height: 1;
}

.download-card-cta,
.download-card-cta:visited,
.download-card-cta:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  color: var(--colorprimary);
  background: var(--colortertiary);
  border: 1px solid var(--colortertiary);
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  line-height: 1;
}

.download-card-cta:hover {
  color: var(--colorsecondary);
  background: var(--colorprimary);
}

.download-archive .navigation.pagination {
  border: 0;
  align-items: flex-start;
}

.download-archive .page-numbers {
  border: var(--border-dim);
  border-radius: 0;
  text-decoration: none;
}

.download-archive .page-numbers.current {
  background: var(--colortertiary);
  color: var(--colorprimary);
  border-color: var(--colortertiary);
}

.download-archive-seo {
  display: grid;
  gap: var(--base);
  padding-top: calc(var(--base) * 2);
  border-top: var(--border-dim);
}

.download-archive-seo p,
.home-section-head {
  max-width: 780px;
}

.download-archive-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--base);
}

.download-archive-faq article {
  border: var(--border-dim);
  padding: var(--base);
}

.download-archive-faq h3 {
  font-family: var(--font);
  font-size: 1rem;
  text-transform: none;
}

@media only screen and (max-width: 800px) {

.download-card-body {
    min-height: 0;
  }

.download-archive-faq {
    grid-template-columns: 100%;
  }

}
/* Download archive hardening */

.download-filter-panel .download-filter-chip,
.download-filter-panel .download-filter-chip:visited,
.download-filter-panel .download-filter-chip:active {
  display: inline-flex;
  width: auto;
  justify-content: center;
  border: var(--border);
  padding: 0.35rem 0.55rem;
}

.download-filter-panel .download-filter-chip::after,
.download-card a::after,
.download-card-chips a::after {
  content: none;
}

.download-card {
  flex-direction: column;
}

.download-card-chips a,
.download-card-chips a:visited,
.download-card-chips a:active {
  width: auto;
}
/* Compact download archive filters */

.download-filter-tabbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(var(--base)/2);
  border-top: var(--border-dim);
  padding-top: var(--base);
}

.download-filter-tab {
  width: auto;
  color: var(--colorsecondary);
  background: var(--colorprimary);
  border: var(--border);
  padding: 0.35rem 0.55rem;
  line-height: 1;
  cursor: pointer;
}

.download-filter-panels {
  display: grid;
  gap: var(--base);
}

.download-filter-panel.has-filter-tabs {
  gap: var(--base);
}

.download-filter-panel.has-filter-tabs .download-filter-group {
  border-top: 0;
  padding-block: 0;
}

.download-filter-panel.has-filter-tabs .download-filter-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.download-filter-panel.has-filter-tabs .download-filter-group[hidden] {
  display: none;
}
/* Download filter visual hierarchy */

.download-filter-tabbar {
  display: grid;
  grid-template-columns: auto repeat(auto-fit, minmax(88px, 1fr));
  gap: 0;
  align-items: stretch;
  border: var(--border);
  padding: 0;
  background: var(--colorprimary);
}

.download-filter-tabbar-label {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 0.65rem 0.75rem;
  color: var(--colortertiary);
  border-right: var(--border);
  white-space: nowrap;
}

.download-filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  border: 0;
  border-right: var(--border-dim);
  padding: 0.65rem 0.7rem;
  color: var(--colorsecondary);
  background: var(--colorprimary);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.download-filter-tab:last-child,
.home-hero-readout span:last-child,
.home-tier-header > *:last-child,
.home-tier-row > *:last-child,
.home-tier-actions > *:last-child {
  border-right: 0;
}

.download-filter-panels {
  padding-top: calc(var(--base) * 0.75);
}

.download-filter-panel.has-filter-tabs .download-filter-links {
  gap: calc(var(--base) / 3);
}

.download-filter-panel.has-filter-tabs .download-filter-chip,
.download-filter-panel.has-filter-tabs .download-filter-chip:visited,
.download-filter-panel.has-filter-tabs .download-filter-chip:active {
  border-color: rgba(255,255,255,0.28);
  padding: 0.25rem 0.45rem;
  color: var(--colorsecondary-dim);
  background: transparent;
  font-size: var(--font-size);
  letter-spacing: 0.1em;
}

.download-filter-panel.has-filter-tabs .download-filter-chip:hover,
.download-filter-panel.has-filter-tabs .download-filter-chip.is-active {
  color: var(--colortertiary);
  background: transparent;
  border-color: var(--colortertiary);
}

@media only screen and (max-width: 800px) {

.download-filter-tabbar {
    grid-template-columns: 100%;
  }

.download-filter-tabbar-label,
.download-filter-tab {
    border-right: 0;
    border-bottom: var(--border-dim);
  }

.download-filter-tab:last-child {
    border-bottom: 0;
  }

}
/* Keep archive filter tabs horizontal until the mobile breakpoint */

.download-filter-tabbar {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.download-filter-tabbar-label {
  flex: 0 0 auto;
}

.download-filter-tab {
  flex: 1 1 0;
  min-width: 0;
}

@media only screen and (max-width: 800px) {

.download-filter-tabbar {
    display: grid;
    grid-template-columns: 100%;
  }

}

/* Homepage Matrix redesign */

.home-matrix {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 3);
}

.home-matrix h1,
.home-matrix h2 {
  max-width: 860px;
}

.home-matrix h1 {
  margin-bottom: var(--base);
  font-size: var(--heading-h1-size);
  line-height: 1.08;
}

.home-matrix h2 {
  margin-bottom: var(--base);
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.14;
}

.home-matrix .home-filter-matrix h3 {
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero,
.home-split,
.home-seo-grid,
.home-proof-grid,
.home-final-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: calc(var(--base) * 2);
    align-items: stretch;
  }

.home-hero {
    align-items: start;
  }

.home-breadcrumbs {
    grid-column: 1 / -1;
    margin-bottom: var(--base); 
  }

.home-hero-copy {
    grid-column: 1;
  }

.home-hero-visual {
    grid-column: 2;
  }

.home-terminal-label {
  margin-bottom: calc(var(--base) * 0.65);
  color: var(--colortertiary) !important;
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-terminal-label::before {
  content: "> ";
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--base) * 0.75);
  align-items: center;
  margin-top: calc(var(--base) * 1.5);
}

.home-cta,
.home-chip-link,
.home-inline-link {
  width: auto !important;
}

.home-hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  height:100%;
  align-content: center;
  background:
    linear-gradient(rgba(0,255,0,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,0,0.08) 1px, transparent 1px),
    #000000;
  background-size: 28px 28px;
  overflow: hidden;
}

.home-hero-visual::before,
.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero-visual::before {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 6px);
  opacity: 0.42;
}

.home-hero-visual::after {
  border: 1px solid rgba(255,255,255,0.18);
  inset: var(--base);
}

.home-hero-visual .stage {
  width: 100%;
  max-width: none;
  min-height: 500px;
  aspect-ratio: 1.18 / 1;
}

.home-hero-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.home-hero-visual-image-only {
  display: block;
  border: 1px solid rgba(0,255,0,0.45);
  background: transparent;
}

.home-hero-visual-image-only::before,
.home-hero-visual-image-only::after {
  content: none;
}

.home-hero-visual-image-only .home-hero-visual-image {
  min-height: 100%;
}

.home-ascii-logo-visual {
  min-height: 0;
  height: auto;
  aspect-ratio: 9 / 16;
  align-content: center;
  justify-items: center;
  align-self: start;
  background: transparent;
}

.home-ascii-logo-visual::before,
.home-ascii-logo-visual::after {
  display: none;
}

.home-ascii-logo-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
}

.home-ascii-logo-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: transparent;
}

.home-ascii-logo-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 760px;
  height: 760px;
  color: #00ff00;
  background: transparent;
  font-family: "Courier New", Consolas, monospace;
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0;
  transform-origin: center center;
  text-shadow:
    0 0 5px rgba(0,255,0,1),
    0 0 18px rgba(0,255,0,0.75),
    0 0 42px rgba(0,255,0,0.46),
    0 0 72px rgba(0,255,0,0.24);
}

.home-ascii-logo-stage canvas,
.home-ascii-logo-effect canvas {
  display: none;
}

.home-ascii-logo-effect table,
.home-ascii-logo-effect tbody,
.home-ascii-logo-effect tr,
.home-ascii-logo-effect td {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.home-hero-readout {
  position: absolute;
  right: var(--base);
  bottom: var(--base);
  left: var(--base);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,255,0,0.34);
  background: rgba(0,0,0,0.72);
}

.home-hero-readout span {
  min-width: 0;
  padding: 0.6rem;
  color: var(--colortertiary);
  border-right: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  letter-spacing: 0.08em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}


.home-signal-grid,
.home-route-grid,
.home-filter-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--base);
  align-items: stretch;
}

.home-signal-grid article,
.home-route-grid a,
.home-filter-matrix > div,
.home-proof-grid > div,
.home-seo-grid > div,
.home-final-panel,
.home-media-frame {
  border: var(--border-dim);
  background: #000000;
}

.home-signal-grid article,
.home-filter-matrix > div,
.home-seo-grid > div {
  padding: var(--base);
  height: 100%;
}

.home-signal-num {
  display: block;
  margin-bottom: calc(var(--base) * 0.5);
  color: var(--colortertiary);
  font-family: var(--font);
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
}

.home-signal-grid h2 {
  margin-bottom: calc(var(--base) * 0.5);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  letter-spacing: 0.12em;
  line-height: 1.15;
}

.home-section,
.download-product-section {
  display: grid;
  gap: calc(var(--base) * 1.25);
  padding-top: calc(var(--base) * 2);
  border-top: var(--border-dim);
}

.home-split > div,
.home-seo-grid > div {
  align-self: center;
}

.home-seo-grid {
  align-items: stretch;
}

.home-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.home-proof-grid > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: var(--base);
}

.home-seo-grid > div {
  align-self: stretch;
}

.home-media-frame {
  display: block;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
}

.home-media-frame img,
.home-media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.home-split-reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.home-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.home-route-grid-homepage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

.home-route-grid a,
.home-route-grid a:visited,
.home-route-grid a:active {
    display: grid;
    gap: calc(var(--base) * 0.55);
    position: relative;
    min-height: 190px;
    padding: var(--base);
    color: var(--colorsecondary);
    text-decoration: none;
    transition: border-color 0.15s ease, transform 0.15s ease;
    height: 100%;
    overflow: hidden;
  }

.material-symbols-outlined {
    font-family: 'Material Symbols Sharp';
    font-weight: 200;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
  }

.home-route-icon {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 0;
    color: rgba(255,255,255,0.1);
    font-size: 5.5rem !important;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
  }

.home-route-grid span:not(.home-route-icon) {
    color: var(--colortertiary);
    font-family: var(--font-ui);
    font-size: var(--font-size);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

.home-route-grid a > span:not(.home-route-icon),
.home-route-grid strong,
.home-route-grid small {
    position: relative;
    z-index: 1;
  }

.home-route-grid strong {
    font-family: var(--font);
    font-size: 1.15rem;
    line-height: 1.15;
    text-transform: uppercase;
}

.home-route-grid small {
  align-self: end;
  font-size: var(--font-size);
  line-height: 1.35;
}

.home-filter-matrix,
.home-seo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-seo-grid > div {
  display: flex;
  flex-direction: column;
}

.home-filter-matrix .download-filter-links {
  gap: calc(var(--base) * 0.5);
}

.home-filter-matrix .download-filter-chip {
  flex: 1 1 120px;
  justify-content: center;
}

.home-code-list {
  display: grid;
  gap: calc(var(--base) * 0.65);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-code-list li,
.download-product-assurances li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.25rem;
}

.home-code-list li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--colortertiary);
}

.home-faq article {
  height: 100%;
  background: #000000;
}

.home-faq {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-download-grid .download-card-title {
  min-height: 3.1em;
  margin: 0;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.home-tier-matrix {
  display: grid;
  border: var(--border-dim);
  background: #000000;
}

.home-tier-header,
.home-tier-row,
.home-tier-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr);
  align-items: stretch;
}

.home-tier-header {
  color: var(--colortertiary);
  border-bottom: 1px solid rgba(0,255,0,0.32);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-tier-header > *,
.home-tier-row > *,
.home-tier-actions > * {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0.8rem var(--base);
  border-right: var(--border-dim);
}

.home-tier-row {
  border-bottom: var(--border-dim);
}

.home-tier-feature {
  display: grid;
  gap: 0.25rem;
}

.home-tier-feature span {
  color: var(--colorsecondary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-tier-feature small {
  font-size: var(--font-size);
  line-height: 1.3;
}

.home-tier-state {
  justify-content: center;
  color: var(--colorsecondary-dim);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-tier-state::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  border: 1px solid currentColor;
}

.home-tier-state.is-included::before {
  background: var(--colortertiary);
  box-shadow: 0 0 12px rgba(0,255,0,0.45);
}

.home-tier-state.is-limited::before {
  background:
    linear-gradient(45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%);
}

.home-tier-actions {
  border-top: 1px solid rgba(0,255,0,0.32);
}

.home-tier-actions > span {
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-tier-actions a {
  justify-content: center;
}

.home-final-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: calc(var(--base) * 1.25);
  border-color: rgba(0,255,0,0.42);
}

@media only screen and (max-width: 980px) {

.home-hero,
.home-split,
.home-split-reverse,
.home-seo-grid,
.home-proof-grid,
.home-final-panel {
      grid-template-columns: 100%;
    }

  .home-breadcrumbs,
  .home-hero-copy,
  .home-hero-visual {
      grid-column: auto;
    }

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

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

}

@media only screen and (max-width: 800px) {

.home-matrix {
    gap: calc(var(--base) * 2);
  }

.home-hero {
    min-height: 0;
  }

  .home-hero-visual {
    min-height: 300px;
  }

  .download-archive-header.home-hero {
    gap: var(--base);
  }

  .download-archive-header.home-hero .download-archive-breadcrumbs {
    margin-bottom: 0;
  }

  .download-archive-header.home-hero .download-archive-intro {
    margin-bottom: 0;
  }

  .download-archive-header.home-hero .home-hero-visual {
    min-height: 180px;
  }

  .download-archive-header.home-hero .home-hero-visual-image {
    height: 180px;
    min-height: 180px;
    object-fit: cover;
  }

  .home-ascii-logo-visual,
  .home-ascii-logo-frame {
    aspect-ratio: 1;
  }

  .home-hero-visual .stage {
    min-height: 280px;
  }

.home-hero-readout,
.home-signal-grid,
.home-route-grid,
.home-filter-matrix,
.home-faq {
    grid-template-columns: 100%;
  }

.home-tier-header,
.home-tier-row,
.home-tier-actions {
    grid-template-columns: minmax(0, 1fr) minmax(76px, 0.48fr) minmax(76px, 0.48fr);
  }

.home-tier-header > *,
.home-tier-row > *,
.home-tier-actions > * {
    padding: 0.7rem;
  }

.home-tier-feature span {
    font-size: var(--font-size);
  }

.home-hero-readout span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

.home-hero-readout span:last-child {
    border-bottom: 0;
  }

.home-media-frame,
.home-media-frame img,
.home-media-frame video {
    min-height: 240px;
  }

  .download-archive-ad-band-desktop {
    display: none;
  }

}
/* Single EDD download product page */

.download-product {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 2.5);
}

.download-product-breadcrumbs {
  display: block;
}

.download-product-breadcrumbs ol {
  gap: 0.35rem 0.8rem;
}

.download-product-breadcrumbs li {
  gap: 0.8rem;
}

.download-product-breadcrumbs a,
.download-product-breadcrumbs a:visited,
.download-product-breadcrumbs a:active,
.download-product-breadcrumbs span {
  border: 0 !important;
  background: transparent;
  box-shadow: none;
}

.download-product-main-media,
.download-product-feature-media {
  display: block;
  min-width: 0;
  margin: 0;
  border: var(--border);
  background: var(--colorprimarylight);
  overflow: hidden;
}

.download-product-main-media {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.download-product-media-empty {
  background: linear-gradient(135deg, rgba(0,255,0,0.24), rgba(255,255,255,0.04));
}

.download-product-header {
  display: grid;
  gap: calc(var(--base) * 0.65);
  max-width: 860px;
}

.download-product-buybox {
  display: grid;
  gap: var(--base);
  align-content: start;
}

.download-product-kicker {
  margin: 0;
  color: var(--colortertiary);
  font-size: var(--font-size);
}

.download-product h1,
.download-product h2 {
  margin: 0;
  text-align: left;
}

.download-product h1 {
  font-size: var(--heading-h1-size);
  line-height: 1.05;
}

.download-product-buybox h1 {
  font-size: var(--heading-h1-size);
}

.download-product h2 {
  font-size: 2rem;
}

.download-product-related h3 {
  margin: 0;
  color: var(--colorsecondary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.25;
  text-transform: none;
}

.download-product-subheading {
  margin: 0;
  color: var(--colorsecondary);
}

.download-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--base);
  padding-top: var(--base);
  border-top: var(--border-dim);
  color: var(--colorsecondary-dim);
  font-size: var(--font-size);
}

.download-product-price {
  color: var(--colortertiary);
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}

.download-product-actions .edd_download_purchase_form,
.download-product-actions .edd_purchase_submit_wrapper,
.download-product-actions .edd-submit,
.download-product-actions .edd-add-to-cart,
.download-product-actions .download-product-direct-download {
  width: 100%;
  margin: 0;
}

.download-product-actions button.edd-submit.button,
.download-product-actions a.edd-submit.button,
.download-product-actions .edd-submit,
.download-product-actions .edd-add-to-cart,
.download-product-direct-download,
.download-product-modal-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--colortertiary) !important;
  border-color: var(--colortertiary) !important;
  color: var(--colorprimary) !important;
  text-decoration: none;
}

.download-product-free .download-product-modal-trigger {
  min-height: calc(var(--base) * 3.25);
}

.download-product-actions button.edd-submit.button:hover,
.download-product-actions a.edd-submit.button:hover,
.download-product-actions .edd-submit:hover,
.download-product-actions .edd-add-to-cart:hover,
.download-product-direct-download:hover,
.download-product-modal-trigger:hover {
  background: var(--colorprimary) !important;
  color: var(--colorsecondary) !important;
}

.download-product-assurances {
  display: grid;
  gap: calc(var(--base) * 0.55);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--colorsecondary-dim);
  font-size: var(--font-size);
}

.download-product-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--colortertiary);
  background: var(--colortertiary);
}

.download-product-trust {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.download-product-section-head {
  display: grid;
  gap: calc(var(--base) * 0.5);
}

.download-product-copy h2,
.download-product-copy h3,
.download-product-feature-copy h3 {
  margin-top: calc(var(--base) * 1.25);
  font-family: var(--font);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.download-product-feature-carousel {
  --feature-arrow-size: 2.5rem;
  max-width: 100%;
  padding-bottom: calc(var(--base) * 2);
  overflow: hidden;
}

.download-product-feature-carousel .splide__track {
  overflow: hidden;
}

.download-product-feature-carousel .splide__list,
.download-product-feature-carousel .splide__slide {
  margin: 0;
  padding: 0;
}

.download-product-feature {
  display: grid;
  grid-template-rows: minmax(260px, auto) 1fr;
  gap: 0;
  height: 100%;
  border: 1px solid rgba(0,255,0,0.55);
  background: #000000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.download-product-feature-carousel .splide__slide.is-active .download-product-feature {
  border-color: var(--colortertiary);
}

.download-product-feature-media {
  aspect-ratio: 16 / 9;
  border: 0;
  border-bottom: 1px solid rgba(0,255,0,0.42);
}

.download-product-feature-copy {
  min-width: 0;
  padding: calc(var(--base) * 1.25);
}

.download-product-feature-copy h3 {
  color: var(--colortertiary);
  font-size: 1.35rem;
  line-height: 1.05;
}

.download-product-feature-carousel .splide__pagination {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2.75rem, 1fr));
  gap: calc(var(--base) * 0.45);
  width: 100%;
  padding: 0;
}

.download-product-feature-carousel .splide__pagination__page {
  display: block;
  width: 100%;
  height: 0.7rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  background: var(--colorprimary);
  opacity: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.download-product-feature-carousel .splide__pagination__page:hover,
.download-product-feature-carousel .splide__pagination__page:focus-visible {
  border-color: var(--colortertiary);
  background: rgba(0,255,0,0.32);
  outline: 0;
}

.download-product-feature-carousel .splide__pagination__page.is-active {
  transform: none;
  background: var(--colortertiary);
  border-color: var(--colortertiary);
}

.download-product-commerce-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  align-items: stretch;
}

.download-product.download_category-premium-downloads .download-product-description {
  order: 10;
}

.download-product.download_category-premium-downloads .download-product-features-section {
  order: 20;
}

.download-product.download_category-premium-downloads .download-product-commerce-grid {
  order: 30;
}

.download-product.download_category-premium-downloads .download-product-tags {
  order: 40;
}

.download-product-info-stack {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: calc(var(--base) * 1.25);
  min-width: 0;
  height: 100%;
}

.download-product-buy-stack {
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr);
  gap: var(--base);
  min-width: 0;
  height: 100%;
}

.download-product-detail-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: var(--border);
  padding: var(--base);
  background: #000000;
}

.download-product-details {
  display: grid;
  gap: calc(var(--base) * 0.75);
  margin: var(--base) 0 0;
}

.download-product-details div {
  display: grid;
  grid-template-columns: minmax(92px, 0.38fr) minmax(0, 1fr);
  gap: var(--base);
  padding-bottom: calc(var(--base) * 0.75);
  border-bottom: var(--border-dim);
}

.download-product-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.download-product-details dt {
  color: var(--colortertiary);
  font-size: var(--font-size);
}

.download-product-contents {
  flex: 1;
  max-height: clamp(96px, 16vw, 180px);
  margin: var(--base) 0 0;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--colorsecondary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  line-height: 1.35;
}

.download-product-panel-empty {
  margin-top: var(--base);
  color: var(--colorsecondary-dim);
}

.download-product-free-revenue {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.download-product-free-main,
.download-product-free-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--base);
  min-width: 0;
}

.download-product-ad {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px dashed rgba(0,255,0,0.62);
  background:
    linear-gradient(90deg, rgba(0,255,0,0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,255,0,0.12) 1px, transparent 1px),
    rgba(255,255,255,0.025);
  background-size: 18px 18px;
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.download-product-ad-leaderboard {
  min-height: 96px;
}

.download-product-ad-inline {
  min-height: 190px;
}

.download-product-ad-buybox {
  min-height: 150px;
}

.download-product-ad-rectangle,
.download-product-ad-modal {
  min-height: 250px;
}

.download-archive-ad-band {
  display: grid;
  gap: var(--base);
}

.download-archive-ad-band-desktop {
  display: grid;
}

.download-archive-free-revenue {
  margin-top: calc(var(--base) * 0.5);
}

.download-archive-free-revenue .download-product-ad-buybox {
  min-height: 190px;
}

.download-product-free-main > *,
.download-product-free-side > * {
  width: 100%;
}

.download-product-upgrade {
  height: 100%;
  border: 1px solid rgba(0,255,0,0.62);
  background:
    linear-gradient(90deg, rgba(0,255,0,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,255,0,0.045) 1px, transparent 1px),
    rgba(255,255,255,0.025);
  background-size: 18px 18px;
  box-shadow: none;
}

.download-product-upgrade a,
.download-product-upgrade a:visited,
.download-product-upgrade a:active {
  display: grid;
  gap: calc(var(--base) * 0.75);
  padding: var(--base);
  color: var(--colorsecondary);
  text-decoration: none;
}

.download-product-upgrade a {
  height: calc(100% - 2rem);
  align-content: start;
}

.download-product-upgrade .download-product-kicker {
  padding: var(--base) var(--base) 0;
}

.download-product-upgrade-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: var(--border-dim);
}

.download-product-upgrade strong {
  color: var(--colortertiary);
  font-family: var(--font);
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.download-product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--base);
}

.download-product-related-card {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: var(--border);
  background: var(--colorprimary);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.download-product-related-card:hover,
.download-product-related-card:focus-within {
  border-color: var(--colortertiary);
  transform: translateY(-2px);
}

.download-product-related-card a,
.download-product-related-card a:visited,
.download-product-related-card a:active {
  display: grid;
  gap: calc(var(--base) * 0.75);
  height: 100%;
  color: var(--colorsecondary);
  text-decoration: none;
}

.download-product-related-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--colorprimarylight);
}

.download-product-related-media img,
.download-product-related-media .download-product-media-empty {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-product-related-card strong {
  display: -webkit-box;
  overflow: hidden;
  padding: 0 var(--base) var(--base);
  color: var(--colorsecondary);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--font-size);
  line-height: 1.25;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.download-product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: var(--base);
}

.download-product-modal-active {
  overflow: hidden;
}

.download-product-modal.is-open {
  display: grid;
}

.download-product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.download-product-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--base);
  width: min(100%, 420px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: var(--border);
  background: #000000;
  padding: calc(var(--base) * 1.25);
  box-shadow: 0 0 0 1px rgba(0,255,0,0.32), 0 0 32px rgba(0,255,0,0.16);
}

.download-product-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 0;
  border-left: var(--border-dim);
  border-bottom: var(--border-dim);
  background: var(--colorprimary);
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  cursor: pointer;
}

.download-product-modal-panel h2 {
  padding-right: 2.25rem;
  font-size: 1.45rem;
}

.download-product-modal-countdown {
  margin: 0;
  color: var(--colorsecondary-dim);
  text-align: center;
}

.download-product-modal-countdown span {
  color: var(--colortertiary);
}

.download-product-modal-actions[hidden] {
  display: none;
}

.download-product-tags h2 {
  font-size: 1.15rem;
}

@media only screen and (max-width: 720px) {

.download-product-hero,
.download-product-commerce-grid,
.download-product-free-revenue {
    grid-template-columns: 100%;
  }

.download-product-info-stack {
    grid-template-rows: none;
  }

.download-product-related-grid {
    grid-template-columns: 100%;
  }

.download-product-feature-carousel .splide__track {
    overflow: hidden;
  }

}

@media only screen and (max-width: 800px) {

.download-product {
    gap: calc(var(--base) * 2);
  }

.download-product h1 {
    font-size: var(--heading-h1-size);
  }

.download-product-details div {
    grid-template-columns: 100%;
    gap: calc(var(--base) * 0.25);
  }

}

@media only screen and (max-width: 1100px) {

.blog-feature-card,
.blog-article-shell,
.blog-article-layout {
    grid-template-columns: 100%;
  }

.blog-grid {
    grid-template-columns: 100%;
  }

.blog-article-rail {
    position: static;
  }

}

@media only screen and (max-width: 720px) {

.blog-archive-header,
.blog-article-hero,
.blog-article-content,
.blog-feature-copy {
    padding: 18px;
  }

.blog-card {
    grid-template-rows: 190px 1fr;
  }

.blog-feature-footer,
.blog-card-footer,
.blog-article-footer-nav {
    grid-template-columns: 100%;
    justify-content: flex-start;
  }

.blog-feature-footer,
.blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* 9.SERVICE + ACCOUNT PAGES */

.account-page,
.service-page {
  display: grid;
  gap: calc(var(--base) * 1.5);
}

.account-shell,
.service-shell {
  width: 100%;
}

.account-card,
.service-card {
  border: var(--border-dim);
  background: #000;
  padding: calc(var(--base) * 1.15);
}

.account-page__hero,
.service-page__hero {
  border: 1px solid rgba(0,255,0,0.55);
  background:
    linear-gradient(90deg, rgba(0,255,0,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,255,0,0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,255,0,0.12), rgba(255,255,255,0.02));
  background-size: 18px 18px, 18px 18px, auto;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.account-page__kicker,
.service-page__kicker,
.service-card__eyebrow {
  margin: 0 0 calc(var(--base) * 0.75);
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-page__hero h1,
.service-page__hero h1,
.service-section-heading h2 {
  margin-bottom: calc(var(--base) * 0.75);
}

.account-link-grid,
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--base);
}

.account-section-grid,
.service-split-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: var(--base);
  align-items: start;
}

.service-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.account-section-grid--auth {
  align-items: stretch;
}

.account-link-card,
.account-link-card:active,
.account-link-card:visited {
  display: grid;
  gap: calc(var(--base) * 0.55);
  min-height: 100%;
  border: var(--border-dim);
  background: #000;
  padding: var(--base);
  color: var(--colorsecondary);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.account-link-card:hover {
  border-color: var(--colortertiary);
  transform: translateY(-2px);
}

.account-link-card__label {
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: var(--font-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-link-card strong {
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.account-page .edd_form,
.account-page #edd_user_history,
.account-page #edd_download_history,
.service-page .wpforms-container {
  margin-top: var(--base);
}

.account-page .edd_form fieldset,
.account-page #edd_profile_editor_form fieldset {
  border: var(--border-dim);
  background: rgba(255,255,255,0.02);
  padding: var(--base);
}

.account-page .edd_form legend,
.account-page #edd_profile_editor_form legend {
  color: var(--colortertiary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-page .edd_form p,
.account-page #edd_profile_editor_form p {
  margin-bottom: calc(var(--base) * 0.85);
}

.account-page label {
  display: block;
  margin-bottom: calc(var(--base) * 0.35);
}

.account-page .edd-input,
.account-page .edd-select,
.account-page select,
.account-page input[type="text"],
.account-page input[type="email"],
.account-page input[type="password"],
.service-page .wpforms-container input,
.service-page .wpforms-container textarea,
.service-page .wpforms-container select {
  width: 100%;
  border: var(--border-dim);
  background: var(--colorprimary);
  color: var(--colorsecondary);
  padding: calc(var(--base) * 0.8);
}

.account-page .edd-login-remember label {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.account-page .edd-login-remember input,
.account-page input[type="checkbox"] {
  width: auto;
}

.account-page .edd-table {
  width: 100%;
}

.account-page .edd-table tbody {
  font-family: var(--font-ui);
  font-size: var(--font-size);
}

.account-page .edd-table td,
.account-page .edd-table th {
  padding: calc(var(--base) * 0.9);
}

.account-page .edd_purchase_details a,
.account-page .edd-lost-password a,
.account-page .edd-table a {
  color: var(--colortertiary);
}

.account-page .edd-profile-emails {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-page .edd-profile-email {
  display: flex;
  justify-content: space-between;
  gap: var(--base);
  margin: 0 0 calc(var(--base) * 0.5);
  padding: calc(var(--base) * 0.65);
  border: var(--border-dim);
}

.account-card--editor {
  display: grid;
  gap: calc(var(--base) * 0.5);
}

.service-page__logo-wall {
  overflow: hidden;
}

.service-page__logo-gallery {
  position: relative;
}

.service-page__logo-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-page__logo-grid {
  position: relative;
  min-height: clamp(260px, 42vw, 420px);
  border: var(--border-dim);
  overflow: hidden;
}

.service-page__logo-example {
  position: absolute;
  inset: 0;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0,255,0,0.12), transparent 60%),
    rgba(255,255,255,0.02);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-page__logo-media {
  position: absolute;
  inset: calc(var(--base) * 1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-page__logo-example img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#service-logo-slide-1:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(1),
#service-logo-slide-2:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(2),
#service-logo-slide-3:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(3),
#service-logo-slide-4:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(4),
#service-logo-slide-5:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(5),
#service-logo-slide-6:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(6),
#service-logo-slide-7:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(7),
#service-logo-slide-8:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(8),
#service-logo-slide-9:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(9),
#service-logo-slide-10:checked ~ .service-page__logo-grid .service-page__logo-example:nth-child(10) {
  opacity: 1;
}

.service-page__logo-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-page__logo-control-set {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(var(--base) * 0.75);
}

#service-logo-slide-1:checked ~ .service-page__logo-controls .service-page__logo-control-set--1,
#service-logo-slide-2:checked ~ .service-page__logo-controls .service-page__logo-control-set--2,
#service-logo-slide-3:checked ~ .service-page__logo-controls .service-page__logo-control-set--3,
#service-logo-slide-4:checked ~ .service-page__logo-controls .service-page__logo-control-set--4,
#service-logo-slide-5:checked ~ .service-page__logo-controls .service-page__logo-control-set--5,
#service-logo-slide-6:checked ~ .service-page__logo-controls .service-page__logo-control-set--6,
#service-logo-slide-7:checked ~ .service-page__logo-controls .service-page__logo-control-set--7,
#service-logo-slide-8:checked ~ .service-page__logo-controls .service-page__logo-control-set--8,
#service-logo-slide-9:checked ~ .service-page__logo-controls .service-page__logo-control-set--9,
#service-logo-slide-10:checked ~ .service-page__logo-controls .service-page__logo-control-set--10 {
  display: flex;
}

.service-page__logo-control {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  padding: calc(var(--base) * 0.5);
  border: 1px solid rgba(0,255,0,0.5);
  background: rgba(0,0,0,0.82);
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: 0;
  cursor: pointer;
}

.service-page__logo-control:hover {
  background: var(--colortertiary);
  color: var(--colorprimary);
}

.service-page__logo-control:first-child::before {
  content: "\2190";
  font-size: 1.25rem;
}

.service-page__logo-control:last-child::before {
  content: "\2192";
  font-size: 1.25rem;
}

.service-page__intro {
  max-width: 42rem;
}

.service-card--feature,
.service-card--media,
.service-card--form {
  min-height: 100%;
}

.service-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(var(--base) * 0.55);
}

.service-bullet-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.1rem;
}

.service-bullet-list li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--colortertiary);
}

.service-page__video-frame {
  margin-bottom: var(--base);
  overflow: hidden;
}

.service-page__video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.service-page__media-copy > :last-child,
.service-page__form-wrap > :last-child {
  margin-bottom: 0;
}

.service-section-heading {
  display: grid;
  gap: calc(var(--base) * 0.4);
  margin-bottom: var(--base);
}

.service-page .wpforms-container {
  max-width: none;
}

.service-page .wpforms-container .wpforms-field-label,
.service-page .wpforms-container label {
  color: var(--colorsecondary);
}

.service-page .wpforms-container .wpforms-field {
  padding: 0 0 calc(var(--base) * 0.85);
}

.service-page .wpforms-container .wpforms-submit-container {
  padding-top: calc(var(--base) * 0.25);
}

.download-archive-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--base);
  margin: calc(var(--base) * -0.5) 0 calc(var(--base) * 1.5);
}

.download-archive-proof-strip > div {
  border: 1px solid rgba(0,255,0,0.42);
  background: rgba(0,255,0,0.035);
  padding: calc(var(--base) * 0.8);
  min-width: 0;
}

.download-archive-proof-strip span,
.download-archive-proof-strip strong {
  display: block;
}

.download-archive-proof-strip span {
  color: var(--colortertiary);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.download-archive-proof-strip strong {
  margin-top: calc(var(--base) * 0.35);
  color: var(--colorsecondary);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.25;
}

@media only screen and (max-width:980px) {
  .service-page__logo-grid {
    min-height: clamp(220px, 48vw, 340px);
  }

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

@media only screen and (max-width:800px) {
  .account-link-grid,
  .account-section-grid,
  .download-archive-proof-strip,
  .service-feature-grid,
  .service-split-grid {
    grid-template-columns: 100%;
  }

  .account-card,
  .service-card {
    padding: var(--base);
  }

  .account-page .edd-profile-email {
    display: grid;
  }
}
