:root {
  --ink: #101014;
  --muted: #5f626d;
  --line: #ded9cf;
  --paper: #fbf8f0;
  --surface: #fffdf7;
  --coal: #19171b;
  --gold: #d59b2f;
  --coral: #e35d45;
  --mint: #58b99f;
  --blue: #4267b2;
  --jyw-data-blue: #4267b2;
  --jyw-gold: #d59b2f;
  --jyw-mint: #58b99f;
  --jyw-coral: #e35d45;
  --shadow: 0 24px 70px rgba(29, 23, 17, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(213, 155, 47, 0.14), transparent 32rem),
    linear-gradient(315deg, rgba(88, 185, 159, 0.12), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.08rem 0.3rem;
  font-size: 0.9em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 16, 20, 0.1);
  background: rgba(251, 248, 240, 0.9);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: #000;
  object-fit: cover;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(16, 16, 20, 0.07);
  color: var(--ink);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--coal);
  color: #fff8e8;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.26rem auto;
  background: var(--ink);
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 8vw, 6.25rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 9vw, 6.8rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: #32333a;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.product-card a,
.store-card a,
.beat-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 2px solid var(--coal);
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--coal);
  color: #fff8e8;
}

.button.secondary {
  background: transparent;
  color: var(--coal);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.logo-showcase {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.12);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.logo-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.meter-card,
.beat-player,
.credential-grid > div,
.store-card,
.product-card,
.service-grid article,
.inquiry-card,
.release-list article,
.contact-form {
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
}

.meter-card {
  padding: 1.25rem;
  background: var(--coal);
  color: #fff8e8;
}

.top-beat-preview {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(213, 155, 47, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(213, 155, 47, 0.2), rgba(66, 103, 178, 0.14)),
    rgba(18, 18, 19, 0.9);
  color: #fff8e8;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.top-beat-preview span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-beat-preview strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.top-beat-preview a {
  width: fit-content;
  color: #ffffff;
  font-weight: 900;
  text-decoration-thickness: 0.12em;
}

.beat-store {
  display: grid;
  gap: 1rem;
}

.beat-store-section {
  width: min(1440px, calc(100% - 2rem));
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.beat-store-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: 1rem clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.25rem;
}

.beat-store-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.beat-store-section .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.6vw, 5.1rem);
}

.beat-store-section .section-heading > p:not(.eyebrow) {
  max-width: 56rem;
  margin: 0;
}

.store-quick-paths {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-quick-paths a {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 999px;
  background: rgba(16, 16, 20, 0.92);
  color: #fff8e8;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.beat-player {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  overflow: hidden;
  background: #0a0a0b;
  color: #fff8e8;
}

.beat-player-art {
  display: grid;
  place-items: center;
  min-height: 100%;
  background: #000;
}

.beat-player-art img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.beat-player-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 2rem);
}

.beat-player-copy h3 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.beat-player-copy p {
  margin: 0;
  color: rgba(255, 248, 232, 0.78);
}

.beat-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.beat-meta div {
  border: 1px solid rgba(255, 248, 232, 0.16);
  border-radius: 8px;
  padding: 0.75rem;
}

.beat-meta dt,
.store-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.beat-meta dt {
  color: rgba(255, 248, 232, 0.58);
}

.beat-meta dd,
.store-card dd {
  margin: 0.25rem 0 0;
  font-weight: 900;
}

.beat-player audio {
  width: 100%;
  min-height: 3rem;
}

.beat-player-actions {
  align-items: center;
}

.beat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.beat-card {
  display: grid;
  gap: 0.85rem;
  border-width: 2px;
}

.beat-card.is-active {
  border-color: var(--coral);
}

.beat-card-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.beat-card-button strong,
.beat-card-button small {
  display: block;
}

.beat-card-button small {
  color: var(--muted);
}

