:root {
  --ink: #05070c;
  --ink-deep: #020409;
  --surface: #0b111a;
  --surface-raised: #101824;
  --surface-soft: #131d2a;
  --text: #f3f1eb;
  --muted: #9aa7b8;
  --faint: #5f6b7d;
  --line: #344052;
  --magenta: #ff2f98;
  --cyan: #27c7f7;
  --orange: #ff8b24;
  --display: "Arial Narrow", "Avenir Next Condensed", "DIN Condensed", Impact, sans-serif;
  --body: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --max: 1540px;
  --ease: cubic-bezier(.2, .72, .18, 1);
}

@property --trace-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 7%, rgba(22, 74, 111, .13), transparent 28rem),
    radial-gradient(circle at 10% 34%, rgba(116, 16, 76, .1), transparent 32rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .18;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, .014) 4px
  );
  mix-blend-mode: screen;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: var(--ink-deep);
  transition: opacity .55s var(--ease), visibility .55s;
}

.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
}

.page-loader__brand {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: .28em;
}

.page-loader__line {
  width: min(440px, 68vw);
  height: 2px;
  margin-top: 11rem;
  overflow: hidden;
  background: #151c27;
}

.page-loader__line::after {
  display: block;
  width: 42%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  animation: loadSignal 1.15s var(--ease) infinite;
}

@keyframes loadSignal {
  from { transform: translateX(-120%); }
  to { transform: translateX(340%); }
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  padding: 0 34px;
  border: 1px solid rgba(104, 121, 145, .62);
  background: rgba(4, 7, 12, .8);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 50.5% 100%, 49.5% calc(100% - 10px), 1.2% calc(100% - 10px), 0 calc(100% - 22px));
  transform: translateX(-50%);
  transition: top .3s var(--ease), background .3s ease, border-color .3s ease;
}

.site-header::before,
.site-header::after {
  position: absolute;
  top: 0;
  width: 49%;
  height: 1px;
  content: "";
}

.site-header::before {
  left: 0;
  background: linear-gradient(90deg, var(--magenta), transparent);
}

.site-header::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.site-header.is-scrolled {
  top: 8px;
  border-color: rgba(104, 121, 145, .8);
  background: rgba(2, 4, 9, .94);
}

.brand {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .34em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
}

.tip-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 139, 36, .35);
  color: #aeb6c1;
  background: rgba(255, 139, 36, .035);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  cursor: pointer;
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.tip-nav-button > span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--orange);
  box-shadow: 0 0 8px rgba(255, 139, 36, .34);
  transform: rotate(45deg);
}

.tip-nav-button:hover {
  color: #f4f1eb;
  border-color: rgba(255, 139, 36, .8);
  background: rgba(255, 139, 36, .09);
  transform: translateY(-1px);
}

.site-nav a,
.site-footer nav a {
  position: relative;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--text);
  transition: transform .25s ease;
}

.section-frame {
  position: relative;
  border: 1px solid rgba(76, 91, 113, .72);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.corner {
  position: absolute;
  z-index: 8;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border-color: rgba(235, 241, 247, .88);
}

.corner--tl { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.corner--tr { top: 14px; right: 14px; border-top: 1px solid; border-right: 1px solid; }
.corner--bl { bottom: 14px; left: 14px; border-bottom: 1px solid; border-left: 1px solid; }
.corner--br { right: 14px; bottom: 14px; border-right: 1px solid; border-bottom: 1px solid; }

.hero {
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(620px, 1.18fr);
  align-items: center;
  width: min(calc(100% - 32px), 1880px);
  min-height: min(930px, calc(100vh - 32px));
  margin: 14px auto 0;
  padding: 142px clamp(48px, 4.5vw, 86px) 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(15, 56, 83, .22), transparent 31rem),
    radial-gradient(circle at 18% 52%, rgba(92, 12, 63, .16), transparent 29rem),
    var(--ink-deep);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), transparent 48%, var(--cyan));
}

.hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 760px;
}

.hero h1,
.catalog h2,
.story h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.3rem, 7.4vw, 9.3rem);
}

.hero__line {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
  text-wrap: balance;
}

.hero__line--magenta {
  color: var(--magenta);
  text-shadow: 0 0 28px rgba(255, 47, 152, .1);
  transform-origin: left center;
  animation: fortyMachinesSurge 8.2s steps(1, end) -4.35s infinite;
}

