:root {
  --bg: #050707;
  --panel: #0b0f10;
  --panel-2: #101617;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --text: #f7f5ef;
  --muted: rgba(247, 245, 239, 0.68);
  --soft: rgba(247, 245, 239, 0.48);
  --cyan: #24d9ff;
  --cyan-2: #0aa9c8;
  --gold: #f2a51f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(36, 217, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(242, 165, 31, 0.12), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.7;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(255, 255, 255, 0.04) 97%, transparent 98%),
    radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, 0.52));
  background-size: 9px 100%, 100% 100%;
}

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

section[id],
footer[id] {
  scroll-margin-top: 6rem;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem clamp(1.1rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.24em;
}

.brand-mark sup {
  margin-left: 0.04em;
  font-size: 0.5em;
  letter-spacing: 0;
}

.brand span:last-child {
  margin-top: 0.36rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.25rem);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.79rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  content: "";
  background: var(--gold);
}

.nav-cta {
  justify-self: end;
  min-height: 2.75rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: #120d05;
  background: var(--gold);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030505;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.98) 0%, rgba(3, 5, 5, 0.9) 33%, rgba(3, 5, 5, 0.45) 62%, rgba(3, 5, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 5, 5, 0.5), rgba(3, 5, 5, 0.16) 48%, rgba(3, 5, 5, 0.82)),
    radial-gradient(circle at 77% 44%, rgba(36, 217, 255, 0.16), transparent 22rem);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/super-saturator-hero.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 5vw, 5.5rem) 4.5rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.3rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 41rem;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.compatibility {
  margin: 1.25rem 0 0;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.85rem;
  min-width: 13.5rem;
  padding: 1rem 1.35rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  color: #041014;
  background: linear-gradient(180deg, #4de7ff, var(--cyan));
  box-shadow: 0 14px 32px rgba(36, 217, 255, 0.22);
}

.button.ghost {
  border: 1px solid var(--line-strong);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover {
  transform: translateY(-2px);
}

.bundle,
.bundle-summary {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 35%);
}

.bundle-summary {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(19rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  width: min(100%, 118rem);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.summary-copy h2,
.starter h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.summary-copy p:not(.section-kicker),
.starter p {
  max-width: 47rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.win-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.win-list li {
  min-height: 3.8rem;
  padding: 1rem 1rem 1rem 2.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  position: relative;
}

.win-list li::before {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(36, 217, 255, 0.52);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 118rem);
  margin: 0 auto 2rem;
}

.section-heading h2,
.downloads h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 118rem);
  margin: 0 auto;
}

.plugin-card {
  display: block;
  min-height: 20rem;
  padding: 0.75rem 0.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.plugin-card:hover {
  border-color: rgba(36, 217, 255, 0.45);
  background: linear-gradient(180deg, rgba(36, 217, 255, 0.1), rgba(255, 255, 255, 0.025));
  transform: translateY(-6px);
}

.plugin-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.plugin-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.plugin-page-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030505;
}

.plugin-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.98) 0%, rgba(3, 5, 5, 0.9) 34%, rgba(3, 5, 5, 0.36) 70%, rgba(3, 5, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(3, 5, 5, 0.18), rgba(3, 5, 5, 0.9)),
    radial-gradient(circle at 78% 42%, rgba(36, 217, 255, 0.16), transparent 24rem);
}

.plugin-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--plugin-hero-image) center right / cover no-repeat;
  opacity: 0.78;
  transform: scale(1.02);
}

.plugin-page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(19rem, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 5vw, 5.5rem) 4.5rem;
}

.plugin-page-copy h1 {
  max-width: 10ch;
}

.plugin-page-media {
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #030505;
  box-shadow: var(--shadow);
}

.plugin-page-media img {
  display: block;
  width: 100%;
}

.plugin-detail {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(19rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.plugin-detail h2,
.plugin-workflow h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.plugin-detail-copy p,
.plugin-workflow p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.detail-list,
.workflow-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  background: var(--line);
  box-shadow: var(--shadow);
}

.detail-list li,
.workflow-list li {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)), var(--panel);
}

.detail-list strong,
.workflow-list strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1rem;
}

.detail-list span,
.workflow-list span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.plugin-workflow {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
}

.workflow-list {
  margin-top: 2rem;
}

.plugin-related {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 35%);
}

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

.plugin-thumb {
  position: relative;
  height: 9.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(36, 217, 255, 0.16), transparent 70%),
    #040606;
}

.plugin-thumb::before,
.plugin-thumb::after {
  position: absolute;
  content: "";
}

.plugin-thumb-image {
  background: #030505;
}

.plugin-thumb-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plugin-thumb-image::before,
.plugin-thumb-image::after {
  content: none;
}

.waveform::before {
  inset: 1.3rem 1.1rem 4.8rem;
  background: linear-gradient(90deg, transparent 0 12%, rgba(36, 217, 255, 0.7) 13% 37%, transparent 38% 100%);
}

.waveform::after {
  left: 1rem;
  right: 1rem;
  bottom: 1.35rem;
  height: 3rem;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at bottom, rgba(36, 217, 255, 0.82), transparent 68%);
}