.meter-card span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.meter-card strong {
  display: block;
  margin-top: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

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

.credential-grid > div {
  padding: 1rem;
}

.credential-grid strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.credential-grid span {
  color: var(--muted);
  font-weight: 700;
}

.trust-band {
  border-block: 1px solid rgba(16, 16, 20, 0.12);
  background: var(--coal);
  color: #fff8e8;
}

.trust-band p {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  font-weight: 800;
}

.split-section,
.services,
.sync-section,
.contact-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-band {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  padding-block: clamp(3.5rem, 7vw, 6rem) !important;
  box-shadow: 0 0 0 100vmax rgba(12, 12, 14, 0.72);
  clip-path: inset(0 -100vmax);
}

.section-band::before {
  display: block;
  width: 4.5rem;
  height: 0.35rem;
  margin-bottom: 1.2rem;
  background: var(--gold);
  content: "";
}

.service-band {
  box-shadow:
    0 0 0 100vmax rgba(18, 14, 8, 0.9),
    inset 0 1px 0 rgba(213, 155, 47, 0.35);
}

.service-band::before {
  background: var(--gold);
}

.service-band .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
  max-width: 1040px;
  margin-bottom: 1.5rem;
}

.service-band .section-heading h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.service-band .section-heading > p:not(.eyebrow) {
  max-width: 68rem;
  margin: 0;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.service-highlights a {
  display: grid;
  gap: 0.2rem;
  min-height: 5rem;
  border: 1px solid rgba(213, 155, 47, 0.34);
  border-radius: 8px;
  background: rgba(213, 155, 47, 0.12);
  color: #fff8e8;
  padding: 0.85rem;
  text-decoration: none;
}

.service-highlights span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-highlights strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.beat-band {
  box-shadow:
    0 0 0 100vmax rgba(6, 14, 24, 0.9),
    inset 0 1px 0 rgba(66, 103, 178, 0.36);
}

.beat-band::before {
  background: var(--blue);
}

.license-band {
  box-shadow:
    0 0 0 100vmax rgba(18, 18, 19, 0.92),
    inset 0 1px 0 rgba(227, 93, 69, 0.32);
}

.license-band::before {
  background: var(--coral);
}

.plugin-band {
  box-shadow:
    0 0 0 100vmax rgba(35, 31, 29, 0.93),
    inset 0 1px 0 rgba(253, 251, 244, 0.18);
}

.plugin-band::before {
  background: #fdfbf4;
}

.sync-band {
  box-shadow:
    0 0 0 100vmax rgba(20, 15, 28, 0.9),
    inset 0 1px 0 rgba(156, 111, 211, 0.32);
}

.sync-band::before {
  background: #9c6fd3;
}

.proof-band,
.contact-band {
  box-shadow:
    0 0 0 100vmax rgba(10, 10, 11, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading.compact {
  display: block;
}

.section-heading p:not(.eyebrow),
.sync-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid,
.product-row,
.service-grid,
.release-list {
  display: grid;
  gap: 1rem;
}

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

.store-card,
.product-card,
.service-grid article,
.release-list article {
  padding: 1.2rem;
}

.tag {
  display: inline-flex;
  margin: 0 0 0.8rem;
  border-radius: 999px;
  background: rgba(227, 93, 69, 0.12);
  color: #8f2e1f;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.store-card p:not(.tag),
.product-card p,
.service-grid p,
.release-list p {
  color: var(--muted);
}

.waveform {
  display: flex;
  align-items: end;
  gap: 0.28rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(213, 155, 47, 0.16), rgba(88, 185, 159, 0.16)),
    #f7f1e5;
  padding: 0.65rem;
}

.waveform span {
  display: block;
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--coal);
}

.waveform span:nth-child(1) { height: 40%; }
.waveform span:nth-child(2) { height: 75%; }
.waveform span:nth-child(3) { height: 55%; }
.waveform span:nth-child(4) { height: 88%; }
.waveform span:nth-child(5) { height: 48%; }

dl {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 0.45rem;
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--muted);
}

dd {
  font-weight: 800;
}

.store-card a,
.product-card a,
.release-list a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 0.12em;
}

