{"product_id":"nova-test-1","title":"Nova (test)","description":"\u003ch2\u003eNew Ways to Play\u003c\/h2\u003e\n\n\u003cp\u003eThe Mosi Nova reimagines how you interact with sound - combining touch and motion into a fluid, expressive instrument designed for modern synthesis. It’s not a guitar, it’s something new. \u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003c\/p\u003e\n\n\u003cstyle\u003e\n    \/* Main wrapper div to contain the entire application, apply styling, and control its size *\/\n    .main-wrapper {\n      background-color: #0d1117; \/* Darker background for better contrast *\/\n      color: #e6edf3; \/* Light text color *\/\n      font-family: sans-serif; \/* Apply font-family here *\/\n      border-radius: 12px; \/* Rounded corners for the main container *\/\n      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); \/* Subtle shadow for depth *\/\n      padding: 20px; \/* Internal padding around the video and tabs *\/\n      margin: 20px auto; \/* Centers the block and provides outer margin *\/\n      width: 100%;\n      max-width: 1000px; \/* Max width to accommodate the video player (960px) + padding (20px*2) *\/\n      display: flex; \/* Use flexbox for internal layout *\/\n      flex-direction: column;\n      align-items: center; \/* Center content horizontally within the wrapper *\/\n      box-sizing: border-box; \/* Include padding in the element's total width and height *\/\n    }\n\n    .video-container {\n      position: relative;\n      padding-bottom: 56.25%; \/* 16:9 aspect ratio for desktop *\/\n      height: 0;\n      overflow: hidden;\n      background-color: #000;\n      margin-bottom: 20px;\n      border-radius: 8px;\n      width: 100%; \/* Ensure video container takes full width of its parent *\/\n      max-width: 960px; \/* Set a max-width for the video player itself *\/\n    }\n\n    #video-player {\n      position: absolute;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 100%;\n      border: none;\n    }\n\n    .tabs {\n      display: flex;\n      flex-wrap: wrap;\n      gap: 10px;\n      margin-top: 10px;\n      justify-content: center; \/* Center the tab buttons within the tabs container *\/\n      width: 100%; \/* Ensure tabs container takes full width of its parent *\/\n    }\n\n    .tab {\n      padding: 10px 20px;\n      background-color: #16213B;\n      color: white;\n      cursor: pointer;\n      border-radius: 4px;\n      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, text-shadow 0.3s ease;\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n      font-weight: normal; \/* Ensure all tabs start with normal font-weight *\/\n      white-space: nowrap; \/* Prevent text wrapping *\/\n    }\n\n    .tab:hover {\n      background-color: #1e2b4a;\n      transform: translateY(-2px);\n      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n    }\n\n    .tab.active {\n      background-color: #2d3f65;\n      transform: translateY(0);\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n      \/* Simulate bold effect with text-shadow to avoid layout shift *\/\n      text-shadow: 0 0 1px white, 0 0 1px white; \/* A subtle double shadow for a thicker look *\/\n    }\n\n    .tab:active {\n      transform: scale(0.98);\n      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);\n      background-color: #1a2542;\n    }\n\n    \/* Media query for mobile devices (adjust breakpoint as needed) *\/\n    @media (max-width: 768px) {\n      .main-wrapper { \/* Adjusted selector for media query *\/\n        padding: 10px; \/* Reduced padding on small screens *\/\n        max-width: calc(100% - 20px); \/* Adjust max-width for smaller padding *\/\n      }\n      .video-container {\n        padding-bottom: 75%; \/* 4:3 aspect ratio for mobile (3\/4 = 0.75) *\/\n      }\n      #video-player { \/* Adjust iframe to \"cover\" the 4:3 container *\/\n        width: 100%;\n        height: 100%;\n        top: 50%;\n        left: 50%;\n        \/* Scale up to fill height, then center for cropping width *\/\n        transform: translate(-50%, -50%) scale(1.3333); \/* Scale by 16\/9 \/ 4\/3 = 4\/3 = 1.3333 *\/\n      }\n      .tabs {\n        flex-direction: column;\n      }\n    }\n\n    \/* FAQ Specific Styles (from your provided snippet) *\/\n    .faq-section {\n      max-width: 600px;\n      margin: 20px auto;\n    }\n    .faq-question {\n      background-color: #fff;\n      padding: 15px;\n      cursor: pointer;\n      display: flex;\n      align-items: center;\n      font-weight: bold;\n      color: #333; \/* Ensure FAQ text is visible on light background *\/\n      border-bottom: 1px solid #eee; \/* Add separator *\/\n    }\n    .faq-question::before {\n      content: \"\\25B6\"; \/* Right-pointing triangle *\/\n      display: inline-block;\n      margin-right: 10px;\n      transition: transform 0.3s ease;\n    }\n    .faq-question.open::before {\n      transform: rotate(90deg); \/* Rotate triangle to point down *\/\n    }\n    .faq-answer {\n      max-height: 0;\n      overflow: hidden;\n      background-color: #f6f6f6;\n      padding: 0 15px;\n      transition: max-height 0.3s ease-out, padding 0.3s ease-out;\n      color: #555; \/* Ensure FAQ answer text is visible *\/\n    }\n    .faq-answer.open {\n      max-height: 300px; \/* Increased max-height for longer answers *\/\n      padding: 15px;\n      transition: max-height 0.5s ease-in, padding 0.5s ease-in;\n    }\n    .expand-btn {\n      display: block;\n      margin: 20px auto; \/* Center the button *\/\n      padding: 10px;\n      background-color: #1d375b;\n      color: white;\n      text-align: center;\n      border: none;\n      cursor: pointer;\n      border-radius: 4px;\n      transition: background-color 0.3s ease;\n    }\n    .expand-btn:hover {\n      background-color: #0056b3;\n    }\n  \u003c\/style\u003e\n\u003cdiv class=\"main-wrapper\"\u003e\n\n\u003cdiv class=\"video-container\"\u003e\n\n\u003cdiv id=\"video-player\"\u003e\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"tabs\" id=\"video-tabs\"\u003e\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cp\u003e\u003cscript\u003e\n\n  \/\/ Video data - replace with your preferred videos\n\n  const videos = [\n\n    {\n\n      id: 'a_7d0I02qBk',\n\n      title: 'Morph'\n\n    },\n\n    {\n\n      id: 'zLWi60Xj_dg',\n\n      title: 'Jump'\n\n    },\n\n    {\n\n      id: 'k-jKfnUSpfI',\n\n      title: 'Tap'\n\n    },\n\n    {\n\n      id: 'QvlaatnlXzw',\n\n      title: 'Slide'\n\n    },\n\n    {\n\n      id: '7GxHR8FVOjQ',\n\n      title: 'Arp'\n\n    },\n\n    {\n\n      id: '2Dp0NJYKgRY',\n\n      title: 'Fret-tap'\n\n    },\n\n    {\n\n      id: 'mjthwcp8T9c',\n\n      title: 'Strum'\n\n    },\n\n    {\n\n      id: '6QeManVAM1g',\n\n      title: 'Fingerstyle'\n\n    }\n\n  ];\n\n\n\n  let currentVideoIndex = 0;\n\n  let player;\n\n\n\n  \/**\n\n   * Creates the video tabs based on the 'videos' array.\n\n   *\/\n\n  function createVideoTabs() {\n\n    const tabsContainer = document.getElementById('video-tabs');\n\n    videos.forEach((video, index) =\u003e {\n\n      const tab = document.createElement('div');\n\n      tab.className = 'tab';\n\n      tab.textContent = video.title;\n\n      tab.addEventListener('click', () =\u003e loadVideo(index));\n\n      tabsContainer.appendChild(tab);\n\n    });\n\n    updateActiveTabs();\n\n  }\n\n\n\n  \/**\n\n   * Updates the 'active' class on tabs to highlight the currently playing video.\n\n   *\/\n\n  function updateActiveTabs() {\n\n    const tabs = document.querySelectorAll('.tab');\n\n    tabs.forEach((tab, index) =\u003e {\n\n      if (index === currentVideoIndex) {\n\n        tab.classList.add('active');\n\n      } else {\n\n        tab.classList.remove('active');\n\n      }\n\n    });\n\n  }\n\n\n\n  \/**\n\n   * Loads the YouTube IFrame API asynchronously.\n\n   *\/\n\n  function loadYouTubeAPI() {\n\n    const tag = document.createElement('script');\n\n    \/\/ Using the correct YouTube API URL\n\n    tag.src = \"https:\/\/www.youtube.com\/iframe_api\";\n\n    const firstScriptTag = document.getElementsByTagName('script')[0];\n\n    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\n\n  }\n\n\n\n  \/\/ This function is called by the YouTube IFrame API when it's ready.\n\n  window.onYouTubeIframeAPIReady = function() {\n\n    player = new YT.Player('video-player', {\n\n      height: '100%',\n\n      width: '100%',\n\n      videoId: videos[0].id,\n\n      playerVars: {\n\n        'controls': 1,\n\n        'rel': 0, \/\/ Do not show related videos\n\n        'modestbranding': 1 \/\/ No YouTube logo\n\n      },\n\n      events: {\n\n        'onReady': onPlayerReady,\n\n        'onStateChange': onPlayerStateChange\n\n      }\n\n    });\n\n  };\n\n\n\n  \/**\n\n   * Called when the YouTube player is ready.\n\n   * @param {Object} event - The event object.\n\n   *\/\n\n  function onPlayerReady(event) {\n\n    \/\/event.target.playVideo();\n\n    updateActiveTabs();\n\n    console.log(\"Player is ready and should be playing\");\n\n  }\n\n\n\n  \/**\n\n   * Handles changes in the YouTube player's state.\n\n   * @param {Object} event - The event object.\n\n   *\/\n\n  function onPlayerStateChange(event) {\n\n    console.log(\"Player state changed to:\", event.data);\n\n    \/\/ If the video ended (state = 0), play the next video.\n\n    if (event.data === YT.PlayerState.ENDED) {\n\n      playNextVideo();\n\n    }\n\n  }\n\n\n\n  \/**\n\n   * Plays the next video in the list.\n\n   *\/\n\n  function playNextVideo() {\n\n    currentVideoIndex = (currentVideoIndex + 1) % videos.length;\n\n    if (player \u0026\u0026 typeof player.loadVideoById === 'function') {\n\n      player.loadVideoById(videos[currentVideoIndex].id);\n\n      updateActiveTabs();\n\n      console.log(\"Playing next video:\", videos[currentVideoIndex].title);\n\n    }\n\n  }\n\n\n\n  \/**\n\n   * Loads and plays a specific video by its index.\n\n   * @param {number} index - The index of the video to load.\n\n   *\/\n\n  function loadVideo(index) {\n\n    if (index \u003e= 0 \u0026\u0026 index \u003c videos.length) {\n\n      currentVideoIndex = index;\n\n      if (player \u0026\u0026 typeof player.loadVideoById === 'function') {\n\n        player.loadVideoById(videos[index].id);\n\n        updateActiveTabs();\n\n        console.log(\"Loading video:\", videos[index].title);\n\n      } else {\n\n        console.error(\"Player not initialized yet or loadVideoById method is missing.\");\n\n      }\n\n    }\n\n  }\n\n\n\n  \/\/ Initialize the application\n\n  createVideoTabs();\n\n  loadYouTubeAPI();\n\n\u003c\/script\u003e \u003cbr\u003e\u003cb\u003eKey Features\u003c\/b\u003e\u003c\/p\u003e\n\n\u003cul\u003e\n\n\u003cli\u003ePatented 24-fret stainless steel fretboard design with fine-tuned button action for precision playing\u003c\/li\u003e\n\n\u003cli\u003eLarge expression touchpad with multi axis control of unlimited synth parameters in your DAW or hardware synth\u003c\/li\u003e\n\n\u003cli\u003eUSB-C and 5-Pin DIN output for all production and performance needs\u003c\/li\u003e\n\n\u003cli\u003eClass compliant MIDI compatible with all major DAWs including Ableton, Logic, ProTools, Reaper and more on Windows and Mac\u003c\/li\u003e\n\n\u003c\/ul\u003e\n\n\u003cdiv\u003e\n\n\u003cmeta charset=\"utf-8\"\u003e \u003cspan style=\"color: #1eac2d;\"\u003e\u003c\/span\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv\u003e\n\n\u003cmeta charset=\"utf-8\"\u003e\n\n\u003cdiv\u003e\u003cem\u003e\"This gives guitar players a new palette to take something you know and do something completely different\" - Geoff Zentz\u003c\/em\u003e\u003c\/div\u003e\n\n\u003cdiv\u003e\u003cbr\u003e\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cp\u003e\u003ciframe width=\"240\" height=\"444\" src=\"https:\/\/www.youtube.com\/embed\/U3wMy2zVWao\" title=\"YouTube video player\"\u003e\u003c\/iframe\u003e \u003ciframe width=\"240\" height=\"444\" src=\"https:\/\/www.youtube.com\/embed\/2RAhyTIdHYk\" title=\"YouTube video player\"\u003e\u003c\/iframe\u003e \u003ciframe width=\"240\" height=\"444\" src=\"https:\/\/www.youtube.com\/embed\/nD8KC8SxvVA\" title=\"YouTube video player\"\u003e\u003c\/iframe\u003e \u003ciframe width=\"240\" height=\"444\" src=\"https:\/\/www.youtube.com\/embed\/wCm_oUREYbM\" title=\"YouTube video player\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\n\u003cdiv\u003e\n\n\u003cem\u003e\u003c\/em\u003e\u003cbr\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv\u003e\n\n\u003ctable width=\"100%\"\u003e\n\n\u003ctbody\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"text-align: left; width: 29.4233%;\"\u003e\u003cstrong\u003eSpecifications\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e\u003cbr\u003e\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eFretboard\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e24-fret, 144 fret buttons\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eTouchpanel\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e9-inch multitouch\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eMIDI Ports\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003eUSB-C, 5-pin DIN\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003e\u003cmeta charset=\"utf-8\"\u003eMIDI Channels\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e16\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003ePlay Modes\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003eX\/Y, Tap\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eScale Length\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e25.5\" (648 mm)\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eNet Weight\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e5.1 lbs (2.31 kg)\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eNeck Shape\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003eC-Shape\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\n\n\u003cstrong\u003eNut Width\u003c\/strong\u003e\u003cbr\u003e\n\n\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e1.81\" (46.1 mm)\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eString Spacing\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e2.11\" (53.5 mm)\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eNeck Thickness\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e1st fret: 0.94\" (24 mm), 12th fret: 0.96\" (24.5 mm)\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003ctr\u003e\n\n\u003ctd style=\"width: 29.4233%;\"\u003e\u003cstrong\u003eMaterials\u003c\/strong\u003e\u003c\/td\u003e\n\n\u003ctd style=\"width: 66.5767%;\"\u003e\n\n\u003cul\u003e\n\n\u003cli\u003eWood - body and neck\u003c\/li\u003e\n\n\u003cli\u003eStainless steel - fretboard\u003c\/li\u003e\n\n\u003cli\u003eGlass - touchpad\u003c\/li\u003e\n\n\u003cli\u003eABS plastic - fret buttons\u003c\/li\u003e\n\n\u003cli\u003eElectronic components\u003cbr\u003e\n\n\u003c\/li\u003e\n\n\u003c\/ul\u003e\n\n\u003c\/td\u003e\n\n\u003c\/tr\u003e\n\n\u003c\/tbody\u003e\n\n\u003c\/table\u003e\n\n\u003c\/div\u003e\n\n\u003ch1\u003eFrequently asked questions\u003c\/h1\u003e\n\n\u003cdiv class=\"faq-section\"\u003e\n\n\u003cbutton class=\"expand-btn\" id=\"expandAllBtn\"\u003eExpand All\u003c\/button\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eHow does the touchpad affect the sound?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eSynthesizers have many controls and effects that morph the sound. These can be mapped to the touchpad x or y axis in any way imaginable.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eCan it speak MIDI?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes! It has USB-C MIDI out as well as standard 5-pin DIN MIDI.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eDoes it have an amp plug in?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eIt connects via MIDI. No amp plug-in but you can connect to a \u003ca href=\"https:\/\/en.wikipedia.org\/wiki\/Digital_audio_workstation\" target=\"_blank\"\u003eDAW\u003c\/a\u003e and run that to an amp.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eWhat sounds can the Nova play?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eThe Nova connects to your \u003ca href=\"https:\/\/en.wikipedia.org\/wiki\/Digital_audio_workstation\" target=\"_blank\"\u003eDAW\u003c\/a\u003e and you can play any sounds you want by using different \u003ca href=\"https:\/\/en.wikipedia.org\/wiki\/Virtual_Studio_Technology\" target=\"_blank\"\u003eVST\u003c\/a\u003e instruments.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eCan you play barre chords?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes, barre chords work very well on the Nova. They're excellent for pad and arpeggiator sounds, among others.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eWhat is the polyphony?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eEach \"string\" can play simultaneously, so the polyphony is 6. The \"strings\" also behave like normal guitar strings where they only play the top held fret.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eCan you play hammer-ons?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes, we call this \"tap\" mode. When it's enabled you can trigger notes quickly with both hands without needing to touch the touchpad.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eHow do you play open strings?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eOpen strings can be played in \"strum\" mode by touching the area of the touchpad corresponding to the string you want to play. Also, in XYZ mode the low string (usually E) will play if the touchpad is touched without any frets held.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eDoes it have internal sounds?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eIt does not have onboard sounds, but it can play any sound you want by connecting to your computer using MIDI with the provided USB-C cable, or to a hardware synth with the 5-pin MIDI connector.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eI don't play guitar or have a musical background, is the Nova for me?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eThe Nova is surprisingly accessible to beginners. The buttons and touchpad do not require you to build up hand calluses or spend years learning plucking techniques. You can play amazing sounds by simply holding down any note with your left hand, and morphing the sound with your right.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eAre the buttons on the neck velocity sensitive?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eThey are not. But the touchpanel can be used to change the attack and other synth parameters.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eIs there a left-hand version?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eIt can be changed to left-handed tuning with a single button push. And there is a mode light on both sides of the fretboard. We don't have a left-handed body quite yet, but we can install strap hardware on the left-handed horn, just let us know!\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eDoes it have a battery?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eThe Nova uses a USB-C cable to transmit MIDI and this same cable supplies all the power required, so no battery is needed. So the play setup consists of a single cable plugged into the instrument, similar to an electric guitar.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eIs it stage ready?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes, it's been designed to be played on stage and we're working with musicians to make sure it has the features they need. (If you have a feature request feel free to \u003ca href=\"https:\/\/mosiaudio.com\/pages\/contact-us\" target=\"_blank\"\u003elet us know!\u003c\/a\u003e)\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eWhat if I want to play wirelessly?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eWhile the Nova doesn't have native wireless support, you can use the \u003ca href=\"https:\/\/www.amazon.com\/dp\/B08F8F57JX\" target=\"_blank\"\u003eWIDI Master\u003c\/a\u003e and an external battery to get a reliable, low latency wireless setup good to up to 65ft.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eIs the touchpad always black?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes. It's a custom touchpad and has a lightly textured surface that makes it very smooth to slide your finger over. Not like a phone screen that grabs your finger as you slide around.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eHow durable is the Nova?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eIt is made to last a lifetime. We haven't cut corners with the design or materials. From the stainless steel fretboard, to the thick 3.5mm touchpad glass, it's made to be able to take a beating. The neck and body are made the same way traditional electric guitars are. We have early prototypes from 4 years ago that we've thrown around and brought all over the world, and they're still going strong.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eWhat does the lifetime support include?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eThis means if you encounter any issues using the Nova we will do our best to help you work through them, even if it is outside the warranty period. This includes both software and hardware issues. (See below for hardware repairs outside the warranty.)\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\n\u003cdiv class=\"faq-question\"\u003eDoes it come with a warranty?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-answer\"\u003e\n\n\u003cp\u003eYes! The Nova comes with a one year warranty. If you need repairs after this, we can also handle repairs at a reasonable cost. We stock extra touchpanels and other parts you may need.\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003ch5\u003eMore Links\u003c\/h5\u003e\n\n\u003cul\u003e\n\n\u003cli\u003e\u003ca href=\"https:\/\/mosiaudio.com\/pages\/nova-manual\"\u003eNova User Guide\u003c\/a\u003e\u003c\/li\u003e\n\n\u003cli\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0275\/7243\/7078\/files\/Nova_Quickstart.pdf?v=1674600144\"\u003eQuickstart Guide Download\u003c\/a\u003e\u003c\/li\u003e\n\n\u003c\/ul\u003e\n\n\u003cscript\u003e\n  document.addEventListener('DOMContentLoaded', function() {\n    const faqQuestions = document.querySelectorAll('.faq-question');\n    const expandAllBtn = document.getElementById('expandAllBtn');\n\n    faqQuestions.forEach(question =\u003e {\n      question.addEventListener('click', () =\u003e {\n        const answer = question.nextElementSibling;\n        question.classList.toggle('open');\n        answer.classList.toggle('open');\n      });\n    });\n\n    if (expandAllBtn) { \/\/ Check if the button exists before adding listener\n      expandAllBtn.addEventListener('click', () =\u003e {\n        const isOpen = expandAllBtn.textContent === 'Collapse All';\n        faqQuestions.forEach(question =\u003e {\n          const answer = question.nextElementSibling;\n          if (isOpen) {\n            question.classList.remove('open');\n            answer.classList.remove('open');\n          } else {\n            question.classList.add('open');\n            answer.classList.add('open');\n          }\n        });\n        expandAllBtn.textContent = isOpen ? 'Expand All' : 'Collapse All';\n      });\n    }\n  });\n\u003c\/script\u003e\n","brand":"Mosi Audio","offers":[{"title":"White","offer_id":48909611696214,"sku":"nova-founders-w","price":1299.0,"currency_code":"USD","in_stock":true},{"title":"Black","offer_id":48909611728982,"sku":"nova-founders-b","price":1299.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0275\/7243\/7078\/products\/WhiteFront_4dde0fa8-7a49-4413-9bf7-b023b1797465.png?v=1629744092","url":"https:\/\/mosiaudio.com\/products\/nova-test-1","provider":"Mosi Audio","version":"1.0","type":"link"}