.lowend::before,
.space::before,
.routing::before,
.smear::before {
  inset: 2rem 1rem;
  border: 1px solid rgba(36, 217, 255, 0.5);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.lowend::after,
.space::after,
.routing::after,
.smear::after {
  inset: 50% 1rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.saturator::before,
.phat::before {
  inset: 2.1rem;
  border-radius: 50%;
  background: radial-gradient(circle, #111 0 36%, var(--cyan) 37% 39%, transparent 40%);
}

.saturator::after,
.phat::after {
  right: 1rem;
  bottom: 1.4rem;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #111 0 48%, var(--cyan) 49% 52%, transparent 53%);
}

.clipper::before {
  inset: 1.4rem 1rem;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(36, 217, 255, 0.7) 9% 11%, transparent 12% 28%, rgba(36, 217, 255, 0.6) 29% 31%, transparent 32%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.1) 19px);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 104rem);
  margin: 0 auto;
  padding: clamp(3.4rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 0 clamp(1rem, 4vw, 4rem);
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item svg {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.3rem;
  color: var(--cyan);
}

.proof-item h2 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.proof-item p {
  margin: 0 auto;
  max-width: 19rem;
  color: var(--muted);
  line-height: 1.55;
}

.downloads {
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: clamp(4.4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
}

.downloads-copy p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.download-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 7rem;
  padding: 1.6rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

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

.download-row:hover {
  background: rgba(36, 217, 255, 0.08);
}

.download-row strong,
.download-row small {
  display: block;
}

.download-row strong {
  margin-bottom: 0.36rem;
  font-size: 1.05rem;
}

.download-row small {
  color: var(--soft);
}

.download-row b {
  flex: 0 0 auto;
  min-width: 10.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 6px;
  color: #041014;
  background: var(--cyan);
  font-size: 0.82rem;
  text-align: center;
}

.download-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.download-popup[hidden] {
  display: none;
}

.download-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.download-popup-card {
  position: relative;
  width: min(100%, 42rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.96), rgba(3, 5, 5, 0.72)),
    linear-gradient(180deg, rgba(3, 5, 5, 0.22), rgba(3, 5, 5, 0.88)),
    url("assets/email-signup-background.jpg") center right / cover no-repeat;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.download-popup-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(255, 255, 255, 0.05) 97%, transparent 98%),
    radial-gradient(circle at 78% 36%, rgba(36, 217, 255, 0.22), transparent 18rem);
  background-size: 9px 100%, 100% 100%;
}

.download-popup-content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding: clamp(2rem, 6vw, 4rem);
}

.download-popup-content h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 6.5vw, 4rem);
  line-height: 0.98;
}

.download-popup-content p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.download-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.download-popup-actions .button {
  min-width: 12rem;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
}

.download-popup-link {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
}

.download-popup-link:hover {
  color: var(--gold);
}

.download-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.download-popup-close:hover {
  border-color: rgba(36, 217, 255, 0.52);
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.5);
}

.starter {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.starter-copy {
  width: min(100%, 118rem);
  margin: 0 auto;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: clamp(4.4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
}

.final-cta .button {
  flex: 0 0 auto;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.98), rgba(3, 5, 5, 0.72)),
    radial-gradient(circle at 76% 36%, rgba(36, 217, 255, 0.14), transparent 26rem);
}

.legal-hero-inner {
  width: min(100%, 118rem);
  margin: 0 auto;
  padding: clamp(8rem, 13vw, 12rem) clamp(1.25rem, 5vw, 5.5rem) clamp(4.5rem, 8vw, 7rem);
}

.legal-hero h1 {
  max-width: 11ch;
}

.legal-content {
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 5vw, 2rem);
  color: rgba(247, 245, 239, 0.86);
  font-size: 1.04rem;
  line-height: 1.78;
}

.legal-content > * {
  margin-bottom: 1.4rem;
}

.legal-content h2 {
  max-width: none;
  margin-top: 2.7rem;
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-content a {
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: #030505;
}

.site-footer p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-contact {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-contact:hover {
  color: var(--cyan);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav a:hover {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .plugin-page-hero-inner,
  .plugin-detail,
  .downloads,
  .bundle-summary {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 5, 5, 0.98) 0%, rgba(3, 5, 5, 0.88) 48%, rgba(3, 5, 5, 0.42) 100%),
      linear-gradient(180deg, rgba(3, 5, 5, 0.52), rgba(3, 5, 5, 0.14) 48%, rgba(3, 5, 5, 0.84));
  }

  .plugin-page-hero {
    min-height: auto;
  }

  .plugin-page-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 5, 5, 0.92), rgba(3, 5, 5, 0.64) 48%, rgba(3, 5, 5, 0.96)),
      linear-gradient(90deg, rgba(3, 5, 5, 0.96), rgba(3, 5, 5, 0.38));
  }

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

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

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.95rem 1rem;
  }

  .brand-mark {
    font-size: 0.98rem;
  }

  .nav-cta {
    min-height: 2.35rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.72rem;
  }

  .hero-inner {
    padding-top: 6.5rem;
  }

  .plugin-page-hero-inner {
    padding-top: 6.5rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.65rem);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 5, 5, 0.9), rgba(3, 5, 5, 0.72) 42%, rgba(3, 5, 5, 0.96)),
      linear-gradient(90deg, rgba(3, 5, 5, 0.94), rgba(3, 5, 5, 0.44));
  }

  .hero::after {
    background-position: 68% center;
  }

  .plugin-page-hero::after {
    background-position: 64% center;
    opacity: 0.48;
  }

  .section-heading {
    display: block;
  }

  .plugin-grid,
  .plugin-related .plugin-grid,
  .win-list,
  .proof {
    grid-template-columns: 1fr;
  }

  .proof {
    gap: 2.5rem;
  }

  .proof-item {
    padding: 0;
  }

  .proof-item + .proof-item {
    border-left: 0;
  }

  .download-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-row b {
    width: 100%;
  }

  .download-popup-card {
    background-position: 66% center;
  }

  .download-popup-content {
    padding: 4.3rem 1.2rem 1.4rem;
  }

  .download-popup-actions .button {
    width: 100%;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}