.product-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.product-card.featured-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.product-card.suite-tool {
  display: grid;
  gap: 1rem;
}

.product-card.bundle-tool {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.55fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 1.6rem);
  border-color: rgba(255, 202, 88, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 202, 88, 0.18), rgba(66, 103, 178, 0.12)),
    rgba(10, 10, 10, 0.82);
}

.bundle-pricing {
  border: 1px solid rgba(255, 202, 88, 0.52);
  border-radius: 8px;
  background: rgba(253, 251, 244, 0.94);
  color: #0a0a0a;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.bundle-pricing span,
.bundle-pricing strong,
.bundle-pricing small {
  display: block;
}

.bundle-pricing span {
  color: #ff5a1f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-pricing strong {
  margin-top: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 6vw, 4rem);
  line-height: 0.9;
}

.bundle-pricing small {
  margin-top: 0.65rem;
  color: rgba(10, 10, 10, 0.68);
  font-weight: 800;
}

.plugin-logo-card,
.official-product-logo {
  margin: 0;
  border: 3px solid #0a0a0a;
  border-radius: 8px;
  background: #fdfbf4;
  padding: clamp(0.75rem, 2vw, 1.1rem);
}

.plugin-logo-card img,
.official-product-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.plugin-logo-card {
  min-height: 11rem;
}

.plugin-logo-card img {
  aspect-ratio: 16 / 7;
  object-fit: contain;
}

.plugin-logo-card.product-media-card {
  padding: 0;
  overflow: hidden;
}

.plugin-logo-card.product-media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tool-specs {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.1rem;
}

.tool-specs li {
  color: var(--muted);
}

.tool-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  padding: 0.9rem;
}

.purchase-panel {
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: rgba(16, 16, 20, 0.92);
  color: #fff8e8;
  padding: 1rem;
}

.purchase-panel span,
.purchase-panel strong {
  display: block;
}

.purchase-panel span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-panel strong {
  margin-top: 0.3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.purchase-panel p {
  margin: 0.5rem 0 0;
  color: rgba(255, 248, 232, 0.72);
}

.tool-status b,
.tool-status span {
  display: block;
}

.tool-status b {
  color: var(--coral);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-status span {
  margin-top: 0.25rem;
  color: var(--muted);
}

.yms-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.official-product-logo {
  max-width: min(34rem, 100%);
  margin-bottom: 1.2rem;
}

.yms-hero h1 {
  max-width: 10ch;
}

.yms-dashboard {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 22, 24, 0.95), rgba(6, 7, 8, 0.96)),
    #0c0c10;
  color: #f5eddf;
  padding: clamp(1rem, 3vw, 1.4rem);
  box-shadow: var(--shadow);
}

