:root {
  --bg: #1c222c;
  --bg-deep: #151b24;
  --panel: #070d1a;
  --white: #ffffff;
  --muted: #9da5b8;
  --muted-soft: #737c91;
  --pink: #cb88ae;
  --mint: #6fd0b4;
  --cyan: #04d6bb;
  --line: rgba(157, 165, 184, 0.18);
  --font: "Google Sans Flex", "Google Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(119, 130, 154, 0.18) 0, rgba(119, 130, 154, 0.05) 24%, transparent 45%),
    linear-gradient(180deg, #161c26 0%, var(--bg) 100%);
  font-family: var(--font);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.site-header {
  min-height: 108px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 32px 20px;
  position: relative;
}

.brand {
  width: 228px;
  flex: 0 0 228px;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  margin-left: auto;
  padding-top: 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a[aria-current="page"],
.main-nav a[aria-current="page"]:hover {
  color: #ced2dc;
  cursor: default;
  pointer-events: none;
}

.nav-toggle {
  order: 4;
  display: none;
}

.language-switcher {
  order: 3;
  position: relative;
  z-index: 32;
  margin: 3px 0 0 24px;
}

.language-button {
  min-width: 82px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #ced2dc;
  background: rgba(19, 26, 39, 0.88);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.language-flag {
  width: 22px;
  height: 15px;
  display: block;
  flex: 0 0 22px;
  border-radius: 2px;
  object-fit: cover;
}

.language-code {
  min-width: 20px;
}

.language-arrow {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-arrow {
  transform: translateY(1px) rotate(180deg);
}

.language-menu {
  width: 176px;
  display: grid;
  gap: 3px;
  padding: 7px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-deep);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 0;
  border-radius: 7px;
  color: #ced2dc;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.language-option-flag {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[aria-checked="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.plugin-tabs {
  width: 100%;
  min-height: 46px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted-soft);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.plugin-tab {
  position: relative;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.plugin-tab span {
  display: block;
}

.plugin-tab i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transform-origin: left center;
}

.plugin-tab i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tab-color, var(--pink));
  transform: scaleX(0);
  transform-origin: left center;
}

.plugin-tab.active {
  color: var(--white);
}

.plugin-tab.active i {
  background: var(--tab-color, var(--pink));
}

.plugin-tab.active i::after {
  transform: scaleX(0);
  animation: none;
}

.plugin-tab.queued i::after {
  animation: tab-fill 5s linear forwards;
}

.plugin-tab.paused i::after {
  animation-play-state: paused;
}

.tab-divider {
  margin: 0 8px;
  color: var(--muted);
}

@keyframes tab-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1fr);
  gap: clamp(36px, 5vw, 78px);
  padding: 56px 55px 88px;
}

.copy-panel {
  min-width: 0;
  padding-top: 4px;
}

.copy-panel h1 {
  margin: 0 0 0;
  color: var(--white);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 700;
}

.plugin-format-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 12px 0 0;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #d9deea;
  background: rgba(7, 13, 26, 0.52);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.subtitle {
  max-width: 620px;
  margin: 10px 0 26px;
  color: var(--pink);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  font-weight: 400;
}

.description {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.description p {
  margin: 0 0 16px;
}

.description p:last-child {
  margin-bottom: 0;
}

.description strong {
  color: var(--white);
}

.manual-link {
  display: block;
  margin-top: 8px;
  color: var(--tab-color, var(--cyan));
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 610px;
  gap: 30px;
  margin-top: 29px;
}

.asset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  border: 1px solid rgba(190, 198, 214, 0.46);
  border-radius: 8px;
  color: #aab3c6;
  background: rgba(15, 21, 34, 0.62);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, filter 160ms ease;
}

.asset-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.asset-button-trial {
  width: 290px;
}

.asset-button-buy {
  width: 290px;
}

