@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
  color-scheme:dark;
  --bg:#0b0d0c;
  --surface:#121614;
  --line:#29302b;
  --text:#f0f3ed;
  --muted:#9da79f;
  --green:#c4f977;
  --display:'Space Grotesk',sans-serif;
  --body:'DM Sans',sans-serif;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:30px;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body);
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}

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

button,select {
  font:inherit;
}

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

button {
  cursor:pointer;
}

button:focus-visible,a:focus-visible,select:focus-visible,summary:focus-visible {
  outline:2px solid var(--green);
  outline-offset:5px;
}

::selection {
  background:var(--green);
  color:var(--bg);
}

.wrap {
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto;
}

.accent {
  color:var(--green);
}

.eyebrow,.mini-label {
  font-size:10px;
  letter-spacing:2.1px;
  font-weight:650;
  line-height:1.7;
}

.eyebrow {
  color:var(--green);
  margin:0 0 22px;
}

.mini-label {
  color:var(--muted);
  letter-spacing:1.6px;
}

.status-dot {
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--green);
  vertical-align:middle;
  flex-shrink:0;
}

.eyebrow .status-dot {
  margin-right:9px;
  box-shadow:0 0 12px #c4f94455;
}

.header {
  height:106px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  border-bottom:1px solid #ffffff0d;
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--display);
  font-size:23px;
  letter-spacing:-1px;
  font-weight:600;
  white-space:nowrap;
}

.brand-dot {
  font-size:10px;
  align-self:flex-start;
  padding-top:5px;
  margin-left:-7px;
}

.brand-icon {
  display:flex;
  gap:3px;
  align-items:center;
  height:26px;
}

.brand-icon i {
  width:4px;
  background:var(--green);
  border-radius:1px;
  height:13px;
}

.brand-icon i:nth-child(2) {
  height:23px;
}

.brand-icon i:nth-child(3) {
  height:18px;
}

.brand-icon i:nth-child(4) {
  height:9px;
}

.header nav {
  display:flex;
  gap:31px;
  font-size:12px;
  color:#b2bab3;
}

.header nav a:hover,.text-link:hover,.video-link:hover {
  color:var(--green);
}

.nav-cta {
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #3a4336;
  padding:12px 17px;
  border-radius:5px;
  font-size:12px;
}

.nav-cta>span:last-child {
  margin-left:10px;
}

.nav-cta:hover {
  background:#c4f9100a;
  border-color:var(--green);
}

.hero {
  text-align:center;
  padding-top:74px;
}

.hero h1 {
  font-family:var(--display);
  font-size:clamp(54px,6.7vw,88px);
  line-height:1.045;
  letter-spacing:-5px;
  font-weight:500;
  margin:0;
}

.hero-copy {
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
  margin:24px auto 29px;
}

.hero-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
}

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  padding:17px 23px;
  border-radius:5px;
  font-size:12px;
  font-weight:700;
  transition:background .2s,transform .2s;
}

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

.primary {
  background:var(--green);
  color:#17210e;
}

.primary:hover {
  background:#d4ff94;
}

.video-link {
  font-size:12px;
  display:flex;
  align-items:center;
  gap:9px;
}

.play-icon {
  width:27px;
  height:27px;
  border:1px solid #4f584e;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:8px;
  padding-left:2px;
}

.external-note {
  color:var(--muted);
  margin-left:3px;
}