.dashboard-topline,
.dashboard-title,
.mix-notes {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.85rem;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-topline span,
.viz-grid span,
.mix-notes span,
.yms-proof-grid article > span {
  color: var(--jyw-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-topline b {
  border: 1px solid rgba(88, 185, 159, 0.4);
  border-radius: 999px;
  background: rgba(88, 185, 159, 0.14);
  color: var(--jyw-mint);
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
}

.dashboard-title strong,
.dashboard-title span {
  display: block;
}

.dashboard-title strong {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.dashboard-title span {
  margin-top: 0.75rem;
  color: rgba(245, 237, 223, 0.65);
  font-weight: 800;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.score-gauge {
  display: grid;
  place-items: center;
  min-height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(66, 103, 178, 0.24), transparent 56%),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.score-gauge b {
  color: var(--jyw-data-blue);
  font-size: 2.5rem;
  line-height: 1;
}

.score-gauge span {
  color: rgba(245, 237, 223, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-gauge.good b {
  color: var(--jyw-mint);
}

.score-gauge.warn b {
  color: var(--jyw-gold);
}

.score-gauge.pass b {
  color: var(--jyw-data-blue);
}

.viz-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0.75rem;
}

.viz-grid > div {
  display: grid;
  gap: 0.7rem;
  min-height: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.85rem;
}

.fft-bars {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  height: 7rem;
}

.fft-bars i {
  display: block;
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--jyw-data-blue), rgba(66, 103, 178, 0.14));
}

.stereo-field {
  position: relative;
  min-height: 7rem;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(66, 103, 178, 0.5), transparent 58%),
    radial-gradient(ellipse at center, rgba(88, 185, 159, 0.26), transparent 70%);
}

.stereo-field::before,
.stereo-field::after {
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: rgba(245, 237, 223, 0.2);
  content: "";
}

.stereo-field::after {
  inset: 12% 50%;
  width: 1px;
  height: auto;
}

.mix-notes p {
  margin: 0.45rem 0 0;
  color: rgba(245, 237, 223, 0.7);
}

.yms-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
}

.yms-proof-grid article,
.yms-feature-band {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(18, 18, 19, 0.88);
  box-shadow: var(--shadow);
}

.yms-proof-grid article {
  padding: 1.15rem;
}

.yms-proof-grid h2 {
  max-width: none;
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
}

.yms-proof-grid p,
.yms-feature-band li {
  color: rgba(255, 255, 255, 0.66);
}

.yms-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.8fr);
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.yms-feature-band h2 {
  max-width: 13ch;
}

.yms-feature-band ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
}

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

.service-grid article {
  background: var(--coal);
  color: #fff8e8;
}

.service-grid p {
  color: rgba(255, 248, 232, 0.72);
}

.sync-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}

.inquiry-card,
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.offering-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  border: 0;
  padding: 0;
}

.offering-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.radio-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.85rem;
  cursor: pointer;
}

.radio-card input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.radio-card strong,
.radio-card small {
  display: block;
}

.radio-card small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 650;
}

.radio-card:has(input:checked),
.radio-card.was-selected {
  border-color: rgba(255, 90, 31, 0.78);
  background: rgba(255, 90, 31, 0.14);
}

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

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem;
}

textarea {
  resize: vertical;
}

.release-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.release-list span {
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.license-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.license-card.featured {
  border-color: rgba(227, 93, 69, 0.55);
  background: var(--coal);
  color: #fff8e8;
}

.license-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.license-card p,
.license-card li {
  color: var(--muted);
}

.license-card .price-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 999px;
  background: rgba(16, 16, 20, 0.92);
  color: #fff8e8;
  padding: 0.42rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.license-card.featured p,
.license-card.featured li {
  color: rgba(255, 248, 232, 0.72);
}

.license-card.featured .price-line {
  border-color: rgba(255, 248, 232, 0.18);
  background: var(--gold);
  color: var(--coal);
}

.license-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}

.beat-tier-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: auto;
}

.beat-tier-actions.is-player {
  grid-column: 1 / -1;
  margin-top: 0;
}

.beat-tier-link {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--ink);
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.beat-tier-link:hover,
.beat-tier-link:focus-visible {
  border-color: rgba(255, 90, 31, 0.65);
  background: rgba(255, 90, 31, 0.1);
  transform: translateY(-1px);
}

.beat-tier-link[data-license-tier="premium"] {
  border-color: rgba(255, 194, 51, 0.58);
  background: var(--gold);
  color: var(--coal);
}

.beat-tier-link[data-license-tier="exclusive"] {
  background: rgba(16, 16, 20, 0.92);
  color: #fff8e8;
}

.buyer-path {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.buyer-path span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buyer-path strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.buyer-path p,
.buyer-path li {
  color: var(--muted);
}

.buyer-path p {
  margin-bottom: 0;
}

.buyer-path ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.next-step-card {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 90, 31, 0.35);
  border-radius: 8px;
  background: rgba(18, 18, 19, 0.78);
  padding: 1rem;
}