@keyframes fortyMachinesSurge {
  0%, 56%, 72%, 100% {
    opacity: 1;
    filter: none;
    color: var(--magenta);
    text-shadow: 0 0 28px rgba(255, 47, 152, .1);
    translate: 0 0;
  }
  57% {
    opacity: 1;
    filter: none;
    color: #ff57aa;
    text-shadow: -5px 0 rgba(39, 199, 247, .68), 5px 0 rgba(255, 229, 244, .82), 0 0 38px rgba(255, 47, 152, .76);
    translate: 3px 0;
  }
  58.8% {
    opacity: 1;
    filter: none;
    color: #fff0f8;
    text-shadow: 3px 0 rgba(39, 199, 247, .48), -3px 0 #ffe5f4, 0 0 48px rgba(255, 47, 152, .94);
    translate: -2px 0;
  }
  60.2% {
    opacity: 1;
    filter: none;
    color: var(--magenta);
    text-shadow: -4px 0 rgba(39, 199, 247, .78), 2px 0 var(--magenta);
    translate: 4px 0;
  }
  62.4% {
    opacity: 1;
    filter: none;
    color: #fff;
    text-shadow: 0 0 56px rgba(255, 47, 152, 1), -2px 0 rgba(255, 255, 255, .92);
    translate: -1px 0;
  }
  64%, 66.5% {
    opacity: 1;
    filter: none;
    color: var(--magenta);
    text-shadow: 0 0 28px rgba(255, 47, 152, .18);
    translate: 0 0;
  }
  68% {
    opacity: 1;
    filter: none;
    color: #ff86c5;
    text-shadow: -3px 0 rgba(39, 199, 247, .52), 3px 0 rgba(255, 229, 244, .76), 0 0 36px rgba(255, 47, 152, .72);
    translate: -2px 0;
  }
  69.3%, 71.2% {
    opacity: 1;
    filter: none;
    color: var(--magenta);
    text-shadow: 0 0 28px rgba(255, 47, 152, .1);
    translate: 0 0;
  }
  70.2% {
    opacity: 1;
    filter: none;
    color: #ff5dad;
    text-shadow: -2px 0 rgba(39, 199, 247, .38), 2px 0 rgba(255, 231, 245, .68), 0 0 34px rgba(255, 47, 152, .64);
    translate: 1px 0;
  }
}

.hero__line--cyan {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(39, 199, 247, .1);
  transform-origin: left center;
  animation: electricUniverseSurge 8.2s steps(1, end) -4.05s infinite;
}

@keyframes electricUniverseSurge {
  0%, 56%, 72%, 100% {
    opacity: 1;
    filter: none;
    color: var(--cyan);
    text-shadow: 0 0 28px rgba(39, 199, 247, .1);
    translate: 0 0;
  }
  57% {
    opacity: 1;
    filter: none;
    color: #64dcff;
    text-shadow: -5px 0 rgba(255, 47, 152, .72), 5px 0 rgba(213, 250, 255, .82), 0 0 38px rgba(39, 199, 247, .72);
    translate: -3px 0;
  }
  58.8% {
    opacity: 1;
    filter: none;
    color: #effdff;
    text-shadow: 3px 0 rgba(255, 47, 152, .5), -3px 0 #dffbff, 0 0 48px rgba(39, 199, 247, .92);
    translate: 2px 0;
  }
  60.2% {
    opacity: 1;
    filter: none;
    color: var(--cyan);
    text-shadow: -2px 0 var(--magenta), 4px 0 rgba(39, 199, 247, .84);
    translate: -4px 0;
  }
  62.4% {
    opacity: 1;
    filter: none;
    color: #fff;
    text-shadow: 0 0 56px rgba(39, 199, 247, 1), 2px 0 rgba(255, 255, 255, .92);
    translate: 1px 0;
  }
  64%, 66.5% {
    opacity: 1;
    filter: none;
    color: var(--cyan);
    text-shadow: 0 0 28px rgba(39, 199, 247, .18);
    translate: 0 0;
  }
  68% {
    opacity: 1;
    filter: none;
    color: #78e3ff;
    text-shadow: -3px 0 rgba(255, 47, 152, .55), 3px 0 rgba(214, 251, 255, .75), 0 0 36px rgba(39, 199, 247, .7);
    translate: 2px 0;
  }
  69.3%, 71.2% {
    opacity: 1;
    filter: none;
    color: var(--cyan);
    text-shadow: 0 0 28px rgba(39, 199, 247, .1);
    translate: 0 0;
  }
  70.2% {
    opacity: 1;
    filter: none;
    color: #62dcff;
    text-shadow: -2px 0 rgba(255, 47, 152, .4), 2px 0 rgba(217, 251, 255, .7), 0 0 34px rgba(39, 199, 247, .62);
    translate: -1px 0;
  }
}

.hero__copy > p {
  max-width: 630px;
  margin: 38px 0 34px;
  color: #d4dbe5;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions .button {
  --trace-cut: 11px;
  isolation: isolate;
}

.tip-nav-button,
.footer-youtube {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tip-nav-button {
  --trace-a: var(--orange);
  --trace-b: #fff0df;
  --trace-cut: 7px;
}

.footer-youtube {
  --trace-a: var(--magenta);
  --trace-b: var(--cyan);
  --trace-cut: 9px;
}

.contact-form__footer .button {
  --trace-a: var(--magenta);
  --trace-b: var(--cyan);
  --trace-cut: 11px;
}

.download-button {
  --trace-a: var(--cyan);
  --trace-b: var(--magenta);
  --trace-cut: 9px;
}

.download-button--windows {
  --trace-a: var(--cyan);
  --trace-b: #dffbff;
}

.download-button--mac {
  --trace-a: var(--magenta);
  --trace-b: var(--orange);
}

.final-cta .button--orange {
  --trace-a: var(--orange);
  --trace-b: var(--cyan);
  --trace-cut: 11px;
}

.hero__actions .button::after,
.tip-nav-button::after,
.footer-youtube::after,
.contact-form__footer .button::after,
.download-button::after,
.final-cta .button--orange::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  pointer-events: none;
  content: "";
  background: conic-gradient(
    from var(--trace-angle),
    transparent 0 67%,
    var(--trace-a) 72%,
    rgba(255, 255, 255, .86) 76%,
    var(--trace-b) 80%,
    transparent 86% 100%
  );
  clip-path: polygon(0 0, calc(100% - var(--trace-cut)) 0, 100% var(--trace-cut), 100% 100%, var(--trace-cut) 100%, 0 calc(100% - var(--trace-cut)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .78;
  filter: drop-shadow(0 0 2.5px var(--trace-a));
  animation: buttonElectricTrace 4.2s linear infinite;
}

.hero__actions .button--primary {
  --trace-a: var(--cyan);
  --trace-b: #dffbff;
}

.hero__actions .button--ghost {
  --trace-a: var(--magenta);
  --trace-b: #f2fdff;
}

.hero__actions .button--ghost::after {
  animation-delay: -1.7s;
}

.tip-nav-button::after {
  animation-delay: -.85s;
}

.footer-youtube::after {
  animation-delay: -2.55s;
}

.contact-form__footer .button::after {
  animation-delay: -1.25s;
}

.final-cta .button--orange::after {
  animation-delay: -2.1s;
}

.plugin-card:nth-child(4n + 1) .download-button::after { animation-delay: -.45s; }
.plugin-card:nth-child(4n + 2) .download-button::after { animation-delay: -1.3s; }
.plugin-card:nth-child(4n + 3) .download-button::after { animation-delay: -2.15s; }
.plugin-card:nth-child(4n + 4) .download-button::after { animation-delay: -3s; }
.hero__actions .button:hover::after,
.tip-nav-button:hover::after,
.footer-youtube:hover::after,
.contact-form__footer .button:hover::after,
.download-button:hover::after,
.final-cta .button--orange:hover::after {
  animation-duration: 2.4s;
  opacity: .92;
}

@keyframes buttonElectricTrace {
  to { --trace-angle: 360deg; }
}

.button,
.download-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button:hover,
.download-button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--ink);
  border-color: var(--magenta);
  background: var(--magenta);
  box-shadow: 0 15px 38px rgba(255, 47, 152, .18);
}