.buy-button {
  width: 290px;
  height: 76px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  color: #071021;
  background: var(--buy-color, #04d6bb);
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  transition: transform 160ms ease, filter 160ms ease, background-color 200ms ease;
}

.buy-button-label {
  display: block;
  line-height: 0.9;
}

.buy-button-tax {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

:root[lang="es"] .asset-button-trial {
  font-size: 25px;
}

:root[lang="es"] .buy-button {
  font-size: 32px;
}

:root[lang="uk"] .asset-button-trial {
  font-size: 24px;
}

:root[lang="uk"] .buy-button {
  font-size: 30px;
}

.asset-button:hover,
.buy-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.requirements {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 400;
}

.requirements strong {
  color: var(--white);
}

.license-row {
  display: flex;
  align-items: center;
  max-width: 610px;
  gap: 46.5px;
  margin-top: 22px;
}

.license-copy {
  width: 350px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.vst-attribution {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 700;
}

.vst-badge {
  width: 137px;
  height: auto;
  display: block;
}

.media-panel {
  min-width: 0;
  padding-top: 4px;
}

.plugin-visual-wrap {
  position: relative;
  isolation: isolate;
  width: min(625px, 100%);
  aspect-ratio: var(--plugin-aspect, 976 / 680);
  margin: 0 auto 53px;
  perspective: 1200px;
}

.plugin-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  background: var(--plugin-poster) center / contain no-repeat;
  box-shadow:
    0 0 60px rgba(157, 165, 184, 0.35),
    0 0 144px rgba(80, 91, 112, 0.24),
    0 38px 70px rgba(0, 0, 0, 0.26);
  transform: rotateX(var(--tilt-x, 2deg)) rotateY(var(--tilt-y, -9deg)) rotateZ(var(--tilt-z, 1deg));
  transform-origin: center center;
  pointer-events: none;
}

.plugin-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-shadow:
    0 0 60px rgba(157, 165, 184, 0.35),
    0 0 144px rgba(80, 91, 112, 0.24),
    0 38px 70px rgba(0, 0, 0, 0.26);
  transform: rotateX(var(--tilt-x, 2deg)) rotateY(var(--tilt-y, -9deg)) rotateZ(var(--tilt-z, 1deg));
  transform-origin: center center;
  transition: transform 140ms ease-out, opacity 200ms ease;
  will-change: transform;
}

.plugin-visual-wrap.is-fallback .plugin-visual {
  visibility: hidden;
}

.plugin-visual-wrap.is-fallback::after {
  display: block;
}

.player-carousel {
  display: grid;
  grid-template-columns: minmax(330px, 500px);
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
}

.audio-traffic-note {
  grid-column: 1 / -1;
  margin: 6px 0 -10px;
  position: relative;
  top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
  padding-right: 8px;
  box-sizing: border-box;
}

.audio-unavailable {
  margin: 0;
  padding: 18px;
  border: 1px solid #1b2946;
  border-radius: 6px;
  color: var(--muted);
  background: #071021;
  font-size: 13px;
  text-align: center;
}

.carousel-arrow {
  /* Temporarily hidden for the seven-example layout. */
  display: none;
  width: 58px;
  height: 147px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 160ms ease, transform 160ms ease;
}

.carousel-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-arrow:hover {
  opacity: 1;
  transform: scale(1.03);
}

.player-stack {
  display: grid;
  gap: 7px;
}

.audio-card {
  min-height: 82px;
  padding: 7px 14px 8px;
  border: 1px solid #1b2946;
  border-radius: 6px;
  background: #071021;
  overflow: hidden;
}

.audio-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
}

.audio-title {
  min-width: 0;
  color: #bac0cd;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

.mode-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  color: var(--muted);
}

.mode-toggle button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.mode-toggle button.active {
  color: var(--white);
}

.player-body {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 4px;
}

.play-button {
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #343a4b;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(157, 165, 184, 0.14);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--player-accent, var(--pink));
}

.play-button.is-playing::before,
.play-button.is-playing::after {
  content: "";
  width: 5px;
  height: 16px;
  margin: 0;
  border: 0;
  border-radius: 1px;
  background: var(--player-accent, var(--pink));
}

.play-button.is-playing {
  gap: 4px;
}

.wave {
  width: 100%;
  height: 34px;
  display: block;
  cursor: pointer;
}

.site-footer {
  position: absolute;
  right: 55px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}

.site-footer p {
  margin: 0;
}