.instrument {
  position:relative;
  margin-top:61px;
  border:1px solid #354034;
  border-radius:12px;
  text-align:left;
  background:radial-gradient(ellipse at 50% 115%,#435d2a30,transparent 65%),linear-gradient(145deg,#181d18,#101411);
  box-shadow:0 25px 110px #97e6670a;
  overflow:hidden;
  scroll-margin-top:28px;
}

.instrument-top {
  padding:26px 30px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.instrument-top h2 {
  font-family:var(--display);
  font-size:23px;
  font-weight:500;
  letter-spacing:-.8px;
  margin:6px 0 0;
}

.instrument-top .mini-label {
  font-size:8px;
}

.preview-badge {
  display:flex;
  align-items:center;
  gap:8px;
  color:#b8c6b3;
  font-size:10px;
  border:1px solid #344032;
  border-radius:30px;
  padding:8px 12px;
}

.preview-badge .status-dot {
  width:5px;
  height:5px;
}

.demo-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin:22px 30px;
}

.demo-selects {
  display:flex;
  gap:10px;
}

.demo-selects label {
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:9px;
  color:var(--muted);
  letter-spacing:.5px;
}

.demo-selects select {
  border:1px solid #3c4539;
  background:#20261e;
  color:var(--text);
  border-radius:4px;
  padding:7px 29px 7px 10px;
  min-width:84px;
  font-size:11px;
  cursor:pointer;
}

.sound-button {
  font-size:10px;
  color:#b8c6b3;
  background:transparent;
  border:1px solid #3c4539;
  border-radius:4px;
  padding:8px 12px;
}

.sound-button span {
  font-size:13px;
  margin-right:5px;
}

.sound-button[aria-pressed=true] {
  background:#c4f9191a;
  color:var(--green);
  border-color:#839b62;
}

.keyboard-stage {
  padding:17px 44px 0;
  perspective:900px;
}

.keyboard {
  position:relative;
  display:flex;
  height:160px;
  transform:rotateX(13deg);
  transform-origin:bottom;
  border:8px solid #090d09;
  border-top-width:13px;
  border-bottom-width:11px;
  border-radius:5px;
  background:#080b08;
  box-shadow:0 -15px 55px #c5f97807,0 17px 20px #0008;
  isolation:isolate;
  touch-action:pan-y;
}

.piano-key {
  position:relative;
  flex:1;
  border:1px solid #555f52;
  border-radius:0 0 5px 5px;
  margin:0 1px;
  padding:0;
  background:linear-gradient(#bdc3b7,#e3e6dc 75%,#bcc3b2);
  color:#4c5446;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  font-size:9px;
  padding-bottom:9px;
  box-shadow:inset 0 -4px 0 #86927d;
  transition:background .1s,box-shadow .1s;
}

.piano-key::before {
  content:'';
  position:absolute;
  left:10%;
  right:10%;
  top:-8px;
  height:4px;
  border-radius:3px;
  background:#34402d;
}

.piano-key.in-scale::before {
  background:var(--key-color);
  box-shadow:0 0 9px var(--key-color),0 -7px 23px var(--key-color);
}

.piano-key.in-scale {
  background:linear-gradient(180deg,color-mix(in srgb,var(--key-color) 32%,#c6cfc3),#dce3d5 85%);
}

.piano-key.black {
  position:absolute;
  z-index:2;
  top:0;
  width:4.35%;
  height:64%;
  border:1px solid #060a05;
  background:linear-gradient(90deg,#090d09,#232a21 45%,#11180e);
  color:#a2ac99;
  border-radius:0 0 4px 4px;
  box-shadow:inset 0 -5px 0 #000,2px 4px 5px #0008;
  margin:0;
  padding-bottom:9px;
}

.piano-key.black.in-scale {
  background:linear-gradient(180deg,color-mix(in srgb,var(--key-color) 20%,#101810),#131d10);
}

.piano-key.black::before {
  top:-8px;
  left:12%;
  right:12%;
}

.piano-key.active,.piano-key.in-scale.active {
  background:var(--key-color,#fff);
  box-shadow:0 0 22px color-mix(in srgb,var(--key-color,#fff) 45%,transparent),inset 0 -2px 0 #0004;
  color:#11200a;
}

.piano-key:focus-visible {
  outline:2px solid var(--green);
  outline-offset:-4px;
  z-index:3;
}

.instrument-bottom {
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:16px 30px 18px;
}

.instrument-bottom p {
  font-size:10px;
  color:var(--muted);
  margin:0;
  line-height:1.6;
}

.instrument-bottom p:first-child {
  color:#d4deca;
  letter-spacing:.8px;
}

.tap-symbol {
  color:var(--green);
  font-size:14px;
  margin-right:4px;
}

.demo-caption {
  font-size:10px;
  color:#818d82;
  margin:15px 0 0;
}

.proof-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid var(--line);
  padding:38px 0 33px;
  gap:10px;
  text-align:center;
}

.proof-strip span {
  font-size:11px;
  color:var(--muted);
}

.proof-strip strong {
  font-family:var(--display);
  font-size:20px;
  font-weight:500;
  color:var(--text);
  margin-right:8px;
}

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

.section {
  padding-block:105px;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:end;
  margin-bottom:45px;
}

h2 {
  font-family:var(--display);
  font-size:43px;
  line-height:1.14;
  letter-spacing:-1.9px;
  font-weight:500;
  margin:0;
}

h3 {
  font-family:var(--display);
  font-weight:500;
  letter-spacing:-.6px;
}

.section-heading>p,.workflow-intro>p:not(.eyebrow) {
  font-size:13px;
  line-height:1.9;
  color:var(--muted);
  margin:0 0 3px;
  max-width:345px;
}

.section-heading .eyebrow {
  margin-bottom:15px;
}

.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.feature-art {
  height:146px;
  background:radial-gradient(ellipse at center,#28382355,transparent 80%),#121713;
  border:1px solid #252e25;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  overflow:hidden;
}

.scale-art {
  gap:8px;
}

.scale-art span {
  display:grid;
  place-items:center;
  width:29px;
  height:35px;
  font-size:11px;
  border:1px solid currentColor;
  border-radius:4px;
  color:#ed797c;
  background:#ed797c09;
  transform:translateY(10px);
}

.scale-art span:nth-child(2) {
  color:#e8e6c8;
  transform:translateY(4px);
}

.scale-art span:nth-child(3) {
  color:#a6e782;
  transform:translateY(-2px);
}

.scale-art span:nth-child(4) {
  color:#efdc78;
  transform:translateY(-8px);
}

.scale-art span:nth-child(5) {
  color:#7faaf2;
  transform:translateY(-14px);
}

.scale-art span:nth-child(6) {
  color:#79dddb;
  transform:translateY(-20px);
}

.scale-art span:nth-child(7) {
  color:#d599e9;
  transform:translateY(-26px);
}

.play-art {
  gap:6px;
}

.play-art i {
  height:22px;
  width:5px;
  border-radius:4px;
  background:#a9e785;
  box-shadow:0 0 12px #b4f18122;
}

.play-art i:nth-child(3n) {
  height:43px;
}

.play-art i:nth-child(4n) {
  height:64px;
}

.play-art i:nth-child(7) {
  height:88px;
  background:var(--green);
}

.play-art i:nth-child(8) {
  height:104px;
  background:var(--green);
}

.play-art i:nth-child(9) {
  height:72px;
  background:var(--green);
}

.session-block {
  width:66px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid #485144;
  border-radius:5px;
  color:#d0d8c9;
  font-family:var(--display);
  font-size:14px;
}

.session-block b {
  font-weight:400;
  color:#ed9d61;
}

.session-block.colored {
  flex-direction:column;
  gap:0;
  color:var(--green);
  border-color:#899e61;
  box-shadow:0 0 25px #c4f9180b;
}

.session-block small {
  font-family:var(--body);
  font-size:7px;
  letter-spacing:1px;
}

.connection-line {
  width:58px;
  height:1px;
  background:linear-gradient(90deg,#485144,var(--green));
  position:relative;
}

.connection-line::after {
  content:'';
  position:absolute;
  right:-1px;
  top:-2px;
  background:var(--green);
  width:5px;
  height:5px;
  border-radius:50%;
}

.feature-number {
  font-size:9px;
  letter-spacing:1.7px;
  color:#899680;
}

.feature h3 {
  font-size:21px;
  margin:13px 0 12px;
}

.feature p {
  font-size:13px;
  color:var(--muted);
  line-height:1.9;
  margin:0;
  max-width:325px;
}

.workflow-section {
  background:#111511;
  border-block:1px solid #252e25;
  padding:80px 0;
}

.workflow-layout {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:100px;
}

.workflow-intro>p:not(.eyebrow) {
  margin-top:23px;
  max-width:330px;
}

.text-link {
  font-size:12px;
  display:inline-flex;
  gap:24px;
  margin-top:27px;
  border-bottom:1px solid #68774f;
  padding-bottom:8px;
}

.text-link span {
  color:var(--green);
}

.steps {
  list-style:none;
  padding:0;
  margin:0;
}

.steps li {
  display:flex;
  gap:25px;
  padding:26px 0;
  border-bottom:1px solid #2d352c;
}

.steps li:first-child {
  padding-top:0;
}

.steps li:last-child {
  border:0;
  padding-bottom:0;
}

.step-number {
  font-family:var(--display);
  font-size:13px;
  color:var(--green);
  padding-top:4px;
}

.steps h3 {
  font-size:20px;
  margin:0 0 9px;
}

.steps p {
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
  margin:0;
}

.kit-photo {
  margin:0;
  overflow:hidden;
  border-radius:7px;
  border:1px solid #394035;
  background:#262b21;
}

.kit-photo img {
  display:block;
  width:100%;
  height:auto;
}

.performance-photo {
  margin-top:44px;
  text-align:left;
}

.kit-photo figcaption {
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:16px 22px;
  background:#171c16;
  font-size:10px;
  color:var(--muted);
}

.kit-photo figcaption>span:first-child {
  color:#e0e9d7;
}

.kit-photo .status-dot {
  margin-right:7px;
  width:5px;
  height:5px;
}

.kit-details {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:32px;
  gap:35px;
}

.kit-details>div+div {
  border-left:1px solid var(--line);
  padding-left:32px;
}

.kit-details .mini-label {
  font-size:9px;
}

.kit-details h3 {
  margin:10px 0;
  font-size:19px;
}

.kit-details p {
  font-size:12px;
  line-height:1.8;
  color:var(--muted);
  margin:0;
}

.kit-note {
  font-size:10px;
  color:#879282;
  margin:30px 0 0;
}

.faq-layout {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1.45fr;
  gap:80px;
  padding-top:80px;
}

.faq-list details {
  border-bottom:1px solid var(--line);
}

.faq-list summary {
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:20px;
  list-style:none;
  padding:22px 0;
  font-size:14px;
  font-weight:500;
}

.faq-list details:first-child summary {
  padding-top:0;
}

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

.faq-list summary span {
  color:var(--green);
  font-size:19px;
  line-height:1;
}

.faq-list details[open] summary span {
  transform:rotate(45deg);
}

.faq-list details p {
  font-size:13px;
  line-height:1.9;
  color:var(--muted);
  margin:0;
  padding:0 27px 23px 0;
}

.availability {
  position:relative;
  isolation:isolate;
  border:1px solid #35432e;
  border-radius:8px;
  padding:65px 25px;
  text-align:center;
  overflow:hidden;
  background:#141b12;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 36px auto;
  max-width: 920px;
  text-align: left;
}
.pricing-card {
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(11, 13, 12, 0.7);
}
.pricing-card h3 { font-size: 23px; line-height: 1.35; margin: 16px 0; }
.pricing-card .price { font-size: 48px; font-weight: 700; margin: 20px 0; }
.pricing-card ul { padding-left: 20px; line-height: 1.7; }
.pricing-card li + li { margin-top: 10px; }
.pricing-requirement { font-size: 14px; line-height: 1.5; }
.shipping-info {
  max-width:920px;
  margin:32px auto 0;
  padding-top:28px;
  border-top:1px solid var(--line);
  text-align:left;
  scroll-margin-top:30px;
}
.shipping-info h3 { font-size:26px; line-height:1.3; margin:12px 0; }
.shipping-info p, .shipping-info li { font-size:14px; line-height:1.8; }
.shipping-info ol { padding-left:22px; margin:20px 0; }
.shipping-info li + li { margin-top:12px; }
.shipping-info .inquiry-help { color:var(--muted); overflow-wrap:anywhere; }
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.availability-glow {
  position:absolute;
  inset:0;
  z-index:-1;
  background:radial-gradient(ellipse at 50% 120%,#9bbf4a30,transparent 65%),repeating-linear-gradient(90deg,transparent 0,transparent 59px,#c4f97704 59px,#c4f97704 60px);
}

.availability h2 {
  font-size:49px;
  letter-spacing:-2px;
}

.availability>p:not(.eyebrow) {
  font-size:13px;
  line-height:1.9;
  color:#acb8a4;
  margin:21px 0 28px;
}

.availability-note {
  display:block;
  color:#91a084;
  font-size:10px;
  margin-top:20px;
}

.footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-block:44px;
}

.footer .brand {
  font-size:18px;
}

.github-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
}

.github-link:hover {
  color:var(--green);
}

.footer .brand-icon {
  transform:scale(.8);
  transform-origin:left;
  margin-right:-5px;
}

.footer>span,.footer>p {
  font-size:10px;
  color:#899582;
}

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

.skip-link {
  position:fixed;
  top:8px;
  left:8px;
  transform:translateY(-150%);
  background:var(--green);
  color:var(--bg);
  padding:10px;
  z-index:10;
}

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

.noscript-note {
  padding:12px 30px;
  color:var(--muted);
  font-size:12px;
}

.video-section {
  padding-top:60px;
  padding-bottom:90px;
}

.future-note {
  border-top:1px solid var(--line);
  padding-block:28px 38px;
}

.future-note .eyebrow {
  margin-bottom:10px;
}

.future-note h3 {
  font-size:22px;
  margin:0 0 12px;
}

.future-note>p:not(.eyebrow), .bitwig-copy>p:not(.eyebrow) {
  max-width:740px;
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
}

.future-note .text-link {
  margin-top:5px;
}

.bitwig-preview {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,420px);
  align-items:center;
  gap:48px;
}
.bitwig-screenshot { margin:0; }
.bitwig-screenshot img {
  display:block;
  width:100%;
  height:auto;
  border:1px solid var(--line);
  border-radius:8px;
}
.bitwig-screenshot figcaption {
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
@media (max-width:700px) {
  .bitwig-preview { grid-template-columns:1fr; gap:24px; }
  .bitwig-screenshot { width:100%; max-width:420px; margin-inline:auto; }
}
.modes-section {
  border-bottom:1px solid var(--line);
}

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

.mode-card {
  padding:30px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:7px;
}

.mode-card .feature-number {
  color:var(--green);
  line-height:1.8;
}

.mode-card h3 {
  font-size:23px;
  margin:16px 0;
}

.mode-card p {
  font-size:13px;
  line-height:1.9;
  color:var(--muted);
  margin:12px 0 0;
}

@media(max-width:700px) {
  .modes-grid {
    grid-template-columns:1fr;
  }
  .mode-card {
    padding:24px;
  }
}

.video-frame {
  aspect-ratio:16/9;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#151b13;
}

.video-frame iframe {
  display:block;
  width:100%;
  height:100%;
  border:0;
}

.video-caption {
  display:flex;
  justify-content:space-between;
  gap:15px;
  font-size:11px;
  color:var(--muted);
  margin:17px 0 0;
}

.video-caption>span {
  flex:1;
  color:#465040;
}

.video-caption a:hover {
  color:var(--green);
}

@media(max-width:700px) {
  .video-section {
    padding-bottom:60px;
  }
  .video-caption {
    font-size:10px;
  }
}

@media(min-width:1500px) {
  .hero {
    padding-top:90px;
  }
  .hero h1 {
    font-size:96px;
  }
  .keyboard {
    height:180px;
  }
}

@media(max-width:1000px) {
  .wrap {
    width:calc(100% - 56px);
  }
  .header nav {
    gap:20px;
  }
  .hero h1 {
    font-size:72px;
    letter-spacing:-4px;
  }
  .workflow-layout {
    gap:55px;
  }
  .section-heading {
    gap:30px;
  }
  h2 {
    font-size:36px;
  }
  .feature-grid {
    gap:22px;
  }
  .scale-art {
    gap:5px;
  }
  .scale-art span {
    width:25px;
  }
  .feature h3 {
    font-size:19px;
  }
  .proof-strip strong {
    display:block;
    margin:0 0 5px;
  }
  .faq-layout {
    gap:45px;
  }
  .section {
    padding-block:80px;
  }
  .keyboard-stage {
    padding-inline:25px;
  }
}

@media(max-width:700px) {
  .wrap {
    width:calc(100% - 36px);
  }
  .header {
    height:83px;
    gap:10px;
  }
  .brand {
    font-size:20px;
  }
  .header nav {
    display:none;
  }
  .nav-cta {
    padding:10px;
    font-size:10px;
    gap:7px;
  }
  .nav-cta>span:last-child {
    margin-left:3px;
  }
  .hero {
    padding-top:55px;
  }
  .eyebrow {
    font-size:8px;
    letter-spacing:1.6px;
  }
  .hero h1 {
    font-size:clamp(47px,10.8vw,72px);
    letter-spacing:-2.8px;
  }
  .hero-copy {
    font-size:14px;
    line-height:1.8;
    max-width:350px;
    margin-top:23px;
  }
  .desktop-break {
    display:none;
  }
  .hero-actions {
    gap:18px;
    flex-direction:column;
  }
  .button {
    padding:16px 20px;
  }
  .instrument {
    margin-top:43px;
    border-radius:8px;
  }
  .instrument-top {
    padding:19px 17px 0;
  }
  .instrument-top .mini-label {
    font-size:7px;
    letter-spacing:1px;
  }
  .instrument-top h2 {
    font-size:22px;
  }
  .preview-badge {
    font-size:0;
    padding:8px;
    gap:0;
  }
  .demo-toolbar {
    margin:20px 17px 22px;
    gap:8px;
  }
  .demo-selects {
    gap:8px;
  }
  .demo-selects select {
    font-size:10px;
    min-width:62px;
    max-width:145px;
    padding:8px;
  }
  .sound-button {
    font-size:9px;
    padding:9px 8px;
    white-space:nowrap;
  }
  .keyboard-stage {
    padding:10px 12px 0;
  }
  .keyboard {
    height:119px;
    border-width:5px;
    border-top-width:10px;
  }
  .piano-key {
    font-size:7px;
    margin-inline:.5px;
    border-radius:0 0 3px 3px;
    padding-bottom:8px;
  }
  .piano-key.black {
    font-size:6px;
    padding-bottom:7px;
  }
  .piano-key::before,.piano-key.black::before {
    top:-6px;
    height:3px;
  }
  .instrument-bottom {
    padding:15px 17px 17px;
    flex-direction:column;
    gap:6px;
  }
  .instrument-bottom p {
    font-size:9px;
  }
  .demo-caption {
    font-size:9px;
    line-height:1.7;
    padding-inline:10px;
  }
  .proof-strip {
    padding:28px 0;
    grid-template-columns:repeat(2,1fr);
    gap:24px 0;
  }
  .proof-strip strong {
    font-size:20px;
  }
  .proof-strip span {
    font-size:10px;
  }
  .proof-strip span:nth-child(3) {
    border:0;
  }
  .section {
    padding-block:60px;
  }
  .section-heading {
    display:block;
    margin-bottom:29px;
  }
  .section-heading>p {
    margin-top:22px;
    font-size:13px;
  }
  h2 {
    font-size:34px;
    letter-spacing:-1.4px;
  }
  .feature-grid {
    grid-template-columns:1fr;
    gap:37px;
  }
  .feature-art {
    height:145px;
    margin-bottom:20px;
  }
  .scale-art {
    gap:12px;
  }
  .scale-art span {
    width:30px;
  }
  .feature h3 {
    font-size:23px;
  }
  .feature p {
    max-width:none;
  }
  .workflow-section {
    padding:56px 0;
  }
  .workflow-layout {
    grid-template-columns:1fr;
    gap:37px;
  }
  .workflow-intro>p:not(.eyebrow) {
    max-width:none;
  }
  .steps li {
    gap:20px;
  }
  .kit-photo figcaption {
    font-size:9px;
    padding:13px 15px;
    flex-direction:column;
    gap:6px;
  }
  .kit-details {
    grid-template-columns:1fr;
    gap:21px;
    margin-top:27px;
  }
  .kit-details>div+div {
    padding-left:0;
    border-left:0;
    border-top:1px solid var(--line);
    padding-top:20px;
  }
  .kit-details h3 {
    font-size:20px;
    margin-block:7px;
  }
  .kit-note {
    line-height:1.8;
  }
  .faq-layout {
    grid-template-columns:1fr;
    gap:30px;
  }
  .faq-list summary {
    font-size:13px;
    padding-block:20px;
  }
  .availability {
    padding:48px 20px;
  }
  .availability h2 {
    font-size:35px;
    letter-spacing:-1.6px;
  }
  .availability .eyebrow {
    font-size:7px;
    letter-spacing:1.2px;
  }
  .footer {
    flex-wrap:wrap;
    padding-block:30px;
    gap:15px;
  }
  .footer>span {
    order:3;
    width:100%;
    margin-top:-7px;
  }
  .footer>p {
    font-size:9px;
  }
  .footer .brand {
    font-size:18px;
  }
}

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