.button--primary:hover {
  border-color: #ff65b5;
  background: #ff65b5;
  box-shadow: 0 19px 44px rgba(255, 47, 152, .28);
}

.button--ghost {
  color: var(--cyan);
  background: rgba(2, 7, 12, .6);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--cyan);
}

.hero-stage {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  z-index: 3;
  width: min(920px, 53vw);
  height: min(600px, 43vw);
  justify-self: end;
  perspective: 1600px;
}

.hero-panel {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(124, 139, 159, .66);
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .62);
  transform-style: preserve-3d;
  transition: transform .8s var(--ease), filter .5s ease, opacity .5s ease;
  will-change: transform, translate, scale;
}

.hero-panel img {
  width: 100%;
  height: auto;
}

.hero-panel--back {
  top: 2%;
  right: -10%;
  z-index: 1;
  width: 66%;
  opacity: .48;
  transform: translate(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -8px)) rotate(2.5deg) rotateY(-8deg);
  animation: heroPanelDriftBack 10.5s ease-in-out -3.1s infinite alternate;
}

.hero-panel--middle {
  top: 13%;
  right: -1%;
  z-index: 2;
  width: 78%;
  opacity: .76;
  transform: translate(calc(var(--pointer-x) * -15px), calc(var(--pointer-y) * -15px)) rotate(-1.5deg) rotateY(-5deg);
  animation: heroPanelDriftMiddle 8.8s ease-in-out -1.8s infinite alternate-reverse;
}

.hero-panel--front {
  top: 27%;
  right: 8%;
  z-index: 3;
  width: 86%;
  transform: translate(calc(var(--pointer-x) * -24px), calc(var(--pointer-y) * -24px)) rotateY(-2deg);
  animation: heroPanelDriftFront 7.6s ease-in-out -4.2s infinite alternate;
}

.hero-stage:hover .hero-panel--back { opacity: .62; }
.hero-stage:hover .hero-panel--middle { opacity: .88; }

@keyframes heroPanelDriftBack {
  from { translate: -6px -5px; scale: .998; }
  to { translate: 7px 5px; scale: 1.002; }
}

@keyframes heroPanelDriftMiddle {
  from { translate: 6px 5px; scale: .999; }
  to { translate: -8px -7px; scale: 1.003; }
}

@keyframes heroPanelDriftFront {
  from { translate: -5px 7px; scale: 1; }
  to { translate: 8px -8px; scale: 1.004; }
}

.signal-rail {
  position: absolute;
  right: 4.5%;
  bottom: 34px;
  left: 4.5%;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 22px;
  color: var(--faint);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.signal-rail svg {
  width: 100%;
  height: 52px;
  overflow: visible;
}

.signal-rail path {
  fill: none;
  stroke: url(#signalGradient);
  stroke: var(--magenta);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  opacity: .6;
  animation: signalPulse 5s ease-in-out infinite alternate;
}

@keyframes signalPulse {
  to { stroke: var(--cyan); opacity: .9; }
}

.catalog {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(110px, 11vw, 180px) 0;
  scroll-margin-top: 90px;
}

.catalog__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.catalog h2 {
  color: transparent;
  font-size: clamp(4.2rem, 8.5vw, 9rem);
  -webkit-text-stroke: 1px #d2d7dd;
}

.catalog__header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
}

.catalog__header em {
  color: var(--magenta);
  font-style: normal;
}

.catalog__header strong {
  color: var(--cyan);
  font-weight: 500;
}

.result-count {
  align-self: flex-start;
  padding-top: 18px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.result-count::first-letter {
  color: var(--magenta);
}

.catalog-toolbar {
  position: sticky;
  z-index: 20;
  top: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 74px;
  margin-bottom: 30px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 17, .92);
  backdrop-filter: blur(18px);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%, 0 12px);
}

.catalog-toolbar::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), transparent 50%, var(--cyan));
}

.filters {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 34px);
}