.next-step-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-step-card ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.next-step-card li {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.contact-basics {
  border-top: 1px solid rgba(16, 16, 20, 0.1);
  padding-top: 1rem;
}

.inquiry-details {
  align-items: end;
}

.context-panel {
  border: 1px solid rgba(213, 155, 47, 0.38);
  border-radius: 8px;
  background: rgba(213, 155, 47, 0.12);
  padding: 0.9rem;
}

.context-panel strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Grotesk", sans-serif;
}

.context-panel p {
  margin: 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 16, 20, 0.12);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.site-footer > div {
  display: grid;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  background: #f5f0e8;
  color: var(--ink);
}

.legal-shell {
  display: block;
  max-width: 920px;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.legal-shell h1 {
  max-width: 12ch;
  margin: 0 0 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-shell h2 {
  margin: 2.5rem 0 0.65rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-shell p,
.legal-shell li {
  color: rgba(16, 16, 20, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-shell a {
  color: var(--orange);
  font-weight: 800;
}

.legal-shell ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.25rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .yms-hero,
  .section-heading,
  .beat-store-section .section-heading,
  .yms-feature-band,
  .sync-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
  }

  .card-grid,
  .product-row,
  .service-grid,
  .release-list,
  .license-grid,
  .buyer-path,
  .offering-fieldset,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yms-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-card.bundle-tool {
    grid-template-columns: 1fr;
  }
}

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

  .brand-lockup small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .card-grid,
  .product-row,
  .service-grid,
  .release-list,
  .license-grid,
  .buyer-path,
  .credential-grid,
  .offering-fieldset,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .score-row,
  .viz-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Modern JoshYouWut service-funnel pass, based on the current live site's darker producer aesthetic. */
:root {
  --ink: #f8f4ed;
  --muted: #b9b0a6;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #090909;
  --surface: rgba(18, 18, 18, 0.88);
  --coal: #0e0e0f;
  --gold: #ff5a1f;
  --coral: #ff5a1f;
  --mint: #ece1c8;
  --blue: #ffffff;
  --jyw-data-blue: #4267b2;
  --jyw-gold: #d59b2f;
  --jyw-mint: #58b99f;
  --jyw-coral: #e35d45;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  color-scheme: dark;
}

body {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), #090909 36rem),
    radial-gradient(circle at 82% 10%, rgba(255, 90, 31, 0.22), transparent 18rem),
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 34rem),
    #090909;
  color: var(--ink);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1800&q=80") center / cover;
  content: "";
  filter: saturate(0.75) contrast(1.05);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

code {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(8, 8, 9, 0.74);
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 0.8;
}

.brand-lockup small,
.site-nav a {
  color: rgba(255, 255, 255, 0.68);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-nav .nav-cta {
  background: var(--gold);
  color: #ffffff;
}

.nav-toggle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  background: #ffffff;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  min-height: calc(100vh - 4.6rem);
  padding-top: clamp(2.2rem, 7vw, 5.5rem);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
.brand-lockup strong {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 9vw, 7.4rem);
  letter-spacing: 0;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 650;
}

.audio-stack {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 48rem);
  margin-top: 1.7rem;
}

.audio-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: stretch;
  min-height: 5.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: rgba(15, 15, 16, 0.94);
  color: #ffffff;
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow);
}

.audio-row > span:last-child {
  display: grid;
  align-content: center;
  padding: 1rem 1.1rem;
}

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

.audio-row strong {
  font-size: 0.96rem;
  text-transform: uppercase;
}

.audio-row small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.62);
}