.consent-footer-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-footer-button:hover,
.consent-footer-button:focus-visible {
  color: var(--white);
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(157, 165, 184, 0.34);
  border-radius: 10px;
  background: rgba(12, 18, 29, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.consent-banner-copy h2,
.consent-dialog h2,
.consent-dialog h3 {
  margin: 0;
  color: var(--white);
}

.consent-banner-copy h2 {
  font-size: 22px;
}

.consent-banner-copy p {
  max-width: 750px;
  margin: 8px 0;
  color: #c5ccda;
  font-size: 15px;
  line-height: 1.45;
}

.consent-banner-copy a {
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner-actions,
.consent-dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
}

.consent-manage {
  grid-column: 1 / -1;
  padding: 3px 8px;
  border: 0;
  color: #c5ccda;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-action {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(157, 165, 184, 0.55);
  border-radius: 7px;
  color: var(--white);
  background: #252d3b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.consent-action:hover,
.consent-action:focus-visible,
.consent-manage:hover,
.consent-manage:focus-visible {
  border-color: var(--mint);
  color: var(--white);
  background: #303a4b;
}

.consent-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid rgba(157, 165, 184, 0.34);
  border-radius: 10px;
  color: var(--white);
  background: #111824;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.consent-dialog::backdrop {
  background: rgba(2, 5, 10, 0.76);
}

.consent-dialog-panel {
  padding: 26px;
}

.consent-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.consent-dialog-eyebrow {
  margin: 0 0 5px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consent-dialog h2 {
  font-size: 26px;
}

.consent-dialog-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(157, 165, 184, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: #252d3b;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.consent-dialog-intro {
  margin: 14px 0 22px;
  color: #c5ccda;
  line-height: 1.45;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.consent-category h3 {
  font-size: 17px;
}

.consent-category p {
  margin: 5px 0 0;
  color: #aeb6c6;
  font-size: 14px;
  line-height: 1.4;
}

.consent-required {
  flex: 0 0 auto;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
}

.consent-category-toggle {
  position: relative;
  cursor: pointer;
}

.consent-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  flex: 0 0 50px;
  border: 1px solid rgba(157, 165, 184, 0.55);
  border-radius: 999px;
  background: #252d3b;
  transition: background 150ms ease, border-color 150ms ease;
}

.consent-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 150ms ease;
}

.consent-toggle-input:checked + .consent-toggle {
  border-color: var(--mint);
  background: #327c69;
}

.consent-toggle-input:checked + .consent-toggle::after {
  transform: translateX(22px);
}

.consent-toggle-input:focus-visible + .consent-toggle {
  outline: 3px solid rgba(111, 208, 180, 0.35);
  outline-offset: 3px;
}

.consent-dialog-actions {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .consent-banner-actions,
  .consent-dialog-actions {
    grid-template-columns: 1fr;
  }

  .consent-manage {
    grid-column: auto;
  }

  .consent-dialog-panel {
    padding: 20px;
  }

  .consent-dialog h2 {
    font-size: 22px;
  }

  .consent-category {
    align-items: flex-start;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-toggle,
  .consent-toggle::after {
    transition: none;
  }
}

[hidden] {
  display: none !important;
}

.page-heading {
  width: 100%;
  min-height: 46px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}

.legal-page .site-header,
.unsubscribe-page .site-header {
  border-bottom: 1px solid var(--line);
}

.page-content {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 56px 55px 110px;
}

.resource-section {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.resource-media {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #071021;
  overflow: hidden;
}

.resource-media img {
  width: 100%;
  height: 100%;
  padding: 12px;
  display: block;
  object-fit: contain;
}

.resource-media-logo img {
  height: auto;
  padding: 28px 20px;
}

.resource-info h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.resource-links {
  display: grid;
  gap: 10px;
}

.resource-links a,
.resource-download-button,
.resource-link-unavailable {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  max-width: 370px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(157, 165, 184, 0.18);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.2;
  transition: color 160ms ease, border-color 160ms ease;
}

.resource-download-button {
  width: 100%;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(157, 165, 184, 0.18);
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.resource-link-unavailable {
  color: var(--muted-soft);
  cursor: default;
}

.resource-links a:hover,
.resource-download-button:hover {
  color: var(--white);
  border-color: #ced2dc;
}

.resource-links a > span,
.resource-download-button > span,
.resource-link-unavailable > span {
  color: #ced2dc;
  font-size: 14px;
  font-weight: 700;
}

.download-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid rgba(157, 165, 184, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: #101a2d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.download-dialog::backdrop {
  background: rgba(1, 6, 15, 0.76);
  backdrop-filter: blur(4px);
}

.download-dialog-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
}

.download-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(157, 165, 184, 0.28);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.download-dialog-close:hover {
  color: var(--white);
  border-color: var(--mint);
}

.download-dialog-eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
}

.download-dialog h2 {
  margin: 0;
  padding-right: 32px;
  font-size: 30px;
  line-height: 1.1;
}

.download-dialog-copy,
.download-code-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.download-step,
.download-field {
  display: grid;
  gap: 10px;
}

.download-field {
  color: var(--muted);
  font-weight: 700;
}

.download-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(157, 165, 184, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: rgba(157, 165, 184, 0.1);
  font: inherit;
  caret-color: var(--white);
}

.download-field input:focus {
  outline: 2px solid rgba(206, 210, 220, 0.28);
  outline-offset: 1px;
  border-color: #ced2dc;
}

.download-field input:-webkit-autofill,
.download-field input:-webkit-autofill:hover,
.download-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px #252c39 inset;
  caret-color: var(--white);
}

.download-turnstile {
  min-height: 65px;
}

.download-submit {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(111, 208, 180, 0.7);
  border-radius: 4px;
  color: #06131c;
  background: var(--mint);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.download-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.download-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.download-status.is-error {
  color: #ffb26f;
}

.download-status.is-success {
  color: var(--mint);
  font-weight: 700;
}

.section-rule {
  width: 50%;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.faq-content,
.support-content {
  width: min(900px, 100%);
}

.faq-content {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 13, 26, 0.62);
  overflow: hidden;
}

.faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #ced2dc;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 12px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transition: transform 160ms ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 9px;
  height: 3px;
  border-radius: 2px;
  background: var(--mint);
}

.faq-chevron::before {
  left: 0;
  transform: rotate(40deg);
  transform-origin: right center;
}

.faq-chevron::after {
  right: 0;
  transform: rotate(-40deg);
  transform-origin: left center;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
  margin: 0 0 14px;
  padding-left: 24px;
}

.faq-answer li + li {
  margin-top: 7px;
}

.faq-answer strong {
  color: var(--white);
}

.faq-answer code {
  padding: 2px 5px;
  border: 1px solid rgba(157, 165, 184, 0.16);
  border-radius: 3px;
  color: #ced2dc;
  background: rgba(157, 165, 184, 0.08);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.faq-note {
  padding: 11px 13px;
  border-left: 3px solid var(--mint);
  background: rgba(111, 208, 180, 0.08);
}

.support-form {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 13, 26, 0.62);
}

.support-form fieldset {
  display: grid;
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-guidance {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(111, 208, 180, 0.32);
  border-radius: 4px;
  color: var(--mint);
  background: rgba(111, 208, 180, 0.07);
  font-size: 15px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-field,
.file-control {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
.file-control input {
  width: 100%;
  border: 1px solid rgba(157, 165, 184, 0.32);
  border-radius: 4px;
  color: var(--white);
  background: #111927;
  font: inherit;
  font-weight: 400;
  outline: none;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 170px;
  padding: 12px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--mint);
}

.file-field {
  display: flex;
  align-items: end;
  gap: 20px;
}

.file-control {
  flex: 1 1 auto;
}

.file-control input {
  min-height: 48px;
  padding: 10px 14px;
}

.file-note {
  flex: 0 0 auto;
  padding-bottom: 13px;
  color: var(--muted-soft);
  font-size: 14px;
}

.selected-files {
  display: grid;
  gap: 8px;
}

.selected-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(75, 225, 174, 0.35);
  border-radius: 4px;
  color: var(--white);
  background: rgba(75, 225, 174, 0.08);
  font-size: 14px;
}

.selected-file strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file button {
  flex: 0 0 auto;
  border: 0;
  color: var(--mint);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.support-verification {
  min-height: 70px;
  display: flex;
  align-items: center;
}

#support-turnstile {
  width: min(100%, 300px);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.submit-button {
  min-width: 170px;
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  color: #071021;
  background: var(--cyan);
  font-size: 20px;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.submit-button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
  opacity: 0.72;
  transform: none;
}

.submit-status {
  color: var(--mint);
  font-size: 16px;
  font-weight: 700;
}

.submit-status.is-error {
  color: #ffbc5c;
}

.submit-status.is-success {
  color: var(--mint);
}

.unsubscribe-shell {
  min-height: 100vh;
}

.unsubscribe-home-link {
  padding-top: 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  transition: color 160ms ease;
}

.unsubscribe-home-link:hover {
  color: var(--white);
}

.unsubscribe-main {
  min-height: calc(100vh - 144px);
  display: grid;
  place-items: center;
  padding: 56px 22px 110px;
}

.unsubscribe-panel {
  width: min(620px, 100%);
  padding: 48px 52px 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 13, 26, 0.62);
  text-align: center;
}

.unsubscribe-label {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.unsubscribe-panel h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
}

.unsubscribe-message {
  max-width: 470px;
  margin: 24px auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.unsubscribe-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(157, 165, 184, 0.34);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(157, 165, 184, 0.06);
  font-size: 17px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.unsubscribe-secondary:hover {
  border-color: var(--pink);
  color: var(--white);
  background: rgba(203, 136, 174, 0.08);
}

.is-transitioning .copy-panel,
.is-transitioning .plugin-visual,
.is-transitioning .player-stack {
  opacity: 0;
}

.copy-panel,
.player-stack {
  transition: opacity 200ms ease;
}

@media (max-width: 1200px) {
  .language-switcher {
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 2px 0 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(19, 26, 39, 0.88);
    color: var(--white);
    cursor: pointer;
    position: relative;
    z-index: 31;
  }

  .nav-toggle span {
    width: 23px;
    height: 3px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 180ms ease, opacity 140ms ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-nav {
    width: min(300px, calc(100% - 64px));
    display: grid;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    position: absolute;
    top: 82px;
    right: 32px;
    z-index: 30;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-deep);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-nav a {
    padding: 11px 13px;
    border-radius: 8px;
    text-align: left;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .main-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 44px;
    padding-bottom: 92px;
  }

  .copy-panel,
  .media-panel {
    display: contents;
  }

  .copy-panel > * {
    transition: opacity 200ms ease;
  }

  .is-transitioning .copy-panel > * {
    opacity: 0;
  }

  #plugin-title {
    order: 1;
  }

  .plugin-format-badge {
    order: 2;
  }

  .subtitle {
    order: 3;
  }

  .plugin-visual-wrap {
    order: 4;
    width: min(760px, 100%);
    margin: 0 auto 42px;
  }

  .description {
    order: 5;
    max-width: 760px;
  }

  .cta-row {
    order: 7;
  }

  .license-row {
    order: 8;
  }

  .player-carousel {
    order: 6;
    margin-top: 48px;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  #plugin-title,
  .subtitle,
  .description {
    width: min(760px, 100%);
    justify-self: center;
  }

  #plugin-title,
  .subtitle {
    text-align: center;
  }

  .plugin-format-badge {
    justify-self: center;
  }

  .subtitle {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .cta-row,
  .license-row {
    width: min(610px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 132px;
    gap: 0;
    padding: 22px 16px;
  }

  .brand {
    width: min(180px, calc(100vw - 132px));
    flex: 0 1 min(180px, calc(100vw - 132px));
  }

  .language-switcher {
    flex: 0 0 42px;
    margin-left: auto;
    margin-top: 0;
    margin-right: 6px;
  }

  .language-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    gap: 0;
    padding: 0;
  }

  .language-code,
  .language-arrow {
    display: none;
  }

  .language-menu {
    right: -48px;
  }

  .main-nav {
    width: min(300px, calc(100% - 32px));
    top: 76px;
    right: 16px;
  }

  .plugin-tabs {
    min-height: 54px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 29px 22px 92px;
  }

  .subtitle {
    margin-bottom: 28px;
  }

  .plugin-visual-wrap {
    width: 100%;
    max-width: none;
    margin: 0 0 32px;
  }

  .description {
    min-height: auto;
    font-size: 16px;
  }

  .cta-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .asset-button-trial,
  .asset-button-buy,
  .buy-button {
    width: min(290px, 100%);
  }

  .license-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .license-copy {
    width: 100%;
    min-height: 0;
    gap: 12px;
  }

  .player-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-arrow {
    width: 34px;
    height: 86px;
  }

  .audio-card {
    height: auto;
    min-height: 82px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .audio-traffic-note {
    text-align: left;
  }

  .audio-card-head {
    font-size: 12px;
  }

  .mode-toggle button {
    font-size: 12px;
  }

  .site-footer {
    right: 22px;
  }

  .page-heading {
    min-height: 54px;
    font-size: 16px;
  }

  .page-content {
    padding: 29px 22px 92px;
  }

  .resource-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .resource-media {
    height: 150px;
  }

  .resource-info h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .download-dialog-panel {
    padding: 30px 20px 24px;
  }

  .download-dialog h2 {
    font-size: 25px;
  }

  .section-rule {
    width: 65%;
    margin: 28px 0;
  }

  .faq-item summary {
    min-height: 56px;
    padding: 0 16px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 16px;
  }

  .support-form {
    padding: 18px;
  }

  .unsubscribe-home-link {
    display: none;
  }

  .unsubscribe-main {
    min-height: calc(100vh - 190px);
    padding: 36px 22px 92px;
  }

  .unsubscribe-panel {
    padding: 36px 24px 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .file-field,
  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .file-note {
    padding-bottom: 0;
  }

}

@media (max-width: 480px) {
  .brand {
    width: min(170px, calc(100vw - 122px));
    flex-basis: min(170px, calc(100vw - 122px));
  }

  .language-button,
  .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .plugin-tabs {
    font-size: 15px;
  }
}

@media (hover: none), (pointer: coarse) {
  .plugin-visual,
  .plugin-visual-wrap::after {
    transform: none;
  }

  .plugin-visual {
    will-change: auto;
  }
}