.filter {
  position: relative;
  min-height: 48px;
  padding: 0 10px;
  border: 0;
  color: #aab3c0;
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.filter::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--magenta);
  box-shadow: 0 0 14px rgba(255, 47, 152, .58);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.filter:hover,
.filter.is-active {
  color: var(--text);
}

.filter.is-active::after {
  transform: scaleX(1);
}

.catalog-pulses {
  display: grid;
  grid-template-columns: repeat(2, minmax(46px, 1fr));
  flex: 1 1 260px;
  gap: 8px;
  min-width: 90px;
  max-width: 420px;
  height: 34px;
  opacity: .48;
  pointer-events: none;
}

.catalog-pulse {
  display: block;
  min-width: 0;
  height: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.catalog-pulse img {
  width: 330px;
  max-width: none;
  height: 34px;
  object-fit: fill;
  will-change: transform;
}

.catalog-pulse--magenta img {
  animation: catalogPulseLeft 8s ease-in-out infinite alternate;
}

.catalog-pulse--cyan img {
  animation: catalogPulseRight 8s ease-in-out infinite alternate;
}

@keyframes catalogPulseLeft {
  from { transform: translateX(-20%); }
  to { transform: translateX(-4%); }
}

@keyframes catalogPulseRight {
  from { transform: translateX(-4%); }
  to { transform: translateX(-20%); }
}

.search-control {
  --share-glow: 39, 199, 247;
  display: flex;
  align-items: center;
  width: min(380px, 34vw);
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(2, 5, 9, .64);
  animation: neonControlGlow 3.2s ease-in-out -.9s infinite alternate;
}

.search-control:focus-within {
  border-color: rgba(var(--share-glow), 1);
  box-shadow: inset 0 0 16px rgba(var(--share-glow), .1), 0 0 22px rgba(var(--share-glow), .36);
}

.search-control svg {
  width: 20px;
  margin-right: 10px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.search-control input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-family: var(--mono);
  font-size: .78rem;
  text-transform: uppercase;
}

.search-control input::placeholder {
  color: #687387;
  opacity: 1;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plugin-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #293548;
  background: linear-gradient(145deg, #111925, #0a1018 64%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  opacity: 0;
  transform: translateY(34px);
  transition: border-color .35s ease, box-shadow .35s ease, transform .7s var(--ease), opacity .7s ease;
}

.plugin-card::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 46%;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--card-accent), transparent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--card-accent) 48%, transparent);
}

.plugin-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.plugin-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 58%, #293548);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .4);
  transform: translateY(-7px);
}

.plugin-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid #293548;
  background: rgba(15, 23, 34, .9);
}

.plugin-card__header > span {
  color: var(--card-accent);
  font-family: var(--mono);
  font-size: .66rem;
}

.plugin-card__header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.plugin-card__header small {
  color: var(--faint);
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .08em;
}

.plugin-card__media {
  position: relative;
  aspect-ratio: 1302 / 758;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid #293548;
  background: #030507;
}

.plugin-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.plugin-card:hover .plugin-card__media img {
  transform: scale(1.018);
}

.plugin-card__scan {
  display: none;
}

.plugin-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.plugin-card__type {
  margin: 0 0 10px;
  color: var(--card-accent);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.plugin-card__summary {
  margin: 0 0 24px;
  color: #aab4c2;
  font-size: .94rem;
  line-height: 1.62;
}

.plugin-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.plugin-card__footer > span {
  color: var(--faint);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plugin-card__downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  flex: 0 0 auto;
}

.download-button {
  min-height: 44px;
  padding: 0 14px;
  color: var(--card-accent);
  background: rgba(3, 6, 11, .42);
  font-size: .62rem;
  white-space: nowrap;
}

.download-button svg {
  width: 16px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.download-button:hover {
  color: var(--ink);
  background: var(--card-accent);
}

.download-button--windows {
  color: var(--cyan);
}

.download-button--mac {
  color: var(--magenta);
}

.empty-state {
  min-height: 260px;
  margin: 0;
  padding-top: 100px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: var(--mono);
  text-align: center;
}

.story {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  grid-template-areas:
    "copy media"
    "rail rail";
  gap: 40px 72px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto clamp(100px, 10vw, 170px);
  padding: clamp(70px, 7vw, 120px) clamp(32px, 5vw, 82px) 42px;
  scroll-margin-top: 110px;
  background:
    linear-gradient(110deg, rgba(255, 47, 152, .035), transparent 42%),
    var(--ink-deep);
}

.story::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), transparent 42%, var(--cyan));
}

.story__copy {
  grid-area: copy;
  align-self: center;
}

.story h2 {
  font-size: clamp(5rem, 9vw, 9.5rem);
  line-height: .78;
}

.story__dash {
  display: block;
  width: 58px;
  height: 5px;
  margin: 32px 0 26px;
  background: var(--orange);
  transform: skewX(-26deg);
}

.story__copy p {
  max-width: 470px;
  margin: 0;
  color: #bec6d2;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.story__media {
  grid-area: media;
  align-self: center;
  margin: 0;
  border: 1px solid #4a5769;
  background: var(--surface);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
  transform: perspective(1200px) rotateY(-2deg);
}

.story__media img {
  width: 100%;
  height: auto;
}

.feature-rail {
  grid-area: rail;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.feature-rail span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #bdc6d1;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-rail span:not(:last-child)::after {
  height: 1px;
  flex: 1;
  margin: 0 20px;
  content: "";
  background: linear-gradient(90deg, var(--line), transparent);
}