.play-icon {
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.play-icon::before {
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid #ffffff;
  content: "";
}

.button {
  min-height: 3.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.meter-card,
.credential-grid > div,
.store-card,
.product-card,
.service-grid article,
.inquiry-card,
.release-list article,
.license-card,
.buyer-path,
.contact-form {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(18, 18, 19, 0.88);
  box-shadow: var(--shadow);
}

.meter-card {
  background: rgba(17, 17, 18, 0.86);
}

.meter-card span {
  color: var(--gold);
}

.credential-grid > div {
  min-height: 8rem;
  backdrop-filter: blur(14px);
}

.credential-grid strong {
  color: #ffffff;
}

.credential-grid span,
.section-heading p:not(.eyebrow),
.sync-section p,
.contact-section p,
.store-card p:not(.tag),
.product-card p,
.service-grid p,
.release-list p {
  color: rgba(255, 255, 255, 0.66);
}

.trust-band {
  border-block-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 90, 31, 0.96);
  color: #ffffff;
}

.trust-band p {
  padding: 1.2rem 0;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.commerce-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.commerce-map a {
  display: grid;
  gap: 0.45rem;
  min-height: 11rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.17), rgba(12, 12, 13, 0.92)),
    rgba(18, 18, 19, 0.9);
  color: #ffffff;
  padding: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.commerce-map a:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(66, 103, 178, 0.28), rgba(12, 12, 13, 0.92)),
    rgba(18, 18, 19, 0.9);
}

.commerce-map a:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(213, 155, 47, 0.24), rgba(12, 12, 13, 0.92)),
    rgba(18, 18, 19, 0.9);
}

.commerce-map span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.commerce-map strong {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.commerce-map small {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.split-section,
.services,
.sync-section,
.licensing-section,
.contact-section {
  padding: clamp(4rem, 9vw, 7.2rem) 0;
}

.tag {
  border-radius: 0;
  background: rgba(255, 90, 31, 0.16);
  color: #ffb091;
  text-transform: uppercase;
}

.waveform {
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.22), rgba(255, 255, 255, 0.08)),
    #111112;
}

.waveform span {
  background: #ffffff;
}

dl div {
  border-top-color: rgba(255, 255, 255, 0.12);
}

dt {
  color: rgba(255, 255, 255, 0.48);
}

.store-card a,
.product-card a,
.release-list a {
  color: #ffffff;
}

.beat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.beat-filters button {
  min-height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.65rem 1rem;
  text-transform: uppercase;
}

.beat-filters button.is-active,
.beat-filters button:hover,
.beat-filters button:focus-visible {
  border-color: rgba(255, 90, 31, 0.72);
  background: rgba(255, 90, 31, 0.18);
  color: #ffffff;
}

.license-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(18, 18, 19, 0.88);
}

.license-card.featured {
  border-color: rgba(255, 90, 31, 0.7);
  background: rgba(255, 90, 31, 0.12);
}

.license-card p,
.license-card li {
  color: rgba(255, 255, 255, 0.66);
}

.buyer-path {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.16), rgba(18, 18, 19, 0.9));
}

.buyer-path strong {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-path p,
.buyer-path li {
  color: rgba(255, 255, 255, 0.7);
}

.context-panel {
  border-color: rgba(255, 90, 31, 0.35);
  background: rgba(255, 90, 31, 0.1);
}

.context-panel p {
  color: rgba(255, 255, 255, 0.66);
}

.product-icon {
  background: var(--gold);
  color: #ffffff;
}

.tool-status {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 90, 31, 0.1);
}

.purchase-panel {
  border-color: rgba(255, 90, 31, 0.42);
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.2), rgba(0, 0, 0, 0.72));
}

.tool-specs li,
.tool-status span {
  color: rgba(255, 255, 255, 0.68);
}

.plugin-band {
  box-shadow:
    0 0 0 100vmax rgba(35, 31, 29, 0.94),
    inset 0 1px 0 rgba(253, 251, 244, 0.18);
}

.plugin-band .section-heading p:not(.eyebrow) {
  color: rgba(253, 251, 244, 0.72);
}