.feature-rail i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--magenta);
  box-shadow: 0 0 12px rgba(255, 47, 152, .48);
  transform: rotate(45deg);
}

.feature-rail span:nth-child(even) i { border-color: var(--cyan); box-shadow: 0 0 12px rgba(39, 199, 247, .48); }
.feature-rail span:last-child i { border-color: var(--orange); box-shadow: 0 0 12px rgba(255, 139, 36, .48); }

.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(420px, .8fr) 1fr;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto 20px;
  padding: 62px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 47, 152, .13), transparent 31%),
    radial-gradient(circle at 86% 50%, rgba(39, 199, 247, .13), transparent 31%),
    var(--ink-deep);
}

.install-guide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 26px auto 0;
  text-align: left;
}

.install-panel {
  position: relative;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(76, 91, 113, .8);
  background:
    linear-gradient(125deg, rgba(255, 47, 152, .055), transparent 42%),
    rgba(8, 13, 21, .92);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.install-panel--security {
  grid-column: 1 / -1;
  background:
    linear-gradient(125deg, rgba(255, 139, 36, .07), transparent 44%),
    rgba(8, 13, 21, .92);
}

.install-panel--windows {
  background:
    linear-gradient(125deg, rgba(255, 47, 152, .07), transparent 44%),
    rgba(8, 13, 21, .92);
}

.install-panel--windows .install-panel__eyebrow {
  color: var(--magenta);
}

.install-panel--windows .install-steps li::before {
  border-color: rgba(255, 47, 152, .62);
  color: var(--magenta);
}

.install-panel__eyebrow {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.install-panel--security .install-panel__eyebrow {
  color: var(--orange);
}

.install-panel h3 {
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}

.install-steps,
.security-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-steps li {
  position: relative;
  min-height: 42px;
  padding-left: 56px;
  counter-increment: install-step;
}

.install-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(39, 199, 247, .62);
  color: var(--cyan);
  content: "0" counter(install-step);
  font-family: var(--mono);
  font-size: .64rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.install-steps strong,
.security-steps strong {
  display: block;
  color: #e9edf2;
  font-family: var(--display);
  font-size: .92rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.install-steps span,
.security-steps li,
.install-panel > p {
  color: #9eabba;
  font-size: .84rem;
  line-height: 1.65;
}

.install-steps span {
  display: block;
  margin-top: 4px;
}

.install-panel code {
  overflow-wrap: anywhere;
  color: #d6e6ef;
  font-family: var(--mono);
  font-size: .74rem;
}

.install-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--magenta);
  background: rgba(255, 47, 152, .055);
}

.security-steps {
  gap: 12px;
  padding-left: 20px;
  list-style: decimal-leading-zero;
}

.security-steps li {
  padding-left: 6px;
}

.security-steps li::marker {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .72rem;
}

.security-warning {
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 139, 36, .4);
  color: #c8cdd4 !important;
  background: rgba(255, 139, 36, .055);
}

.security-warning strong {
  color: var(--orange);
}

.security-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.security-column {
  min-width: 0;
}

.security-column h4 {
  margin: 0 0 14px;
  color: #e9edf2;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.security-column p {
  margin: 0 0 16px;
  color: #9eabba;
  font-size: .84rem;
  line-height: 1.65;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.support-links a {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  text-decoration: underline;
  text-decoration-color: rgba(39, 199, 247, .36);
  text-underline-offset: 5px;
}

.support-links a:hover {
  color: #fff;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(4.7rem, 8vw, 8.5rem);
  line-height: .76;
}

.final-cta p {
  margin: 28px 0 24px;
  color: #c1cad6;
  font-size: 1.12rem;
}

.button--orange {
  color: var(--orange);
  background: rgba(23, 12, 2, .5);
  box-shadow: 0 0 25px rgba(255, 139, 36, .11);
}

.button--orange:hover {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 0 34px rgba(255, 139, 36, .28);
}

.final-cta small {
  display: block;
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .04em;
}

.final-cta__signal {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.final-cta__signal::before,
.final-cta__signal::after {
  position: absolute;
  top: 50%;
  right: -8%;
  left: -8%;
  content: "";
}

.final-cta__signal::before {
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.final-cta__signal::after {
  height: 74px;
  margin-top: -37px;
  opacity: .78;
  background: repeating-linear-gradient(90deg, transparent 0 4px, currentColor 5px 6px, transparent 7px 11px);
  mask-image: linear-gradient(to bottom, transparent, #000 46%, #000 54%, transparent), linear-gradient(90deg, transparent, #000 40%, transparent 88%);
  animation: waveTravel 3.2s linear infinite;
}

.final-cta__signal--left { color: var(--magenta); }
.final-cta__signal--right { color: var(--cyan); transform: scaleX(-1); }

@keyframes waveTravel {
  from { transform: translateX(-11px) scaleY(.55); }
  50% { transform: translateX(0) scaleY(1); }
  to { transform: translateX(11px) scaleY(.55); }
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr);
  gap: clamp(46px, 8vw, 130px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 16px;
  padding: clamp(68px, 8vw, 118px);
  background:
    radial-gradient(circle at 0 0, rgba(255, 47, 152, .09), transparent 29rem),
    radial-gradient(circle at 100% 100%, rgba(39, 199, 247, .07), transparent 30rem),
    #050910;
}

.contact__intro {
  align-self: start;
}

.contact__eyebrow {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact h2 {
  margin: 18px 0 28px;
  font-family: var(--display);
  font-size: clamp(4.7rem, 8vw, 8.5rem);
  letter-spacing: -.045em;
  line-height: .78;
  text-transform: uppercase;
}

.contact__intro p {
  max-width: 430px;
  margin: 0 0 24px;
  color: #a8b2c0;
  line-height: 1.7;
}

.contact__channel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7f8da0;
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact__channel i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(39, 199, 247, .75);
}

.contact-waveform {
  position: relative;
  width: min(430px, 100%);
  margin-top: 34px;
  padding: 11px 0 23px;
  overflow: hidden;
  border-top: 1px solid #263246;
  border-bottom: 1px solid #263246;
}

.contact-waveform::before,
.contact-waveform::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-color: var(--orange);
}

.contact-waveform::before {
  top: 5px;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.contact-waveform::after {
  right: 0;
  bottom: 17px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.contact-waveform svg {
  width: 100%;
  height: 112px;
  overflow: visible;
}

.contact-waveform path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.contact-waveform__grid {
  stroke: rgba(76, 91, 113, .23);
  stroke-width: 1;
}

.contact-waveform__ghost {
  stroke: rgba(255, 47, 152, .24);
  stroke-width: 8;
  filter: blur(7px);
}

.contact-waveform__signal {
  stroke: url("#contact-signal-gradient");
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
  stroke-dasharray: 820;
  filter: drop-shadow(0 0 5px rgba(39, 199, 247, .52));
  animation: contactSignal 5s linear infinite;
}

.contact-waveform span {
  position: absolute;
  right: 8px;
  bottom: 3px;
  color: #626f82;
  font-family: var(--mono);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

@keyframes contactSignal {
  from { stroke-dashoffset: 820; }
  46%, 100% { stroke-dashoffset: 0; }
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid #283548;
  background: rgba(4, 8, 14, .82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #8693a6;
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form label small {
  margin-left: 6px;
  color: #536074;
  font-size: .58rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #2c394b;
  border-radius: 0;
  color: #e8edf3;
  background: rgba(10, 16, 25, .92);
  outline: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form input {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #566174;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(12, 21, 32, .96);
  box-shadow: inset 3px 0 0 var(--magenta);
}

.contact-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form__verify {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 10px;
  border-top: 1px solid #222e3e;
  border-bottom: 1px solid #222e3e;
}

.contact-captcha {
  flex: 0 0 auto;
  min-height: 65px;
}

.contact-form__verify > p {
  max-width: 280px;
  margin: 0;
  color: #667386;
  font-family: var(--mono);
  font-size: .61rem;
  line-height: 1.55;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form__footer .button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.contact-form__footer .button:disabled {
  cursor: wait;
  filter: saturate(.3);
  opacity: .62;
}

.contact-status {
  margin: 0;
  color: #738095;
  font-family: var(--mono);
  font-size: .66rem;
  line-height: 1.45;
}

.contact-status.is-success { color: var(--cyan); }
.contact-status.is-error { color: #ff6f91; }

.share-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, .68fr) minmax(150px, 1.1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto 16px;
  padding: 22px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 47, 152, .06), transparent 34%, rgba(39, 199, 247, .045)),
    var(--ink-deep);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.share-strip::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--magenta), transparent 38%, transparent 62%, var(--cyan));
}

.share-strip__copy span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.share-strip__copy h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.share-waveform {
  min-width: 0;
  height: 58px;
  overflow: hidden;
  opacity: .82;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.share-waveform__track {
  width: 100%;
  height: 100%;
  will-change: transform;
  animation: shareSignalDrift 11s ease-in-out infinite alternate;
}

.share-waveform img {
  flex: 0 0 auto;
  width: 1200px;
  max-width: none;
  height: 58px;
  object-fit: fill;
  filter: brightness(1.14) saturate(1.08) drop-shadow(0 0 5px rgba(39, 199, 247, .18));
}

@keyframes shareSignalDrift {
  from { transform: translateX(-16%); }
  to { transform: translateX(-2%); }
}

.share-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.share-actions a,
.share-actions button {
  --share-glow: 39, 199, 247;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #2c394b;
  color: #b5beca;
  background: rgba(8, 13, 21, .76);
  overflow: hidden;
  isolation: isolate;
  animation: neonControlGlow 2.8s ease-in-out infinite alternate;
  cursor: pointer;
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s var(--ease);
}

.share-actions > :nth-child(odd) { --share-glow: 255, 47, 152; }
.share-actions > :nth-child(2) { animation-delay: -.7s; }
.share-actions > :nth-child(3) { animation-delay: -1.4s; }
.share-actions > :nth-child(4) { animation-delay: -2.1s; }

@keyframes neonControlGlow {
  from {
    border-color: rgba(var(--share-glow), .34);
    box-shadow: inset 0 0 0 rgba(var(--share-glow), 0), 0 0 7px rgba(var(--share-glow), .08);
    text-shadow: 0 0 5px rgba(var(--share-glow), .16);
  }
  to {
    border-color: rgba(var(--share-glow), .86);
    box-shadow: inset 0 0 12px rgba(var(--share-glow), .08), 0 0 16px rgba(var(--share-glow), .28);
    text-shadow: 0 0 9px rgba(var(--share-glow), .44);
  }
}

.share-actions a:hover,
.share-actions button:hover {
  color: #fff;
  border-color: rgba(var(--share-glow), 1);
  background: rgba(var(--share-glow), .08);
  box-shadow: inset 0 0 16px rgba(var(--share-glow), .12), 0 0 22px rgba(var(--share-glow), .38);
  transform: translateY(-1px);
}

.share-actions svg {
  width: 16px;
  fill: none;
  stroke: var(--magenta);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.share-status {
  position: absolute;
  right: 32px;
  bottom: 5px;
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .04em;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 42px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 110px;
  margin: 0 auto 24px;
  padding: 0 36px;
  border: 1px solid var(--line);
  background: var(--ink-deep);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.brand--footer {
  padding-right: 34px;
  border-right: 1px solid var(--line);
  color: #c6cbd1;
}

.site-footer nav {
  display: flex;
  gap: 36px;
}

.footer-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 47, 152, .72);
  color: #f6ddea;
  background: linear-gradient(110deg, rgba(255, 47, 152, .12), rgba(39, 199, 247, .04));
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.footer-youtube svg {
  flex: 0 0 auto;
  width: 24px;
  fill: var(--magenta);
  filter: drop-shadow(0 0 8px rgba(255, 47, 152, .34));
}

.footer-youtube__play {
  fill: var(--ink-deep);
}

.footer-youtube:hover {
  color: #fff;
  border-color: var(--cyan);
  background: linear-gradient(110deg, rgba(255, 47, 152, .2), rgba(39, 199, 247, .1));
  transform: translateY(-2px);
}

.site-footer p {
  margin: 0;
  color: #747f8e;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-align: right;
  text-transform: uppercase;
}

.back-to-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  min-height: 42px;
  margin: 0 auto 26px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid rgba(39, 199, 247, .44);
  color: #aeb9c8;
  background: rgba(3, 7, 12, .88);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  font-family: var(--display);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.back-to-top::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 55%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(39, 199, 247, .11), transparent);
  animation: backToTopSweep 4.8s ease-in-out infinite;
}

.back-to-top__signal {
  position: relative;
  width: 7px;
  height: 7px;
  border: 1px solid var(--magenta);
  box-shadow: 0 0 10px rgba(255, 47, 152, .4);
  transform: rotate(45deg);
  animation: backToTopSignal 1.8s ease-in-out infinite;
}

.back-to-top:hover {
  color: #fff;
  border-color: var(--magenta);
  transform: translateY(-3px);
}

@keyframes backToTopSweep {
  0%, 32% { transform: translateX(0); }
  72%, 100% { transform: translateX(310%); }
}

@keyframes backToTopSignal {
  0%, 100% { opacity: .45; transform: translateY(2px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(-3px) rotate(45deg); }
}

.download-toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100% - 48px));
  padding: 15px 20px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: rgba(3, 8, 14, .96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .52);
  font-family: var(--mono);
  font-size: .75rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s var(--ease);
}

.download-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tip-dialog {
  width: min(570px, calc(100% - 30px));
  max-height: min(880px, calc(100dvh - 30px));
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--text);
  background: transparent;
}

.tip-dialog::backdrop {
  background: rgba(0, 2, 6, .82);
  backdrop-filter: blur(12px);
}

.tip-modal {
  position: relative;
  max-height: min(880px, calc(100dvh - 30px));
  padding: clamp(30px, 5vw, 50px);
  overflow-y: auto;
  border: 1px solid rgba(83, 99, 124, .9);
  background:
    radial-gradient(circle at 100% 0, rgba(39, 199, 247, .1), transparent 18rem),
    radial-gradient(circle at 0 100%, rgba(255, 47, 152, .09), transparent 20rem),
    #060a11;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .72), 0 0 40px rgba(39, 199, 247, .06);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.tip-modal::before,
.tip-modal::after {
  position: absolute;
  top: 0;
  width: 42%;
  height: 1px;
  content: "";
}

.tip-modal::before { left: 0; background: linear-gradient(90deg, var(--magenta), transparent); }
.tip-modal::after { right: 0; background: linear-gradient(90deg, transparent, var(--cyan)); }

.tip-modal__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(4, 7, 12, .78);
  cursor: pointer;
}

.tip-modal__close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 1px;
  background: #c6cdd6;
  transform: rotate(45deg);
}

.tip-modal__close span:last-child { transform: rotate(-45deg); }

.tip-modal__signal {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.tip-modal h2 {
  max-width: 440px;
  margin: 12px 0 18px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  letter-spacing: -.035em;
  line-height: .82;
  text-transform: uppercase;
}

.tip-modal__intro {
  max-width: 470px;
  margin: 0 0 28px;
  color: #aeb7c4;
  font-size: .93rem;
  line-height: 1.65;
}

.tip-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.tip-amounts legend,
.tip-custom > span:first-child {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: #748195;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.tip-amount {
  min-height: 48px;
  border: 1px solid #2c394b;
  color: #c7ced7;
  background: rgba(13, 20, 30, .74);
  cursor: pointer;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.tip-amount:hover,
.tip-amount.is-selected {
  border-color: var(--cyan);
  color: #fff;
  background: rgba(39, 199, 247, .09);
  box-shadow: inset 0 -2px 0 var(--magenta);
}

.tip-custom {
  display: grid;
  margin-top: 18px;
}

.tip-custom__field {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  border: 1px solid #34445a;
  background: rgba(5, 10, 17, .82);
}

.tip-custom__field b {
  color: var(--cyan);
  font-family: var(--mono);
  text-align: center;
}

.tip-custom input {
  min-width: 0;
  height: 50px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-family: var(--mono);
}

.tip-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 18px;
  padding: 14px 0;
  border-top: 1px solid #253044;
  border-bottom: 1px solid #253044;
}

.tip-summary span {
  color: #758194;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tip-summary strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tip-paypal {
  min-height: 45px;
}

.tip-status {
  margin: 13px 0 0;
  color: #7f8997;
  font-family: var(--mono);
  font-size: .65rem;
  line-height: 1.55;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s var(--ease);
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 160px;
  }

  .hero__copy {
    max-width: 920px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(5rem, 11.5vw, 8rem);
  }

  .hero-stage {
    width: min(950px, 88vw);
    height: min(620px, 57vw);
    margin: 50px auto 0;
    justify-self: center;
  }

  .signal-rail {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    width: 100%;
    margin-top: 20px;
  }

  .story {
    grid-template-columns: .85fr 1.15fr;
    gap: 38px;
  }

  .story h2 {
    font-size: clamp(4.4rem, 8.5vw, 7rem);
  }

  .plugin-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .plugin-card__downloads {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
    padding: 0 20px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .plugin-grid {
    grid-template-columns: 1fr;
  }

  .plugin-card__footer {
    align-items: center;
    flex-direction: row;
  }

  .catalog-toolbar {
    position: relative;
    top: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .filters {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .catalog-pulses {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    height: 30px;
    opacity: .4;
  }

  .catalog-pulse,
  .catalog-pulse img {
    height: 30px;
  }

  .catalog-pulse img {
    width: 520px;
  }

  .search-control {
    width: 100%;
  }

  .story {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "media" "rail";
  }

  .story__copy p {
    max-width: 680px;
  }

  .story__media {
    transform: none;
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature-rail span:nth-child(2)::after { display: none; }

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

  .contact {
    grid-template-columns: 1fr;
  }

  .install-guide {
    grid-template-columns: 1fr;
  }

  .install-panel--security {
    grid-column: auto;
  }

  .security-columns {
    grid-template-columns: 1fr;
  }

  .final-cta__signal {
    display: none;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .share-strip {
    grid-template-columns: 1fr;
  }

  .share-waveform {
    width: 100%;
    height: 50px;
  }

  .share-waveform img {
    width: 900px;
    height: 50px;
  }

  .share-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer p {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .footer-youtube {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: .1;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-open .site-header {
    clip-path: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(3, 6, 11, .98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .64);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--ease);
  }

  .site-nav a {
    padding: 18px 12px;
    border-bottom: 1px solid #202b3b;
  }

  .tip-nav-button {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 12px;
    border-color: transparent transparent #202b3b;
    background: rgba(255, 139, 36, .035);
    clip-path: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .menu-toggle > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    width: calc(100% - 16px);
    margin-top: 8px;
    padding: 126px 20px 48px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 6rem);
  }

  .hero__copy > p {
    margin: 28px 0;
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    width: 100%;
    height: 64vw;
    min-height: 250px;
    margin-top: 40px;
  }

  .hero-panel--front {
    top: 26%;
    right: 0;
    width: 100%;
  }

  .hero-panel--middle {
    top: 10%;
    right: 3%;
    width: 88%;
  }

  .hero-panel--back {
    top: 0;
    right: -4%;
    width: 76%;
  }

  .signal-rail {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 6px;
  }

  .signal-rail span {
    display: none;
  }

  .catalog,
  .story,
  .final-cta,
  .contact,
  .share-strip,
  .site-footer {
    width: calc(100% - 24px);
  }

  .catalog {
    padding: 100px 0;
  }

  .catalog__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .catalog h2 {
    font-size: clamp(3.35rem, 14vw, 4.75rem);
    letter-spacing: -.025em;
  }

  .result-count {
    padding: 0;
  }

  .filters {
    gap: 4px;
  }

  .catalog-pulses {
    height: 26px;
  }

  .catalog-pulse,
  .catalog-pulse img {
    height: 26px;
  }

  .filter {
    flex: 0 0 auto;
  }

  .plugin-card__header {
    min-height: 56px;
    padding: 0 15px;
  }

  .plugin-card__header h3 {
    font-size: 1.35rem;
  }

  .plugin-card__body {
    padding: 19px;
  }

  .plugin-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .download-button {
    width: 100%;
  }

  .plugin-card__downloads {
    width: 100%;
  }

  .story {
    margin-bottom: 100px;
    padding: 70px 20px 28px;
  }

  .story h2 {
    font-size: clamp(4.6rem, 20vw, 7rem);
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .feature-rail span::after {
    display: block !important;
  }

  .feature-rail span:last-child::after {
    display: none !important;
  }

  .final-cta {
    min-height: 480px;
    padding: 70px 18px;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .contact {
    gap: 40px;
    padding: 68px 18px;
  }

  .contact h2 {
    font-size: clamp(4.3rem, 21vw, 7rem);
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__verify,
  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__footer .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .share-strip {
    gap: 18px;
    padding: 24px 18px 30px;
  }

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

  .share-actions a,
  .share-actions button {
    width: 100%;
  }

  .share-status {
    right: 18px;
    bottom: 8px;
    left: 18px;
  }

  .brand--footer {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 24px;
  }

  .site-footer p {
    grid-column: auto;
  }

  .tip-dialog {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
  }

  .tip-modal {
    max-height: calc(100dvh - 18px);
    padding: 38px 20px 26px;
  }

  .tip-modal h2 {
    padding-right: 42px;
    font-size: clamp(3.25rem, 17vw, 4.75rem);
  }

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


  .footer-youtube {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 430px) {
  .plugin-card__downloads {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal,
  .plugin-card {
    opacity: 1;
    transform: none;
  }
}