.plugin-band .product-card {
  border-color: rgba(253, 251, 244, 0.18);
  background: rgba(10, 10, 10, 0.78);
}

.plugin-logo-card,
.official-product-logo {
  border-color: #0a0a0a;
  background: #fdfbf4;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.plugin-logo-card + div .tag,
.official-product-logo + .eyebrow {
  color: var(--gold);
}

.plugin-band .tool-status {
  border-color: rgba(253, 251, 244, 0.18);
  background: rgba(253, 251, 244, 0.08);
}

.plugin-band .tool-status b {
  color: #fdfbf4;
}

.service-grid {
  align-items: stretch;
}

.service-grid article {
  background: rgba(18, 18, 19, 0.9);
  color: #ffffff;
}

.package-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.package-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
}

.package-price strong {
  color: #fff8e8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
}

.package-price s,
.package-price span {
  color: rgba(255, 248, 232, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
}

.purchase-facts {
  display: grid;
  gap: 0;
  margin: 0.2rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.purchase-facts div {
  display: grid;
  grid-template-columns: 6.8rem minmax(0, 1fr);
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.62rem 0.72rem;
}

.purchase-facts div:first-child {
  border-top: 0;
}

.purchase-facts dt,
.purchase-facts dd {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.purchase-facts dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-facts dd {
  color: rgba(255, 248, 232, 0.78);
  font-weight: 750;
}

.package-card ul {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.05rem;
}

.package-card li {
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.package-card .button {
  justify-self: start;
  margin-top: auto;
  font-size: 0.8rem;
}

.offer-compare {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 8, 9, 0.72);
  box-shadow: var(--shadow);
}

.offer-compare-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.1rem;
}

.offer-compare-head span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-compare-head strong {
  color: #ffffff;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.offer-table {
  display: grid;
  overflow-x: auto;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) repeat(3, minmax(12rem, 1fr));
  min-width: 820px;
}

.offer-row > div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  padding: 0.85rem 1rem;
}

.offer-row > div:first-child {
  border-left: 0;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.offer-row-header > div {
  border-top: 0;
  background: rgba(255, 90, 31, 0.13);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

label {
  color: #ffffff;
}

input,
select,
textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.form-steps span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.75rem;
  text-align: center;
  text-transform: uppercase;
}

.selection-summary {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 90, 31, 0.38);
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.16), rgba(255, 255, 255, 0.05));
  padding: 1rem;
}

.selection-summary span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selection-summary strong {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
}

.selection-summary small {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.release-list span {
  color: var(--gold);
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: #080809;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  .site-nav {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 9, 0.96);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    grid-row: auto;
  }

  .beat-store-section {
    width: min(100% - 1rem, 1440px);
    padding-top: 2rem;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .commerce-map {
    grid-template-columns: 1fr;
  }

  .beat-store-section .section-heading h2,
  .beat-store-section .section-heading > p:not(.eyebrow) {
    max-width: none;
  }

  .beat-player {
    grid-template-columns: 1fr;
  }

  .beat-player-art img {
    max-height: 22rem;
  }

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

@media (max-width: 620px) {
  h1 {
    max-width: 9ch;
  }

  .audio-row {
    grid-template-columns: 3.7rem 1fr;
  }

  .beat-meta,
  .beat-grid,
  .form-steps {
    grid-template-columns: 1fr;
  }

  .purchase-facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.store-card .beat-tier-link[data-license-tier="starter"] {
  background: rgba(255, 253, 247, 0.94);
  color: #101014;
}

.store-card .beat-tier-link[data-license-tier="premium"] {
  background: #ff5a1f;
  color: #ffffff;
}

.store-card .beat-tier-link[data-license-tier="exclusive"] {
  background: rgba(16, 16, 20, 0.94);
  color: #ffffff;
}

@media (max-width: 620px) {
  .beat-tier-actions,
  .beat-tier-actions.is-player {
    grid-template-columns: 1fr;
  }
}
